Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for NEW (0.34 sec)

  1. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		*out = new(AzureDataDiskCachingMode)
    		**out = **in
    	}
    	if in.FSType != nil {
    		in, out := &in.FSType, &out.FSType
    		*out = new(string)
    		**out = **in
    	}
    	if in.ReadOnly != nil {
    		in, out := &in.ReadOnly, &out.ReadOnly
    		*out = new(bool)
    		**out = **in
    	}
    	if in.Kind != nil {
    		in, out := &in.Kind, &out.Kind
    		*out = new(AzureDataDiskKind)
    		**out = **in
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    		*out = new(AzureDataDiskCachingMode)
    		**out = **in
    	}
    	if in.FSType != nil {
    		in, out := &in.FSType, &out.FSType
    		*out = new(string)
    		**out = **in
    	}
    	if in.ReadOnly != nil {
    		in, out := &in.ReadOnly, &out.ReadOnly
    		*out = new(bool)
    		**out = **in
    	}
    	if in.Kind != nil {
    		in, out := &in.Kind, &out.Kind
    		*out = new(AzureDataDiskKind)
    		**out = **in
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            ImmutableList.of(
                new TestFuture(doneSuccess, "doneSuccess", doNothing),
                new TestFuture(doneFailed, "doneFailed", doNothing),
                new TestFuture(doneCancelled, "doneCancelled", doNothing),
                new TestFuture(doneRuntimeException, "doneRuntimeException", doNothing),
                new TestFuture(delayedSuccess, "delayedSuccess", finishSuccess),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            ImmutableList.of(
                new TestFuture(doneSuccess, "doneSuccess", doNothing),
                new TestFuture(doneFailed, "doneFailed", doNothing),
                new TestFuture(doneCancelled, "doneCancelled", doNothing),
                new TestFuture(doneRuntimeException, "doneRuntimeException", doNothing),
                new TestFuture(delayedSuccess, "delayedSuccess", finishSuccess),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status_test.go

    				v1.LabelTopologyRegion:          "new-zone-region",
    				v1.LabelFailureDomainBetaZone:   "new-zone-failure-domain",
    				v1.LabelFailureDomainBetaRegion: "new-zone-region",
    				v1.LabelInstanceTypeStable:      "new-instance-type",
    				v1.LabelInstanceType:            "new-instance-type",
    				v1.LabelOSStable:                "new-os",
    				v1.LabelArchStable:              "new-arch",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  6. pkg/scheduler/schedule_one_test.go

    	client := clientsetfake.NewSimpleClientset(&testNode)
    	eventBroadcaster := events.NewBroadcaster(&events.EventSinkImpl{Interface: client.EventsV1()})
    	errS := errors.New("scheduler")
    	errB := errors.New("binder")
    	preBindErr := errors.New("on PreBind")
    
    	table := []struct {
    		name                string
    		injectBindError     error
    		sendPod             *v1.Pod
    		registerPluginFuncs []tf.RegisterPluginFunc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                throw new ClassGenerationException(formatter.toString());
            }
            return new ClassInspectionVisitorImpl(type, decorate, suffix, factoryId);
        }
    
        private static class AttachedProperty {
    
            public static AttachedProperty of(PropertyMetadata property, boolean applyRole) {
                return new AttachedProperty(property, applyRole);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  8. pkg/api/pod/util_test.go

    						}
    						// new pod should not have ProcMount
    						if procMountInUse(&newPod.Spec) {
    							t.Errorf("new pod had ProcMount: %#v", &newPod.Spec)
    						}
    					default:
    						// new pod should not need to be changed
    						if !reflect.DeepEqual(newPod, newPodInfo.pod()) {
    							t.Errorf("new pod changed: %v", cmp.Diff(newPod, newPodInfo.pod()))
    						}
    					}
    				})
    			}
    		}
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

       *     is to be used to sort the new map
       * @return a new {@code TreeMap} initialized with the mappings from {@code map} and using the
       *     comparator of {@code map}
       */
      public static <K extends @Nullable Object, V extends @Nullable Object> TreeMap<K, V> newTreeMap(
          SortedMap<K, ? extends V> map) {
        return new TreeMap<>(map);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

          throw new UnsupportedOperationException();
        }
    
        @Override
        public K getKey() {
          throw new UnsupportedOperationException();
        }
    
        @Override
        public long getAccessTime() {
          throw new UnsupportedOperationException();
        }
    
        @Override
        public void setAccessTime(long time) {
          throw new UnsupportedOperationException();
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top