Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 371 for unusual (0.11 sec)

  1. pkg/kubelet/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    	// RestartedPodTotal is incremented every time a pod with the same UID is deleted and recreated
    	RestartedPodTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/kernels/xla_ops.cc

        "/tensorflow/core/xla_launch_counter",
        "The number of times a XlaLaunch is called.", "device");
    
    // A closure describing how to run a compiled version of a TensorFlow function.
    //
    // It may seem unusual to stick the resource variable snapshots in this class.
    // This is necessary: we need to use the snapshots observed by the compiler as
    // the initial values for the resource variables (and cannot snapshot them again
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    		}
    		return queueSkip
    	}
    
    	rejectorPlugins := pInfo.UnschedulablePlugins.Union(pInfo.PendingPlugins)
    	if len(rejectorPlugins) == 0 {
    		// No failed plugins are associated with this Pod.
    		// Meaning something unusual (a temporal failure on kube-apiserver, etc) happened and this Pod gets moved back to the queue.
    		// In this case, we should retry scheduling it because this Pod may not be retried until the next flush.
    		return queueAfterBackoff
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

         * </ul>
         * This property can have a large impact on performance due to the cost of stopping and starting each test process. It is unusual for this property to be changed from the default.
         *
         * @return The maximum number of test classes to execute in a test process. Returns 0 when there is no maximum.
         */
        @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/switch.go

    	// "jump" to execute if no case matches.
    	br := ir.NewBranchStmt(base.Pos, ir.OBREAK, nil)
    
    	// Assemble a list of all the types we're looking for.
    	// This pass flattens the case lists, as well as handles
    	// some unusual cases, like default and nil cases.
    	type oneCase struct {
    		pos src.XPos
    		jmp ir.Node // jump to body of selected case
    
    		// The case we're matching. Normally the type we're looking for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    For example, Gradle uses an attribute named `org.gradle.usage` to describe with how a component is used by the consumer (for compilation, for runtime execution, etc).
    It is not unusual for a variant to have more attributes than the consumer needs to provide to select it.
    
    [[sec:variant-aware-matching]]
    == Variant attribute matching
    
    .About producer variants
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. src/encoding/json/decode.go

    //
    //go:linkname unquoteBytes
    func unquoteBytes(s []byte) (t []byte, ok bool) {
    	if len(s) < 2 || s[0] != '"' || s[len(s)-1] != '"' {
    		return
    	}
    	s = s[1 : len(s)-1]
    
    	// Check for unusual characters. If there are none,
    	// then no unquoting is needed, so return a slice of the
    	// original bytes.
    	r := 0
    	for r < len(s) {
    		c := s[r]
    		if c == '\\' || c == '"' || c < ' ' {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. cmd/storage-rest-server.go

    	return nil
    }
    
    // A single function to write certain errors to be fatal
    // or informative based on the `exit` flag, please look
    // at each implementation of error for added hints.
    //
    // FIXME: This is an unusual function but serves its purpose for
    // now, need to revisit the overall erroring structure here.
    // Do not like it :-(
    func logFatalErrs(err error, endpoint Endpoint, exit bool) {
    	switch {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/CharMatcher.java

        String string = sequence.toString();
        int pos = indexIn(string);
        if (pos == -1) {
          return string;
        }
    
        char[] chars = string.toCharArray();
        int spread = 1;
    
        // This unusual loop comes from extensive benchmarking
        OUT:
        while (true) {
          pos++;
          while (true) {
            if (pos == chars.length) {
              break OUT;
            }
            if (matches(chars[pos])) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/CharMatcher.java

        String string = sequence.toString();
        int pos = indexIn(string);
        if (pos == -1) {
          return string;
        }
    
        char[] chars = string.toCharArray();
        int spread = 1;
    
        // This unusual loop comes from extensive benchmarking
        OUT:
        while (true) {
          pos++;
          while (true) {
            if (pos == chars.length) {
              break OUT;
            }
            if (matches(chars[pos])) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top