Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 647 for Identifier (0.24 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

    public interface ModelBuilderResult {
    
        /**
         * Gets the sequence of model identifiers that denote the lineage of models from which the effective model was
         * constructed. Model identifiers have the form {@code <groupId>:<artifactId>:<version>}. The first identifier from
         * the list denotes the model on which the model builder was originally invoked. The last identifier will always be
         * an empty string that by definition denotes the super POM.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/cache/internal/GeneratedGradleJarCache.java

        String CACHE_DISPLAY_NAME = "Generated Gradle JARs cache";
    
        /**
         * Returns the generated jar uniquely identified by {@code identifier}.
         *
         * If the jar is not found in the cache the given {@code creator} action will be invoked to create it.
         *
         * @param identifier the jar identifier (for example, {@code "api"}).
         * @param creator the action that will create the file should it not be found in the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. pkg/config/schema/codegen/templates/gvk.go.tmpl

    	switch g {
    {{- range $entry := .Entries }}
    		case {{$entry.Resource.Identifier}}:
    			return gvr.{{$entry.Resource.Identifier}}, true
    	{{- range $alias := .Resource.VersionAliases }}
    		case {{$entry.Resource.Identifier}}_{{$alias}}:
    			return gvr.{{$entry.Resource.Identifier}}_{{$alias}}, true
        {{- end }}
    {{- end }}
    	}
    
    	return schema.GroupVersionResource{}, false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 03:54:51 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/component/internal/AbstractComponentSpec.java

        private final ComponentSpecIdentifier identifier;
        private final Class<?> publicType;
    
        public AbstractComponentSpec(ComponentSpecIdentifier identifier, Class<?> publicType) {
            this.publicType = publicType;
            this.identifier = identifier;
        }
    
        @Override
        public ComponentSpecIdentifier getIdentifier() {
            return identifier;
        }
    
        @Override
        public String getName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. pkg/config/schema/codegen/templates/collections.go.tmpl

    {{ .CustomImport }}
      "reflect"
    {{- range .Packages}}
    	{{.ImportName}} "{{.PackageName}}"
    {{- end}}
    )
    
    var (
    {{ range .Entries }}
    	{{ .Resource.Identifier }} = resource.Builder {
    			Identifier: "{{ .Resource.Identifier }}",
    			Group: "{{ .Resource.Group }}",
    			Kind: "{{ .Resource.Kind }}",
    			Plural: "{{ .Resource.Plural }}",
    			Version: "{{ .Resource.Version }}",
    			{{- if .Resource.VersionAliases }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIdentifierValidationIntegTest.groovy

            where:
            identifier << Identifier.all
        }
    
        def "can publish artifacts with version, extension and classifier containing #identifier characters"() {
            given:
            file("content-file") << "some content"
            def version = identifier.safeForFileName().decorate("version")
            def extension = identifier.safeForFileName().decorate("extension")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Lexer.kt

    internal
    class UnexpectedDuplicateBlock(val identifier: TopLevelBlockId, override val location: IntRange) :
        UnexpectedBlock("Unexpected `$identifier` block found. Only one `$identifier` block is allowed per script.")
    
    
    internal
    class UnexpectedBlockOrder(val identifier: TopLevelBlockId, override val location: IntRange, expectedFirstIdentifier: TopLevelBlockId) :
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultVariantMetadata.java

        private final String name;
        private final Identifier identifier;
        private final DisplayName displayName;
        private final ImmutableAttributes attributes;
        private final ImmutableList<? extends ComponentArtifactMetadata> artifacts;
        private final ImmutableCapabilities capabilitiesMetadata;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultResolvedArtifactResult.java

                                             File file) {
            this.identifier = identifier;
            this.variant = new DefaultResolvedVariantResult(identifier.getComponentIdentifier(), variantDisplayName, variantAttributes, capabilities, null);
            this.type = type;
            this.file = file;
        }
    
        @Override
        public String toString() {
            return identifier.getDisplayName();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultUnresolvedArtifactResult.java

        private final ComponentArtifactIdentifier identifier;
        private final Class<? extends Artifact> type;
        private final Throwable failure;
    
        public DefaultUnresolvedArtifactResult(ComponentArtifactIdentifier identifier, Class<? extends Artifact> type, Throwable failure) {
            this.identifier = identifier;
            this.type = type;
            this.failure = failure;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top