Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 147 for call27 (2.69 sec)

  1. src/log/slog/value.go

    type LogValuer interface {
    	LogValue() Value
    }
    
    const maxLogValues = 100
    
    // Resolve repeatedly calls LogValue on v while it implements [LogValuer],
    // and returns the result.
    // If v resolves to a group, the group's attributes' values are not recursively
    // resolved.
    // If the number of LogValue calls exceeds a threshold, a Value containing an
    // error is returned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/plugin/noderesources.go

    // look like...
    // func (c *nodeResourcesController) waitForStop() {
    // 	if c == nil {
    // 		return
    // 	}
    //
    // 	c.wg.Wait()
    // }
    
    // addPlugin is called whenever a plugin has been (re-)registered.
    func (c *nodeResourcesController) addPlugin(driverName string, pluginInstance *plugin) {
    	if c == nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pkg/scheduler/scheduler.go

    	// a pod may take some amount of time and we don't want pods to get
    	// stale while they sit in a channel.
    	NextPod func(logger klog.Logger) (*framework.QueuedPodInfo, error)
    
    	// FailureHandler is called upon a scheduling failure.
    	FailureHandler FailureHandlerFn
    
    	// SchedulePod tries to schedule the given pod to one of the nodes in the node list.
    	// Return a struct of ScheduleResult with the name of suggested host on success,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    		}
    		// This means that during reinvocation, a webhook will not be
    		// called for the first time. For example, if the webhook is
    		// skipped in the first round because of mismatching labels,
    		// even if the labels become matching, the webhook does not
    		// get called during reinvocation.
    		if reinvokeCtx.IsReinvoke() && !webhookReinvokeCtx.ShouldReinvokeWebhook(invocation.Webhook.GetUID()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      LOGISTIC = 14,
      LSH_PROJECTION = 15,
      LSTM = 16,
      MAX_POOL_2D = 17,
      MUL = 18,
      RELU = 19,
      // NOTE(aselle): RELU_N1_TO_1 used to be called RELU1, but it was renamed
      // since different model developers use RELU1 in different ways. Never
      // create another op called RELU1.
      RELU_N1_TO_1 = 20,
      RELU6 = 21,
      RESHAPE = 22,
      RESIZE_BILINEAR = 23,
      RNN = 24,
      SOFTMAX = 25,
      SPACE_TO_DEPTH = 26,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_plugin.go

    var nim nodeinfomanager.Interface
    
    // PluginHandler is the plugin registration handler interface passed to the
    // pluginwatcher module in kubelet
    var PluginHandler = &RegistrationHandler{}
    
    // ValidatePlugin is called by kubelet's plugin watcher upon detection
    // of a new registration socket opened by CSI Driver registrar side car.
    func (h *RegistrationHandler) ValidatePlugin(pluginName string, endpoint string, versions []string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. src/math/rand/rand_test.go

    	}
    }
    
    func TestShuffleSmall(t *testing.T) {
    	// Check that Shuffle allows n=0 and n=1, but that swap is never called for them.
    	r := New(NewSource(1))
    	for n := 0; n <= 1; n++ {
    		r.Shuffle(n, func(i, j int) { t.Fatalf("swap called, n=%d i=%d j=%d", n, i, j) })
    	}
    }
    
    // encodePerm converts from a permuted slice of length n, such as Perm generates, to an int in [0, n!).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/cfg/cfg.go

    			}
    		}
    		envCache.m[string(key)] = string(val)
    	}
    }
    
    // Getenv gets the value for the configuration key.
    // It consults the operating system environment
    // and then the go/env file.
    // If Getenv is called for a key that cannot be set
    // in the go/env file (for example GODEBUG), it panics.
    // This ensures that CanGetenv is accurate, so that
    // 'go env -w' stays in sync with what Getenv can retrieve.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

         * This method uses reflection to detect the API and calls the version with the correct signature.
         *
         * If the TestNG version is greater than or equal to 6.9.12, the provided {@code value} is coerced to
         * an Enum, otherwise the method which accepts a {@code String} is called with the unmodified {@code value}.
         *
         * @param testNg the TestNG instance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one.go

    	calledDone := false
    	defer func() {
    		if !calledDone {
    			// Basically, AddUnschedulableIfNotPresent calls DonePod internally.
    			// But, AddUnschedulableIfNotPresent isn't called in some corner cases.
    			// Here, we call DonePod explicitly to avoid leaking the pod.
    			sched.SchedulingQueue.Done(podInfo.Pod.UID)
    		}
    	}()
    
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top