Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for getKinds (0.2 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

            } else if (vf instanceof ChecksumVerificationFailure) {
                ChecksumVerificationFailure cvf = (ChecksumVerificationFailure) vf;
                String reason = "Expected a " + cvf.getKind() + " checksum of " + expected(cvf.getExpected()) + " but was " + actual(cvf.getActual());
                reportItem(reason, "checksum-mismatch", "warning");
            } else if (vf instanceof OnlyIgnoredKeys) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/helpers.go

    		return err
    	}
    
    	// For typed lists, e.g., a PodList, API server doesn't set each item's
    	// APIVersion and Kind. We need to set it.
    	listAPIVersion := list.GetAPIVersion()
    	listKind := list.GetKind()
    	itemKind := strings.TrimSuffix(listKind, "List")
    
    	delete(list.Object, "items")
    	list.Items = make([]Unstructured, 0, len(dList.Items))
    	for _, i := range dList.Items {
    		unstruct := &Unstructured{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 20:39:55 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    			CompilationResults := f.(*filter).compilationResults
    			require.Equal(t, len(validations), len(CompilationResults))
    
    			versionedAttr, err := admission.NewVersionedAttributes(tc.attributes, tc.attributes.GetKind(), newObjectInterfacesForTest())
    			if err != nil {
    				t.Fatalf("unexpected error on conversion: %v", err)
    			}
    
    			optionalVars := OptionalVariableBindings{VersionedParams: tc.params, Authorizer: tc.authorizer}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java

                if (embeddedFileNames != null) {
                    processEmbeddedDocNames(embeddedFileNames, writer);
                } else {
                    final List<PDNameTreeNode<PDComplexFileSpecification>> kids = efTree.getKids();
                    if (kids == null) {
                        return;
                    }
                    for (final PDNameTreeNode<PDComplexFileSpecification> node : kids) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/LoggingDeprecatedFeatureHandler.java

                @Override
                public void execute(InternalProblemSpec builder) {
                    InternalProblemSpec problemSpec = builder
                        // usage.getKind() could be be part of the problem ID, however it provides hints on the problem provenance which should be modeled differently, maybe as location data.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/webhook_converter.go

    }
    
    // validateConvertedObject checks that ObjectMeta fields match, with the exception of
    // labels and annotations.
    func validateConvertedObject(in, out *unstructured.Unstructured) error {
    	if e, a := in.GetKind(), out.GetKind(); e != a {
    		return fmt.Errorf("must have the same kind: %v != %v", e, a)
    	}
    	if e, a := in.GetName(), out.GetName(); e != a {
    		return fmt.Errorf("must have the same name: %v != %v", e, a)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:37:55 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/reconciler.go

    			return fmt.Errorf("failed to unmarshal YAML: %w", err)
    		}
    		var ogvr schema.GroupVersionResource
    		if obj.GetKind() == name.MutatingWebhookConfigurationStr {
    			ogvr = gvr.MutatingWebhookConfiguration
    		} else if obj.GetKind() == name.ValidatingWebhookConfigurationStr {
    			ogvr = gvr.ValidatingWebhookConfiguration
    		}
    
    		t := true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriter.java

                writer.endElement();
            }
        }
    
        private void writeChecksums(List<Checksum> checksums) throws IOException {
            for (Checksum checksum : checksums) {
                String kind = checksum.getKind().name();
                String value = checksum.getValue();
                writer.startElement(kind);
                writeAttribute(VALUE, value);
                String origin = checksum.getOrigin();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/DefaultTypeMetadataStore.java

        }
    
        private static String calculateDisplayName(Collection<? extends PropertyAnnotationHandler> annotationHandlers) {
            return annotationHandlers.stream()
                .map(PropertyAnnotationHandler::getKind)
                .anyMatch(Predicate.isEqual(PropertyAnnotationHandler.Kind.OUTPUT))
                ? "an input or output annotation"
                : "an input annotation";
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    	gvk := equivalentKind
    	gvr := equivalentGVR
    	subresource := attr.GetSubresource()
    
    	requestGVK := attr.GetKind()
    	requestGVR := attr.GetResource()
    	requestSubResource := attr.GetSubresource()
    
    	aUserInfo := attr.GetUserInfo()
    	var userInfo authenticationv1.UserInfo
    	if aUserInfo != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top