Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,585 for Identifier (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/managedfields.go

    	encodedManagerCopy.Time = nil
    
    	// For appliers, don't include the APIVersion in the manager identifier,
    	// so it will always have the same manager identifier each time it applied.
    	if encodedManager.Operation == metav1.ManagedFieldsOperationApply {
    		encodedManagerCopy.APIVersion = ""
    	}
    
    	// Use the remaining fields to build the manager identifier
    	b, err := json.Marshal(&encodedManagerCopy)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    	return &Serializer{
    		meta:       meta,
    		creater:    creater,
    		typer:      typer,
    		options:    options,
    		identifier: identifier(options),
    	}
    }
    
    // identifier computes Identifier of Encoder based on the given options.
    func identifier(options SerializerOptions) runtime.Identifier {
    	result := map[string]string{
    		"name":   "json",
    		"yaml":   strconv.FormatBool(options.Yaml),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top