Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,125 for object3 (0.73 sec)

  1. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                "type": "string"
              },
              "ownerReferences": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelCache.java

                return Objects.equals(this.source, that.source) && Objects.equals(this.tag, that.tag);
            }
    
            @Override
            public int hashCode() {
                return hash;
            }
        }
    
        static class CachingSupplier<T> implements Supplier<T> {
            final Supplier<T> supplier;
            volatile Object value;
    
            CachingSupplier(Supplier<T> supplier) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "ownerReferences": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  4. cmd/data-scanner.go

    	}
    	// Notify object deleted event.
    	sendEvent(eventArgs{
    		EventName:  eventName,
    		BucketName: dobj.Bucket,
    		Object:     dobj,
    		UserAgent:  "Internal: [ILM-Expiry]",
    		Host:       globalLocalNodeName,
    	})
    
    	return true
    }
    
    // Apply object, object version, restored object or restored object version action on the given object
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/io/DefaultModelWriter.java

     *
     */
    @Named
    @Singleton
    public class DefaultModelWriter implements ModelWriter {
    
        @Override
        public void write(File output, Map<String, Object> options, Model model) throws IOException {
            Objects.requireNonNull(output, "output cannot be null");
            Objects.requireNonNull(model, "model cannot be null");
    
            output.getParentFile().mkdirs();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

      optional PodSchedulingContextStatus status = 3;
    }
    
    // PodSchedulingContextList is a collection of Pod scheduling objects.
    message PodSchedulingContextList {
      // Standard list metadata
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is the list of PodSchedulingContext objects.
      repeated PodSchedulingContext items = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyHandler.java

        private <U extends ExternalModuleDependency> Closure<Object> closureOf(Action<? super U> configuration) {
            return new Closure<Object>(this, this) {
                @Override
                public Object call() {
                    configuration.execute(Cast.uncheckedCast(getDelegate()));
                    return null;
                }
    
                @Override
                public Object call(Object arguments) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 08:14:09 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/SettingsInternal.java

        List<IncludedBuildSpec> getIncludedBuilds();
    
        /**
         * The parent scope for this and all settings objects.
         *
         * Gradle runtime.
         */
        ClassLoaderScope getBaseClassLoaderScope();
    
        /**
         * The scope for this settings object.
         *
         * Gradle runtime + this object's script's additions.
         */
        ClassLoaderScope getClassLoaderScope();
    
        ServiceRegistry getServices();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. pkg/scheduler/util/assumecache/assume_cache.go

    //
    // AssumeCache stores two pointers to represent a single object:
    //   - The pointer to the informer object.
    //   - The pointer to the latest object, which could be the same as
    //     the informer object, or an in-memory object.
    //
    // An informer update always overrides the latest object pointer.
    //
    // Assume() only updates the latest object pointer.
    // Restore() sets the latest object pointer back to the informer object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/TestMBeanAttributeProvider.java

            @Override
            public boolean equals(Object o) {
                if (this == o) {
                    return true;
                }
                if (o == null || getClass() != o.getClass()) {
                    return false;
                }
                AttributeKey that = (AttributeKey) o;
                return Objects.equal(mbean, that.mbean) && Objects.equal(attribute, that.attribute) && Objects.equal(type, that.type);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 21:48:34 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top