Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 153 for book (0.07 sec)

  1. pkg/kubelet/eviction/helpers_test.go

    		description                   string
    		imageFs                       bool
    		containerFs                   bool
    		expectedContainerFsHard       evictionapi.Threshold
    		expectedContainerFsSoft       evictionapi.Threshold
    		expectedContainerFsINodesHard evictionapi.Threshold
    		expectedContainerFsINodesSoft evictionapi.Threshold
    		expectErr                     bool
    		thresholdList                 []evictionapi.Threshold
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    }
    
    func newTestKubeletWithImageList(
    	t *testing.T,
    	imageList []kubecontainer.Image,
    	controllerAttachDetachEnabled bool,
    	initFakeVolumePlugin bool,
    	localStorageCapacityIsolation bool,
    ) *TestKubelet {
    	logger, _ := ktesting.NewTestContext(t)
    
    	fakeRuntime := &containertest.FakeRuntime{
    		ImageList: imageList,
    		// Set ready conditions by default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal_test.go

    	verifyCPUCurrent             bool
    	reportedLevels               []uint64
    	reportedCPURequests          []resource.Quantity
    	reportedPodReadiness         []v1.ConditionStatus
    	reportedPodStartTime         []metav1.Time
    	reportedPodPhase             []v1.PodPhase
    	reportedPodDeletionTimestamp []bool
    	scaleUpdated                 bool
    	statusUpdated                bool
    	eventCreated                 bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_test.go

    	tests := []struct {
    		name                          string
    		namespace                     string
    		exportTo                      []string
    		isDestinationRuleWithSelector bool
    		isServiceEntry                bool
    		wantErr                       bool
    	}{
    		{
    			name:      "empty exportTo is okay",
    			namespace: "ns5",
    			wantErr:   false,
    		},
    		{
    			name:      "* is allowed",
    			namespace: "ns5",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	}
    }
    
    func (kl *Kubelet) runtimeClassSupportsRecursiveReadOnlyMounts(pod *v1.Pod) bool {
    	if kl.runtimeClassManager == nil {
    		return false
    	}
    	runtimeHandlerName, err := kl.runtimeClassManager.LookupRuntimeHandler(pod.Spec.RuntimeClassName)
    	if err != nil {
    		klog.ErrorS(err, "failed to look up the runtime handler", "runtimeClassName", pod.Spec.RuntimeClassName)
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    // it is closed, meaning cgocallbackg can reliably receive from it.
    var main_init_done chan bool
    
    //go:linkname main_main main.main
    func main_main()
    
    // mainStarted indicates that the main M has started.
    var mainStarted bool
    
    // runtimeInitTime is the nanotime() at which the runtime started.
    var runtimeInitTime int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    }
    
    func IsWindow(hwnd HWND) (isWindow bool) {
    	r0, _, _ := syscall.Syscall(procIsWindow.Addr(), 1, uintptr(hwnd), 0, 0)
    	isWindow = r0 != 0
    	return
    }
    
    func IsWindowUnicode(hwnd HWND) (isUnicode bool) {
    	r0, _, _ := syscall.Syscall(procIsWindowUnicode.Addr(), 1, uintptr(hwnd), 0, 0)
    	isUnicode = r0 != 0
    	return
    }
    
    func IsWindowVisible(hwnd HWND) (isVisible bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let hasFolder = 1;
    
      let hasVerifier = 1;
    
      let extraClassDeclaration = [{
        // SameScalesOpInterface:
        bool RequiredSameOperandsAndResultsScale(bool sign, int bit_width) {
          // uint8 doesn't require same operands and results scales.
          bool is_uint8 = !sign && (bit_width == 8);
          return !is_uint8;
        }
      }];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    	var (
    		syncErr   = fmt.Errorf("sync error")
    		statusErr = fmt.Errorf("status error")
    	)
    
    	testCases := []struct {
    		desc string
    
    		hasSyncErr   bool
    		hasStatusErr bool
    
    		expectedErr error
    	}{
    		{
    			desc:         "sync error",
    			hasSyncErr:   true,
    			hasStatusErr: false,
    			expectedErr:  syncErr,
    		},
    		{
    			desc:         "status error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      auto all_ones = [](ArrayAttr arr) -> bool {
        return llvm::all_of(arr, [](Attribute attr) -> bool {
          return mlir::cast<IntegerAttr>(attr).getInt() == 1;
        });
      };
    
      // Convolutions with 1x1 filter and with strides and dilations all ones, can
      // be computed as a GEMM in NHWC data format, and can be up to ~2x times
      // faster than convolution in NCHW.
      const bool one_by_one = d0 == 1 && d1 == 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top