Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for creat (0.09 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    	// Used to fetch objects from the API server like Node in the
    	// VerifyControllerAttachedVolume operation.
    	kubeClient clientset.Interface
    
    	// volumePluginMgr is the volume plugin manager used to create volume
    	// plugin objects.
    	volumePluginMgr *volume.VolumePluginMgr
    
    	// recorder is used to record events in the API server
    	recorder record.EventRecorder
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    	}
    	metricsClient := metrics.NewRESTMetricsClient(
    		testMetricsClient.MetricsV1beta1(),
    		testCMClient,
    		testEMClient,
    	)
    
    	eventClient := &fake.Clientset{}
    	eventClient.AddReactor("create", "events", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    		tc.Lock()
    		defer tc.Unlock()
    
    		obj := action.(core.CreateAction).GetObject().(*v1.Event)
    		if tc.verifyEvents {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    		if nerr.Err != nil {
    			result.Error = nerr.Err.Error()
    		} else {
    			result.Success = true
    		}
    		startProfilingResult = append(startProfilingResult, result)
    	}
    
    	// Create JSON result and send it to the client
    	startProfilingResultInBytes, err := json.Marshal(startProfilingResult)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    	kl := testKubelet.kubelet
    	pods := []*v1.Pod{
    		podWithUIDNameNs("12345678", "pod1", "ns"),
    		podWithUIDNameNs("12345679", "pod2", "ns"),
    	}
    
    	kl.podManager.SetPods(pods)
    	// Sync to create pod directories.
    	kl.HandlePodSyncs(kl.podManager.GetPods())
    	for i := range pods {
    		assert.True(t, dirExists(kl.getPodDir(pods[i].UID)), "Expected directory to exist for pod %d", i)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

       *
       * <p><b>Note:</b>If you only need to know whether two maps have the same mappings, call {@code
       * left.equals(right)} instead of this method.
       *
       * @param left the map to treat as the "left" map for purposes of comparison
       * @param right the map to treat as the "right" map for purposes of comparison
       * @return the difference between the two maps
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

       *
       * <p><b>Note:</b>If you only need to know whether two maps have the same mappings, call {@code
       * left.equals(right)} instead of this method.
       *
       * @param left the map to treat as the "left" map for purposes of comparison
       * @param right the map to treat as the "right" map for purposes of comparison
       * @return the difference between the two maps
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    				} else {
    					errs = appendErrors(errs, fmt.Errorf("duplicate entries in exportTo for entry %s", e))
    				}
    			} else {
    				// if this is a serviceEntry, allow ~ in exportTo as it can be used to create
    				// a service that is not even visible within the local namespace to anyone other
    				// than the proxies of that service.
    				if isServiceEntry && visibility.Instance(e) == visibility.None {
    					exportToSet.Insert(key)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                privateSyntheticMethod("getConventionWhileDisabledDeprecationLogger", RETURN_CONVENTION, methodVisitor -> new LocalMethodVisitorScope(methodVisitor) {{
                    _ALOAD(0);
                    _INVOKEDYNAMIC("create", getMethodDescriptor(FACTORY_TYPE, generatedType), LAMBDA_BOOTSTRAP_HANDLE, Arrays.asList(
                        RETURN_OBJECT_METHOD_TYPE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    	}
    }
    
    // An exhaustive is a mechanism for writing exhaustive or stochastic tests.
    // The basic usage is:
    //
    //	for x.Next() {
    //		... code using x.Maybe() or x.Choice(n) to create test cases ...
    //	}
    //
    // Each iteration of the loop returns a different set of results, until all
    // possible result sets have been explored. It is okay for different code paths
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. src/net/http/server.go

    	n += n0
    	return n, err
    }
    
    // debugServerConnections controls whether all server connections are wrapped
    // with a verbose logging wrapper.
    const debugServerConnections = false
    
    // Create new connection from rwc.
    func (srv *Server) newConn(rwc net.Conn) *conn {
    	c := &conn{
    		server: srv,
    		rwc:    rwc,
    	}
    	if debugServerConnections {
    		c.rwc = newLoggingConn("server", c.rwc)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top