Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,162 for object3 (0.92 sec)

  1. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	Resource string `json:"resource" protobuf:"bytes,1,opt,name=resource"`
    	// responseKind describes the group, version, and kind of the serialization schema for the object type this endpoint typically returns.
    	// APIs may return other objects types at their discretion, such as error conditions, requests for alternate representations, or other operation specific behavior.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/io/DefaultModelReader.java

        }
    
        @Override
        public Model read(File input, Map<String, ?> options) throws IOException {
            Objects.requireNonNull(input, "input cannot be null");
            return read(input.toPath(), options);
        }
    
        @Override
        public Model read(Path path, Map<String, ?> options) throws IOException {
            Objects.requireNonNull(path, "path cannot be null");
    
            try (InputStream in = Files.newInputStream(path)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Predicate.java

       */
      boolean apply(@ParametricNullness T input);
    
      /**
       * Indicates whether another object is equal to this predicate.
       *
       * <p>Most implementations will have no reason to override the behavior of {@link Object#equals}.
       * However, an implementation may also choose to return {@code true} whenever {@code object} is a
       * {@link Predicate} that it considers <i>interchangeable</i> with this one. "Interchangeable"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. pkg/scheduler/util/assumecache/assume_cache_test.go

    	// This test assumes an object with the same version as the API object.
    	// The assume cache supports that, but doing so in real code suffers from
    	// a race: if an unrelated update is received from the apiserver while
    	// such an object is assumed, the local modification gets dropped.
    	oldObj := makeObj("pvc1", "5", "")
    	newObj := makeObj("pvc1", "5", "")
    
    	// Restore object that doesn't exist
    	cache.Restore("nothing")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. pkg/registry/resource/resourceclaim/strategy.go

    func (resourceclaimStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    func (resourceclaimStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (resourceclaimStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    func (resourceclaimStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    	newClaim := obj.(*resource.ResourceClaim)
    	oldClaim := old.(*resource.ResourceClaim)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:39:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Predicate.java

      boolean apply(@ParametricNullness T input);
    
      /**
       * Indicates whether another object is equal to this predicate.
       *
       * <p>Most implementations will have no reason to override the behavior of {@link Object#equals}.
       * However, an implementation may also choose to return {@code true} whenever {@code object} is a
       * {@link Predicate} that it considers <i>interchangeable</i> with this one. "Interchangeable"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. pkg/controller/volume/ephemeral/controller_test.go

    			ctx := context.Background()
    
    			var objects []runtime.Object
    			for _, pod := range tc.pods {
    				objects = append(objects, pod)
    			}
    			for _, pvc := range tc.pvcs {
    				objects = append(objects, pvc)
    			}
    
    			fakeKubeClient := createTestClient(objects...)
    			if tc.expectedMetrics.numFailures > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/MemoryUtil.java

                return 2128L;
            }
            if (obj instanceof Object[]) {
                long size = 0;
                for (final Object value : (Object[]) obj) {
                    size += sizeOf(value);
                }
                return size;
            }
            if (obj instanceof Collection<?>) {
                long size = 0;
                for (final Object value : (Collection<?>) obj) {
                    size += sizeOf(value);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/test/TestTaskPropertiesServiceIntegrationTest.groovy

        def "provides task configuration to plugin"() {
            given:
            new PluginBuilder(file("buildSrc")).with {
                addPlugin("""
                    def objects = project.objects
                    def outputFile = project.file("\${project.buildDir}/testTaskProperties.json")
                    def service = project.services.get(${TestTaskPropertiesService.name})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleDependency.java

        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
            if (!getClass().equals(o.getClass())) {
                return false;
            }
            ModuleDependency that = (ModuleDependency) o;
            return Objects.equal(name, that.name) && scopeEquals(scope, that.scope);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top