Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for book (0.05 sec)

  1. pkg/kubelet/kubelet.go

    	registerNode bool
    	// List of taints to add to a node object when the kubelet registers itself.
    	registerWithTaints []v1.Taint
    	// Set to true to have the node register itself as schedulable.
    	registerSchedulable bool
    	// for internal book keeping; access only from within registerWithApiserver
    	registrationCompleted bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    				// (*Link).address. This may happen due to usage of PCALIGN directives
    				// larger than Funcalign, or usage of ISA 3.1 prefixed instructions
    				// (see ISA 3.1 Book I 1.9).
    				const ppc64maxFuncalign = 64
    				sectAlign = ppc64maxFuncalign
    				va = uint64(Rnd(int64(va), ppc64maxFuncalign))
    			}
    
    			// Set the length for the previous text section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // the called function and propagating the return type.
      bool InferShapeForCall(CallOpInterface call_op);
    
      bool InferShapeForCast(Operation* op);
    
      bool InferShapeForRestore(Operation* op);
    
      // Infers the shape IfOp outputs based on the shapes of the then and else
      // function result types.
      bool InferShapeForIf(IfOp op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	n := int64(10)
    	options.GracePeriodSeconds = &n
    	return true
    }
    
    type testRESTStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    	namespaceScoped          bool
    	allowCreateOnUpdate      bool
    	allowUnconditionalUpdate bool
    }
    
    func (t *testRESTStrategy) NamespaceScoped() bool          { return t.namespaceScoped }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	reqBody          io.ReadCloser
    	cancelCtx        context.CancelFunc // when ServeHTTP exits
    	wroteHeader      bool               // a non-1xx header has been (logically) written
    	wants10KeepAlive bool               // HTTP/1.0 w/ Connection "keep-alive"
    	wantsClose       bool               // HTTP request has Connection "close"
    
    	// canWriteContinue is an atomic boolean that says whether or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    	run(t, testTransportRespectRequestWantsClose, []testMode{http1Mode})
    }
    func testTransportRespectRequestWantsClose(t *testing.T, mode testMode) {
    	tests := []struct {
    		disableKeepAlives bool
    		close             bool
    	}{
    		{disableKeepAlives: false, close: false},
    		{disableKeepAlives: false, close: true},
    		{disableKeepAlives: true, close: false},
    		{disableKeepAlives: true, close: true},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // metadata in the exported flatbuffer file.
      tflite::ModelControlDependencies model_control_dependencies_;
    
      // Decide if we convert stablehlo ops in flatbuffer
      bool convert_stablehlo_ = true;
    
      bool use_buffer_offset_ = false;
    
      bool require_use_buffer_offset_ = false;
    
      std::optional<size_t> custom_option_alignment_ = std::nullopt;
    
      // Map from mlir constant attribute to the buffer index. This is used to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    	}
    }
    
    type handlerBodyCloseTest struct {
    	bodySize     int
    	bodyChunked  bool
    	reqConnClose bool
    
    	wantEOFSearch bool // should Handler's Body.Close do Reads, looking for EOF?
    	wantNextReq   bool // should it find the next request on the same conn?
    }
    
    func (t handlerBodyCloseTest) connectionHeader() string {
    	if t.reqConnClose {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top