Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for Id (0.03 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Lifecycle.java

            getPhases().remove(phase);
        } // -- void removePhase( Phase )
    
        /**
         * Set the ID of this lifecycle, for identification in the mojo
         * descriptor.
         *
         * @param id a id object.
         */
        public void setId(String id) {
            this.id = id;
        } // -- void setId( String )
    
        /**
         * Set the phase mappings for this lifecycle.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

            this.executions = executions;
        } // -- void setExecutions( java.util.List )
    
        /**
         * Set the ID of this phase, e.g.,
         * <code>generate-sources</code>.
         *
         * @param id a id object.
         */
        public void setId(String id) {
            this.id = id;
        } // -- void setId( String )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java

                    : Set.of();
            String base = "default-" + goal;
            String id = base;
            for (int index = 1; existingIds.contains(id); index++) {
                id = base + '-' + index;
            }
            return id;
        }
    
        private record DefaultPackaging(String id, Type type, Map<String, PluginContainer> plugins) implements Packaging {}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. tests/associations_has_one_test.go

    	if err := DB.Create(&user).Error; err != nil {
    		t.Fatalf("errors happened when create: %v", err)
    	}
    
    	CheckUser(t, user, user)
    
    	// Find
    	var user2 User
    	DB.Find(&user2, "id = ?", user.ID)
    	DB.Model(&user2).Association("Account").Find(&user2.Account)
    	CheckUser(t, user2, user)
    
    	// Count
    	AssertAssociationCount(t, user, "Account", 1, "")
    
    	// Append
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. src/cmd/buildid/buildid.go

    	}
    
    	newID := id[:strings.LastIndex(id, "/")] + "/" + buildid.HashToString(hash)
    	if len(newID) != len(id) {
    		log.Fatalf("%s: build ID length mismatch %q vs %q", file, id, newID)
    	}
    
    	if len(matches) == 0 {
    		return
    	}
    
    	f, err = os.OpenFile(file, os.O_RDWR, 0)
    	if err != nil {
    		log.Fatal(err)
    	}
    	if err := buildid.Rewrite(f, matches, newID); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

        public Lifecycle() {}
    
        public Lifecycle(String id, List<String> phases, Map<String, LifecyclePhase> defaultPhases) {
            this.id = id;
            this.phases = phases;
            this.defaultPhases = defaultPhases;
        }
    
        public Lifecycle(org.apache.maven.api.Lifecycle lifecycle) {
            this.lifecycle = lifecycle;
            this.id = lifecycle.id();
            this.phases = lifecycle.phases().stream()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/03-gopls.yml

        attributes:
          value: "Please answer these questions before submitting your issue. Thanks!"
      - type: textarea
        id: gopls-version
        attributes:
          label: "gopls version"
          description: "Output of `gopls -v version` on the command line"
        validations:
          required: true
      - type: textarea
        id: go-env
        attributes:
          label: "go env"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:09:04 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleBindingsInjector.java

            public Optional<Lifecycle> lookup(String id) {
                return Optional.empty();
            }
        };
    
        private static final PackagingRegistry emptyPackagingRegistry = new PackagingRegistry() {
            @Override
            public Optional<Packaging> lookup(String id) {
                return Optional.of(new Packaging() {
                    @Override
                    public String id() {
                        return id;
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/EmptyLifecycleBindingsInjector.java

            public Optional<Lifecycle> lookup(String id) {
                return Optional.empty();
            }
        };
    
        private static final PackagingRegistry emptyPackagingRegistry = new PackagingRegistry() {
            @Override
            public Optional<Packaging> lookup(String id) {
                return Optional.of(new Packaging() {
                    @Override
                    public String id() {
                        return id;
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. pom.xml

    					<encoding>UTF-8</encoding>
    				</configuration>
    			</plugin>
    			<plugin>
    				<artifactId>maven-source-plugin</artifactId>
    				<version>3.2.1</version>
    				<executions>
    					<execution>
    						<id>source-jar</id>
    						<phase>package</phase>
    						<goals>
    							<goal>jar</goal>
    						</goals>
    					</execution>
    				</executions>
    			</plugin>
    			<plugin>
    				<artifactId>maven-javadoc-plugin</artifactId>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top