Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 823 for _objects (0.14 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    				}
    				modified[i] = obj
    			default:
    				t.Fatalf("unsupported object type %T", obj)
    			}
    		}
    	}
    	return modified
    }
    
    func sortObjects(objects []metav1.Object) {
    	sort.Slice(objects, func(i, j int) bool {
    		if objects[i].GetNamespace() < objects[j].GetNamespace() {
    			return true
    		}
    		return objects[i].GetName() < objects[j].GetName()
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/GradleSerializedValueSnapshot.java

        }
    
        @Override
        public boolean equals(Object obj) {
            if (obj == this) {
                return true;
            }
            if (obj == null || obj.getClass() != getClass()) {
                return false;
            }
            GradleSerializedValueSnapshot other = (GradleSerializedValueSnapshot) obj;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/MissingAttributeAmbiguousGraphVariantsFailureDescriber.java

            return candidate.getOnlyOnCandidateAttributes().stream()
                .filter(attribute -> Objects.equals(attribute.getAttribute().getName(), distinguishingAttribute))
                .map(assessedAttribute -> Objects.requireNonNull(assessedAttribute.getProvided()).toString())
                .findFirst().orElseThrow(IllegalStateException::new);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:12:53 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1/types.go

    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.19
    
    // CertificateSigningRequest objects provide a mechanism to obtain x509 certificates
    // by submitting a certificate signing request, and having it asynchronously approved and issued.
    //
    // Kubelets use this API to obtain:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. cmd/api-response.go

    			metaErr = metadata(object.Name, policy.GetObjectAction)
    			lastObjMetaName = object.Name
    		}
    		content := ObjectVersion{}
    		content.Key = s3EncodeName(object.Name, encodingType)
    		content.LastModified = amztime.ISO8601Format(object.ModTime.UTC())
    		if object.ETag != "" {
    			content.ETag = "\"" + object.ETag + "\""
    		}
    		content.Size = object.Size
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryDocumentationIntegrationTest.groovy

                            canBeConsumed = false
                            attributes {
                                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.DOCUMENTATION))
                                attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named(DocsType, DocsType.JAVADOC))
                            }
                        }
                        sources {
                            assert canBeResolved
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaDebugOptions.java

        }
    
        @Override
        public int hashCode() {
            return Objects.hash(getEnabled().get(), getHost().getOrNull(), getPort().get(), getServer().get(), getSuspend().get());
        }
    
        @SuppressWarnings("BoxedPrimitiveEquality")
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

            V1 extends @Nullable Object,
            V2 extends @Nullable Object,
            V3 extends @Nullable Object,
            V4 extends @Nullable Object,
            V5 extends @Nullable Object,
            U extends @Nullable Object> {
          /**
           * Applies this function to five inputs, or throws an exception if unable to do so.
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  9. cmd/bucket-lifecycle.go

    }
    
    // Worker handles 4 types of expiration tasks.
    // 1. Expiry of objects, includes regular and transitioned objects
    // 2. Expiry of noncurrent versions due to NewerNoncurrentVersions
    // 3. Expiry of free-versions, for remote objects of transitioned object which have been expired since.
    // 4. Expiry of remote objects corresponding to objects in a
    // non-versioned/version suspended buckets
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtNamedAnnotationValue.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.name.Name
    import java.util.Objects
    
    /**
     * Name-Value pair which is used as annotation argument.
     */
    public class KaNamedAnnotationValue(
        name: Name,
        expression: KaAnnotationValue,
        override val token: KaLifetimeToken
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top