Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 149 for gots (0.07 sec)

  1. pkg/volume/csi/csi_attacher_test.go

    			}
    
    			// Verify call goes through all the way
    			numStaged := 1
    			if !tc.stageUnstageSet {
    				numStaged = 0
    			}
    
    			cdc := csiAttacher.csiClient.(*fakeCsiDriverClient)
    			staged := cdc.nodeClient.GetNodeStagedVolumes()
    			if len(staged) != numStaged {
    				t.Errorf("got wrong number of staged volumes, expecting %v got: %v", numStaged, len(staged))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       */
      interface InternalEntry<K, V, E extends InternalEntry<K, V, E>> {
        /** Gets the next entry in the chain. */
        E getNext();
    
        /** Gets the entry's hash. */
        int getHash();
    
        /** Gets the key for this entry. */
        K getKey();
    
        /** Gets the value for the entry. */
        V getValue();
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/binder_test.go

    			expectedEvents:  noevents,
    			errors:          noerrors,
    			test:            testSyncClaim,
    		},
    		{
    			// syncClaim with claim pre-bound to a PV that exists and is
    			// unbound. Check it gets bound and no volume.AnnBoundByController is set.
    			name:            "2-3 - claim prebound to unbound volume",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	// storageVersion is the CRD version used when storing the object in etcd.
    	storageVersion string
    
    	waitGroup *utilwaitgroup.SafeWaitGroup
    }
    
    // crdStorageMap goes from customresourcedefinition to its storage
    type crdStorageMap map[types.UID]*crdInfo
    
    func NewCustomResourceDefinitionHandler(
    	versionDiscoveryHandler *versionDiscoveryHandler,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    	// cycle will be put back to activeQueue if we were trying to schedule them
    	// when we received move request.
    	// TODO: this will be removed after SchedulingQueueHint goes to stable and the feature gate is removed.
    	moveRequestCycle int64
    
    	// preEnqueuePluginMap is keyed with profile name, valued with registered preEnqueue plugins.
    	preEnqueuePluginMap map[string][]framework.PreEnqueuePlugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                this.injectedProfileIds.put(source, new ArrayList<>(injectedProfileIds));
            } else {
                this.injectedProfileIds.remove(source);
            }
        }
    
        /**
         * Gets the identifiers of all profiles that contributed to this project's effective model. This includes active
         * profiles from the project's POM and all its parent POMs as well as from external sources like the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  7. pkg/kubelet/nodestatus/setters_test.go

    				{Type: v1.NodeExternalIP, Address: "55.55.55.55"},
    				{Type: v1.NodeExternalDNS, Address: testKubeletHostname},
    				{Type: v1.NodeHostName, Address: testKubeletHostname}, // detected hostname gets auto-added
    			},
    			shouldError: false,
    		},
    		{
    			name:   "cloud doesn't report hostname, nodeIP is set, no override, detected hostname match",
    			nodeIP: netutils.ParseIPSloppy("10.1.1.1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Preconditions.java

     * java.util.Objects#requireNonNull(Object)}. Instead, use whichever of {@link
     * #checkNotNull(Object)} or {@link Verify#verifyNotNull(Object)} is appropriate to the situation.
     * (The same goes for the message-accepting overloads.)
     *
     * <h3>Only {@code %s} is supported</h3>
     *
     * <p>{@code Preconditions} uses {@link Strings#lenientFormat} to format error message template
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Preconditions.java

     * java.util.Objects#requireNonNull(Object)}. Instead, use whichever of {@link
     * #checkNotNull(Object)} or {@link Verify#verifyNotNull(Object)} is appropriate to the situation.
     * (The same goes for the message-accepting overloads.)
     *
     * <h3>Only {@code %s} is supported</h3>
     *
     * <p>{@code Preconditions} uses {@link Strings#lenientFormat} to format error message template
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_mounter_test.go

    				t.Errorf("csi server expected path %s, got %s", csiMounter.GetPath(), vol.Path)
    			}
    			if !reflect.DeepEqual(vol.MountFlags, expectedMountOptions) {
    				t.Errorf("csi server expected mount options %v, got %v", expectedMountOptions, vol.MountFlags)
    			}
    			if !reflect.DeepEqual(vol.VolumeContext, test.expectedVolumeContext) {
    				t.Errorf("csi server expected volumeContext %+v, got %+v", test.expectedVolumeContext, vol.VolumeContext)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top