Examples of Identifier


Examples of com.nirima.docker.client.model.Identifier

            listener.getLogger().println("Pushing " + tagToUse);
            if( !tagToUse.toLowerCase().equals(tagToUse) ) {
                listener.getLogger().println("ERROR: Docker will refuse to push tag name " + tagToUse + " because it uses upper case.");
            }

            Identifier identifier = Identifier.fromCompoundString(tagToUse);

            String repositoryName = identifier.repository.name;

            PushCommandResponse pushResponse = client.createPushCommand()
                    .name(repositoryName)
View Full Code Here

Examples of com.openii.moa.objects.resources.v1_0.Identifier

    if (idList==null || idList.size()==0) {
      return null;
    }
    String password = querySpec.getCandidatePassword();
    for (int i=0;i<idList.size();i++) {
      Identifier id=(Identifier)idList.get(i);
      String idType = id.getType();
      if (myIdType.equalsIgnoreCase(idType)) {
        System.out.println("ID match");
        String idValue = id.getValue();
        System.out.println("value="+idValue);
        if (password.indexOf(idValue)!=-1) {
          ValidationStatus vs=new ValidationStatus();
          try {
            vs.setStatusCode(validationStatusCode);
View Full Code Here

Examples of com.oracle.coherence.common.identifiers.Identifier

 
      List<Identifier> queues = new ArrayList<Identifier>(benchmarkParams.getQueuesCount());
       
      for(int q = 0; q < benchmarkParams.getQueuesCount(); ++q)
      {
        Identifier queue = facade.createQueue("queue_from_" + sender + "_to_" + receiver + "_N_" + q);
       
        queues.add(queue);
      }
       
      sendQueuesMap.put(membersList.get(sender), queues);
View Full Code Here

Examples of com.redhat.ceylon.compiler.typechecker.tree.Tree.Identifier

                            testClassName = Decl.className(that.getDeclarationModel());
                            that.visitChildren(this);
                            testClassName = null;
                        }
                        for (CompilerAnnotation ca : that.getCompilerAnnotations()) {
                            Identifier identifier = ca.getIdentifier();
                            if ("test".equals(identifier.getToken().getText())) {
                                final com.redhat.ceylon.compiler.typechecker.model.Declaration decl = that.getDeclarationModel();
                                if (moduleName.isEmpty() || Decl.getModule(decl).getNameAsString().equals(moduleName)) {
                                    boolean added = false;
                                    if (testClassName != null || decl.isToplevel()) {
                                        if (decl instanceof com.redhat.ceylon.compiler.typechecker.model.Method) {
View Full Code Here

Examples of com.strobel.decompiler.languages.java.ast.Identifier

        final Set<String> newImports = new LinkedHashSet<>();
        final List<ImportDeclaration> removedImports = new ArrayList<>();

        for (final ImportDeclaration oldImport : imports) {
            final Identifier importedType = oldImport.getImportIdentifier();

            if (importedType != null && !importedType.isNull()) {
                final TypeReference type = oldImport.getUserData(Keys.TYPE_REFERENCE);

                if (type != null) {
                    final String packageName = type.getPackageName();
View Full Code Here

Examples of de.tuhrig.thofu.gui.History.Identifier

       
        if(o.equals(root)) {
         
          Entry<Identifier, LList> entry = history.get(index);
 
          Identifier identifier = entry.getKey();
          long elapsed = identifier.getElapsedTime();

          return new DefaultMutableTreeNode("#" + identifier.number + " (" + elapsed + " ms)");
        }
        else if(o.toString().startsWith("#")) {
         
View Full Code Here

Examples of edu.harvard.hul.ois.jhove.Identifier

    agent.setAddress ("E.M.E.A.: ERCIM, 2004 route des Lucioles, BP 93, 06902 Sophia-Antipolis Cedex, France\nJapan & Korea: Keio University, 5322 Endo, Fujisawa, Kanagawa 252-8520 Japan\nAll other countries: MIT, 32 Vassar Street, Room 32-G515, Cambridge, MA 02139 USA");
    agent.setTelephone ("E.M.E.A. : +33.4.92.38.75.90\nJapan & Korea: +81.466.49.1170\nAll other countries: +1.617.253.2613");
    agent.setWeb ("http://www.w3.org/");
    doc.setAuthor (agent);
    doc.setDate ("2003-11-10");
    doc.setIdentifier (new Identifier ("http://www.w3.org/Graphics/GIF/spec-gif87.txt",
                       IdentifierType.URL));
    _specification.add (doc);

    Signature sig = new InternalSignature ("PNG", SignatureType.MAGIC,
                         SignatureUseType.MANDATORY, 0);
View Full Code Here

Examples of edu.harvard.hul.ois.ots.schemas.AES.Identifier

      //set up base AES object structure     
        aes = new AudioObject ();
        aes.setSchemaVersion("1.0.0");
        aes.setID(audioObjectID);
        aes.setDisposition("");
        Identifier ident = new Identifier("","primaryIdentifier");
        ident.setIdentifierType("FILE_NAME");
        aes.setPrimaryIdentifier(ident);
             
      face = new Face();
      face.setLabel("face 1");
      face.setDirection("NONE");
View Full Code Here

Examples of edu.mayo.bmi.guoqian.claml.Identifier

    /**
     * Create an instance of {@link Identifier }
     *
     */
    public Identifier createIdentifier() {
        return new Identifier();
    }
View Full Code Here

Examples of lombok.ast.Identifier

    this.source = source;
  }
 
  Identifier createIdentifierIfNeeded(Node identifier, int pos) {
    if (identifier instanceof Identifier) return (Identifier)identifier;
    Identifier i = new Identifier();
    i.setPosition(new Position(pos, pos));
    DanglingNodes.addDanglingNode(i, identifier);
    return i;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.