Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 328 for unusual (0.12 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    				# TYPE kubelet_orphaned_runtime_pods_total counter
    				kubelet_orphaned_runtime_pods_total 1
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/LongMathTest.java

               * -4294967296L = -9223372036854775808L!
               *
               * To be clear, this bug affects not the test's computation of the expected result but the
               * _actual prod code_. But it probably affects only unusual cases.
               */
              continue;
            }
            BigInteger expectedResult = valueOf(a).multiply(valueOf(b));
            boolean expectedSuccess = fitsInLong(expectedResult);
            try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/math/LongMathTest.java

               * -4294967296L = -9223372036854775808L!
               *
               * To be clear, this bug affects not the test's computation of the expected result but the
               * _actual prod code_. But it probably affects only unusual cases.
               */
              continue;
            }
            BigInteger expectedResult = valueOf(a).multiply(valueOf(b));
            boolean expectedSuccess = fitsInLong(expectedResult);
            try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top