Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 151 for book (0.68 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(OptimizePass)
    
      OptimizePass() = default;
      OptimizePass(const OptimizePass &) {}
      explicit OptimizePass(bool enable_canonicalization,
                            bool disable_fuse_mul_and_fc = false) {
        this->enable_canonicalization_ = enable_canonicalization;
        this->disable_fuse_mul_and_fc_ = disable_fuse_mul_and_fc;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. fastapi/applications.py

            deprecated: Optional[bool] = None,
            methods: Optional[List[str]] = None,
            operation_id: Optional[str] = None,
            response_model_include: Optional[IncEx] = None,
            response_model_exclude: Optional[IncEx] = None,
            response_model_by_alias: bool = True,
            response_model_exclude_unset: bool = False,
            response_model_exclude_defaults: bool = False,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  3. src/reflect/value.go

    	return Value{ptrTo(v.typ()), v.ptr, fl | flag(Pointer)}
    }
    
    // Bool returns v's underlying value.
    // It panics if v's kind is not [Bool].
    func (v Value) Bool() bool {
    	// panicNotBool is split out to keep Bool inlineable.
    	if v.kind() != Bool {
    		v.panicNotBool()
    	}
    	return *(*bool)(v.ptr)
    }
    
    func (v Value) panicNotBool() {
    	v.mustBe(Bool)
    }
    
    var bytesType = rtypeOf(([]byte)(nil))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. pkg/api/pod/util_test.go

    					FSGroupChangePolicy: &changePolicy,
    				},
    			},
    		}
    	}
    	podInfos := []struct {
    		description                  string
    		newPodHasFSGroupChangePolicy bool
    		pod                          func() *api.Pod
    		expectPolicyInPod            bool
    	}{
    		{
    			description:                  "oldPod.FSGroupChangePolicy=nil, feature=true, newPod.FSGroupChangePolicy=true",
    			pod:                          nofsGroupPod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    		{new(float64), [...]bool{false, false, false, false}},
    		{new(complex64), [...]bool{false, false, false, false}},
    		{new([5]int), [...]bool{false, false, false, false}},
    		{new(integer), [...]bool{false, false, false, false}},
    		{new(map[int]int), [...]bool{false, false, false, false}},
    		{new(chan<- int), [...]bool{false, false, false, false}},
    		{new(func(a int8)), [...]bool{false, false, false, false}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        std::vector<string>* shape_inference_graphs,
        bool* has_outside_compilation) {
      // Instantiate "cond" and "body".
      NameAttrList cond, body;
      TF_RETURN_IF_ERROR(GetNodeAttr(n->attrs(), "cond", &cond));
      TF_RETURN_IF_ERROR(GetNodeAttr(n->attrs(), "body", &body));
    
      // Extract outside compilation for cond and body.
      bool cond_has_outside_compilation = false;
      bool body_has_outside_compilation = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/eviction_manager_test.go

    		containerFsStats              string
    		kubeletSeparateDiskFeature    bool
    		writeableSeparateFromReadOnly bool
    		expectContainerGcCall         bool
    		expectImageGcCall             bool
    		thresholdToMonitor            evictionapi.Threshold
    		podToMakes                    []podToMake
    		dedicatedImageFs              *bool
    		expectErr                     string
    		inducePressureOnWhichFs       string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    }
    
    bool IsSign(APInt a, APInt sign) {
      if (a.isZero()) return a == sign;
      if (a.isNegative()) return sign == -1;
      return sign == 1;
    }
    
    bool IsSign(APFloat a, APFloat sign) {
      if (a.isNaN() || a.isZero()) return a == sign;
      if (a.isNegative()) return sign.isExactlyValue(-1.0);
      return sign.isExactlyValue(1.0);
    }
    
    bool IsDenseSplatIntAttr(ElementsAttr float_or_int) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top