Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 785 for Identifier (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactBackedResolvedVariant.java

            @Nullable VariantResolveMetadata.Identifier identifier,
            DisplayName displayName,
            AttributeContainerInternal attributes,
            ImmutableCapabilities capabilities,
            List<? extends ComponentArtifactMetadata> artifacts,
            ComponentArtifactResolver componentArtifactResolver
        ) {
            this.identifier = identifier;
            this.displayName = displayName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java

        }
    
        /**
         * Mark a profile as required and activated.
         * @param id The identifier of the profile.
         */
        public void activateRequiredProfile(String id) {
            this.activations.put(id, ActivationSettings.ACTIVATION_REQUIRED);
        }
    
        /**
         * Mark a profile as optional and activated.
         * @param id The identifier of the profile.
         */
        public void activateOptionalProfile(String id) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantResolveMetadata.java

        @Override
        String getName();
    
        /**
         * An identifier for this variant, if available. A variant may not necessarily have an identifier associated with it, for example if it represents some ad hoc variant.
         */
        @Nullable
        Identifier getIdentifier();
    
        DisplayName asDescribable();
    
        @Override
        ImmutableAttributes getAttributes();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/cache/internal/DefaultGeneratedGradleJarCacheTest.groovy

            1 * cacheBuilder.open() >> { cache }
            1 * cache.close()
        }
    
        def "creates JAR file on demand for identifier '#identifier'"(String identifier) {
            def cacheDir = tmpDir.testDirectory
            def jarFile = cacheDir.file("gradle-${identifier}-${gradleVersion}.jar")
            def cacheBuilder = Mock(CacheBuilder)
            def cache = Mock(PersistentCache)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/codec_test.go

    			}
    			if e, a := tc.expectedId, v.Identifier(); e != a {
    				t.Errorf("unexpected identifier: %s, expected: %s", a, e)
    			}
    		})
    	}
    }
    
    type mockEncoder struct{}
    
    func (m *mockEncoder) Encode(obj runtime.Object, w io.Writer) error {
    	_, err := w.Write([]byte("mock-result"))
    	return err
    }
    
    func (m *mockEncoder) Identifier() runtime.Identifier {
    	return runtime.Identifier("mock-identifier")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 30 06:58:54 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  6. pkg/config/schema/codegen/templates/crdclient.go.tmpl

    {{- range .Entries }}
    	{{- if and (not .Resource.Synthetic) }}
    	gvk.{{.Resource.Identifier}}: func(r runtime.Object) config.Config {
    		obj := r.(*{{ .IstioAwareClientImport }}.{{.Resource.Kind}})
    		return config.Config{
    		  Meta: config.Meta{
    		  	GroupVersionKind:  gvk.{{.Resource.Identifier}},
    		  	Name:              obj.Name,
    		  	Namespace:         obj.Namespace,
    		  	Labels:            obj.Labels,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. pkg/network/id.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package network
    
    import "istio.io/istio/pkg/util/identifier"
    
    // ID is the unique identifier for a network.
    type ID string
    
    func (id ID) Equals(other ID) bool {
    	return identifier.IsSameOrEmpty(string(id), string(other))
    }
    
    func (id ID) String() string {
    	return string(id)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 24 22:10:04 UTC 2021
    - 862 bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/language/base/sources/BaseLanguageSourceSet.java

            private final ComponentSpecIdentifier identifier;
            private final Class<? extends LanguageSourceSet> publicType;
            private final ObjectFactory objectFactory;
    
            private SourceSetInfo(ComponentSpecIdentifier identifier, Class<? extends LanguageSourceSet> publicType, ObjectFactory objectFactory) {
                this.identifier = identifier;
                this.publicType = publicType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. pkg/config/schema/resource/schema.go

    	IsClusterScoped() bool
    
    	// IsBuiltin indicates that this resource is builtin (not a CRD)
    	IsBuiltin() bool
    
    	// Identifier returns a unique identifier for the resource
    	Identifier() string
    
    	// Kind for this resource.
    	Kind() string
    
    	// Plural returns the plural form of the Kind.
    	Plural() string
    
    	// Group for this resource.
    	Group() string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXTarget.java

            WATCH_OS1_EXTENSION("com.apple.product-type.watchkit-extension");
    
            public final String identifier;
    
            ProductType(String identifier) {
                this.identifier = identifier;
            }
    
            @Override
            public String toString() {
                return identifier;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top