Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for KindFor (0.1 sec)

  1. plugin/pkg/admission/gc/gc_admission_test.go

    	initializersChain.Initialize(gcAdmit)
    	return gcAdmit, nil
    }
    
    type neverReturningRESTMapper struct{}
    
    var _ meta.RESTMapper = &neverReturningRESTMapper{}
    
    func (r *neverReturningRESTMapper) KindFor(resource schema.GroupVersionResource) (schema.GroupVersionKind, error) {
    	// this ok because if the test works, this method should never be called.
    	panic("test failed")
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/graph_builder.go

    			continue
    		}
    		if m, ok := toRemove[resource]; ok {
    			current[resource] = m
    			delete(toRemove, resource)
    			kept++
    			continue
    		}
    		kind, err := gb.restMapper.KindFor(resource)
    		if err != nil {
    			errs = append(errs, fmt.Errorf("couldn't look up resource %q: %v", resource, err))
    			continue
    		}
    		c, s, err := gb.controllerFor(logger, resource, kind)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java

          return notSubtype(shop);
        }
    
        @TestSubtype(suppressGetSubtype = true)
        public Comparator<Electronics> supertypeIsTopLevelClass(
            Mall<Indoor>.Retailer<Electronics> shop) {
          return isSubtype(shop);
        }
    
        @TestSubtype
        public Comparator<Electronics> topLevelClassIsNotSupertypeDueToTypeParameter(
            Mall<Indoor>.Retailer<Grocery> shop) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java

          return notSubtype(shop);
        }
    
        @TestSubtype(suppressGetSubtype = true)
        public Comparator<Electronics> supertypeIsTopLevelClass(
            Mall<Indoor>.Retailer<Electronics> shop) {
          return isSubtype(shop);
        }
    
        @TestSubtype
        public Comparator<Electronics> topLevelClassIsNotSupertypeDueToTypeParameter(
            Mall<Indoor>.Retailer<Grocery> shop) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

                return findFor(normalizer, BY_NORMALIZER);
            }
    
            static SnapshotTaskInputsBuildOperationResult.FilePropertyAttribute from(DirectorySensitivity directorySensitivity) {
                return findFor(directorySensitivity, BY_DIRECTORY_SENSITIVITY);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top