Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for getKinds (0.15 sec)

  1. pkg/controller/controller_utils.go

    	// ControllerExpectationsInterface.
    	uidStore cache.Store
    }
    
    // GetUIDs is a convenience method to avoid exposing the set of expected uids.
    // The returned set is not thread safe, all modifications must be made holding
    // the uidStoreLock.
    func (u *UIDTrackingControllerExpectations) GetUIDs(controllerKey string) sets.String {
    	if uid, exists, err := u.uidStore.GetByKey(controllerKey); err == nil && exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    			var namespace *v1.Namespace
    			namespaceName := a.GetNamespace()
    
    			// Special case, the namespace object has the namespace of itself (maybe a bug).
    			// unset it if the incoming object is a namespace
    			if gvk := a.GetKind(); gvk.Kind == "Namespace" && gvk.Version == "v1" && gvk.Group == "" {
    				namespaceName = ""
    			}
    
    			// if it is cluster scoped, namespaceName will be empty
    			// Otherwise, get the Namespace resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    	}
    	return func(ctx context.Context, obj, old runtime.Object) error {
    		finalAttributes := admission.NewAttributesRecord(
    			obj,
    			old,
    			staticAttributes.GetKind(),
    			staticAttributes.GetNamespace(),
    			staticAttributes.GetName(),
    			staticAttributes.GetResource(),
    			staticAttributes.GetSubresource(),
    			staticAttributes.GetOperation(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

                            NestedExceptionPlaceholder placeholder = (NestedExceptionPlaceholder) obj;
                            int index = placeholder.getIndex();
                            switch (placeholder.getKind()) {
                                case cause:
                                    return causes.get(index);
                                case suppressed:
                                    return suppressed.get(index);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierBuilder.java

            }
    
            List<Checksum> buildChecksums() {
                return builder.values()
                    .stream()
                    .map(ChecksumBuilder::build)
                    .sorted(Comparator.comparing(Checksum::getKind))
                    .collect(Collectors.toList());
            }
    
            public void addTrustedKey(String key) {
                pgpKeys.add(key.toUpperCase(Locale.ROOT));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  6. operator/pkg/helmreconciler/prune.go

    	if h.opts.DryRun {
    		h.opts.Log.LogAndPrintf("Not pruning object %s because of dry run.", oh)
    		return nil
    	}
    	u := obj.UnstructuredObject()
    	if u.GetKind() == name.IstioOperatorStr {
    		u.SetFinalizers([]string{})
    		if err := h.client.Patch(context.TODO(), u, client.Merge); err != nil {
    			scope.Errorf("failed to patch IstioOperator CR: %s, %v", u.GetName(), err)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

        }
    
        def "displays collections of scalar types in a human-readable format"() {
            given:
            buildFile << '''
    
    @Managed
    interface Container {
       List<String> getLabels()
       List<Integer> getIds()
       List<Double> getValues()
       void setValues(List<Double> values)
    }
    
    model {
        container(Container) {
            labels.add 'bug'
            labels.add 'blocker'
        }
    }
    '''
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

            }
            return result;
        }
    
        private static DefaultAccessRule createAccessRule(AccessRule accessRule) {
            int kindCode;
            String kind = accessRule.getKind();
            switch (kind) {
                case "accessible":
                case "0":
                    kindCode = 0;
                    break;
                case "nonaccessible":
                case "1":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/container_manager_linux.go

    	// Move non-kernel PIDs to the system container.
    	// Only keep errors on latest attempt.
    	var finalErr error
    	for i := 0; i <= 10; i++ {
    		allPids, err := cmutil.GetPids(rootCgroupPath)
    		if err != nil {
    			finalErr = fmt.Errorf("failed to list PIDs for root: %v", err)
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * do this only if everyone wanting to access the generated documentation shares the same file system.
         */
        @Nullable @Optional @Input
        public List<String> getLinks() {
            return links.getValue();
        }
    
        public void setLinks(@Nullable List<String> links) {
            this.links.setValue(links);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top