Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 180 for Result (0.16 sec)

  1. pkg/controller/job/job_controller.go

    	action := metrics.JobSyncActionReconciling
    
    	defer func() {
    		result := "success"
    		if rErr != nil {
    			result = "error"
    		}
    
    		metrics.JobSyncDurationSeconds.WithLabelValues(completionMode, result, action).Observe(jm.clock.Since(startTime).Seconds())
    		metrics.JobSyncNum.WithLabelValues(completionMode, result, action).Inc()
    	}()
    
    	if job.Status.UncountedTerminatedPods == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Sets.java

        @Override
        public NavigableSet<E> descendingSet() {
          UnmodifiableNavigableSet<E> result = descendingSet;
          if (result == null) {
            result = descendingSet = new UnmodifiableNavigableSet<>(delegate.descendingSet());
            result.descendingSet = this;
          }
          return result;
        }
    
        @Override
        public Iterator<E> descendingIterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/grafana/minio-dashboard.json

          },
          "description": "",
          "fieldConfig": {
            "defaults": {
              "mappings": [
                {
                  "options": {
                    "match": "null",
                    "result": {
                      "text": "N/A"
                    }
                  },
                  "type": "special"
                }
              ],
              "thresholds": {
                "mode": "percentage",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	}
    	result.next = nil
    	// If result.bits is not 8 byte aligned adjust index so
    	// that &result.bits[result.free] is 8 byte aligned.
    	if unsafe.Offsetof(gcBitsArena{}.bits)&7 == 0 {
    		result.free = 0
    	} else {
    		result.free = 8 - (uintptr(unsafe.Pointer(&result.bits[0])) & 7)
    	}
    	return result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/math/big/float_test.go

    						continue
    					}
    					if acc != Exact {
    						t.Errorf("%g/%g got %s result; want exact result", a, b, acc)
    					}
    				}
    			}
    		}
    	}
    }
    
    // TestFloatArithmeticSpecialValues tests that Float operations produce the
    // correct results for combinations of zero (±0), finite (±1 and ±2.71828),
    // and infinite (±Inf) operands.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    			Containers: containers,
    		},
    	}
    
    	backOff := flowcontrol.NewBackOff(time.Second, time.Minute)
    	result := m.SyncPod(context.Background(), pod, &kubecontainer.PodStatus{}, []v1.Secret{}, backOff)
    	assert.NoError(t, result.Error())
    	assert.Equal(t, 2, len(fakeRuntime.Containers))
    	assert.Equal(t, 2, len(fakeImage.Images))
    	assert.Equal(t, 1, len(fakeRuntime.Sandboxes))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    			// Need HTTP
    			if opt.Scheme != scheme.HTTP {
    				return
    			}
    			var singleHost echo.Checker = func(result echo.CallResult, _ error) error {
    				hostnames := make([]string, len(result.Responses))
    				for i, r := range result.Responses {
    					hostnames[i] = r.Hostname
    				}
    				unique := sets.SortedList(sets.New(hostnames...))
    				if len(unique) != 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	}{
    		{
    			name:                   "timed out operations should result in device marked as uncertain",
    			deviceState:            operationexecutor.DeviceMountUncertain,
    			unmountDeviceCallCount: 1,
    			volumeName:             volumetesting.TimeoutOnMountDeviceVolumeName,
    		},
    		{
    			name:                   "failed operation should result in not-mounted device",
    			deviceState:            operationexecutor.DeviceNotMounted,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  9. src/math/big/int_test.go

    	}
    	if y != nil && Y.Cmp(y) != 0 {
    		t.Errorf("GCD(%s, %s, %s, %s): got y = %s, want %s", x, y, a, b, Y, y)
    	}
    
    	// check results in presence of aliasing (issue #11284)
    	a2 := new(Int).Set(a)
    	b2 := new(Int).Set(b)
    	a2.GCD(X, Y, a2, b2) // result is same as 1st argument
    	if a2.Cmp(d) != 0 {
    		t.Errorf("aliased z = a GCD(%s, %s, %s, %s): got d = %s, want %s", x, y, a, b, a2, d)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    )
    
    // +genclient
    // +genclient:method=GetScale,verb=get,subresource=scale,result=k8s.io/api/autoscaling/v1.Scale
    // +genclient:method=UpdateScale,verb=update,subresource=scale,input=k8s.io/api/autoscaling/v1.Scale,result=k8s.io/api/autoscaling/v1.Scale
    // +genclient:method=ApplyScale,verb=apply,subresource=scale,input=k8s.io/api/autoscaling/v1.Scale,result=k8s.io/api/autoscaling/v1.Scale
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top