Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 337 for Result (0.12 sec)

  1. 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)
  2. 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)
  3. 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: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    | `project.projectDir`
    | A task input or output property or a script variable to capture the result of using `project.projectDir` to calculate the actual parameter.
    
    | `project.buildDir`
    | A task input or output property or a script variable to capture the result of using `project.buildDir` to calculate the actual parameter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. 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)
  9. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // smaller chunks of a very large result can ensure they see all possible objects. If objects are
      // updated during a chunked list the version of the object that was present at the time the first list
      // result was calculated is returned.
      optional int64 limit = 7;
    
      // The continue option should be set when retrieving more results from the server. Since this value is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // smaller chunks of a very large result can ensure they see all possible objects. If objects are
      // updated during a chunked list the version of the object that was present at the time the first list
      // result was calculated is returned.
      optional int64 limit = 7;
    
      // The continue option should be set when retrieving more results from the server. Since this value is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top