Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 159 for book (0.08 sec)

  1. fastapi/routing.py

        response_content: Any,
        include: Optional[IncEx] = None,
        exclude: Optional[IncEx] = None,
        by_alias: bool = True,
        exclude_unset: bool = False,
        exclude_defaults: bool = False,
        exclude_none: bool = False,
        is_coroutine: bool = True,
    ) -> Any:
        if field:
            errors = []
            if not hasattr(field, "serialize"):
                # pydantic v1
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    // true.
    bool VerifyOperandsHaveSameShapesOrBroadcastableShape(
        Operation* op, ArrayRef<unsigned> indices, int max_bcast_rank) {
      if (indices.empty()) return true;
    
      // First, it checks there are any inputs that has unknown rank.
      bool has_unknown_shape_input = false;
      bool has_same_shape = true;
      bool reach_first_known_shape = false;
      int64_t max_rank = -1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        const bool has_i32_output =
            IsI32F32UniformQuantizedPerAxisType(GetElementType(op.getResult()));
        stablehlo::ConvDimensionNumbersAttr dimension_numbers =
            op.getDimensionNumbers();
    
        const bool is_depthwise = IsDepthwiseConvolution(op);
        const bool is_transpose_conv = IsTransposeConv(op, dimension_numbers);
        const bool fuse_bias_constant =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top