Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,668 for book (0.06 sec)

  1. src/sync/atomic/type.go

    func (x *Bool) Swap(new bool) (old bool) { return SwapUint32(&x.v, b32(new)) != 0 }
    
    // CompareAndSwap executes the compare-and-swap operation for the boolean value x.
    func (x *Bool) CompareAndSwap(old, new bool) (swapped bool) {
    	return CompareAndSwapUint32(&x.v, b32(old), b32(new))
    }
    
    // b32 returns a uint32 0 or 1 representing b.
    func b32(b bool) uint32 {
    	if b {
    		return 1
    	}
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/common/case_format.cc

                            const char delimiter = '_') {
      const bool from_snake =
          (str == str_util::Uppercase(str)) || (str == str_util::Lowercase(str));
      const bool toUpper = (to == UPPER_CAMEL || to == UPPER_SNAKE);
      const bool toSnake = (to == LOWER_SNAKE || to == UPPER_SNAKE);
    
      string result;
    
      bool inputStart = true;
      bool wordStart = true;
      for (const char c : str) {
        // Find a word start.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/return.go

    		}
    	}
    
    	return false
    }
    
    func hasBreakList(list []syntax.Stmt, label string, implicit bool) bool {
    	for _, s := range list {
    		if hasBreak(s, label, implicit) {
    			return true
    		}
    	}
    	return false
    }
    
    func hasBreakCaseList(list []*syntax.CaseClause, label string, implicit bool) bool {
    	for _, s := range list {
    		if hasBreakList(s.Body, label, implicit) {
    			return true
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. test/fixedbugs/issue66261.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	env := func() func(*bool) func() int {
    		return func() func(*bool) func() int {
    			return func(ptr *bool) func() int {
    				return func() int {
    					*ptr = true
    					return 0
    				}
    			}
    		}()
    	}()
    
    	var ok bool
    	func(int) {}(env(&ok)())
    	if !ok {
    		panic("FAIL")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 22:47:28 UTC 2024
    - 464 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.h

        const absl::flat_hash_set<std::string>& denylisted_ops,
        const CustomOpMap& custom_op_map,
        int64_t minimum_elements_for_weights = 1024,
        bool disable_per_channel = false, bool weight_only_quantization = false,
        bool legacy_float_scale = false);
    
    // Overloading methods to support old quantizer versions API
    TfLiteStatus QuantizeWeights(flatbuffers::FlatBufferBuilder* builder,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.h

        bool disable_per_channel, bool fully_quantize, std::string &output_buffer,
        bool verify_numeric = false, bool whole_model_verify = false,
        bool legacy_float_scale = true,
        const absl::flat_hash_set<std::string> &denylisted_ops = {},
        const absl::flat_hash_set<std::string> &denylisted_nodes = {},
        bool enable_variable_quantization = false,
        bool disable_per_channel_for_dense_layers = false,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/type.go

    }
    
    type exprFlags uint16
    
    func (f exprFlags) IsVoid() bool          { return f&1 != 0 }
    func (f exprFlags) IsType() bool          { return f&2 != 0 }
    func (f exprFlags) IsBuiltin() bool       { return f&4 != 0 } // a language builtin that resembles a function call, e.g., "make, append, new"
    func (f exprFlags) IsValue() bool         { return f&8 != 0 }
    func (f exprFlags) IsNil() bool           { return f&16 != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/stubs.go

    //go:noescape
    func Cas(ptr *uint32, old, new uint32) bool
    
    // NO go:noescape annotation; see atomic_pointer.go.
    func Casp1(ptr *unsafe.Pointer, old, new unsafe.Pointer) bool
    
    //go:noescape
    func Casint32(ptr *int32, old, new int32) bool
    
    //go:noescape
    func Casint64(ptr *int64, old, new int64) bool
    
    //go:noescape
    func Casuintptr(ptr *uintptr, old, new uintptr) bool
    
    //go:noescape
    func Storeint32(ptr *int32, new int32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SpringBootPluginSmokeTest.groovy

        @Issue('https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-gradle-plugin')
        def 'spring boot plugin'() {
            given:
            buildFile << """
                plugins {
                    id "application"
                    id "org.springframework.boot" version "${TestedVersions.springBoot}" // TODO:Finalize Upload Removal - Issue #21439
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/config/config.go

    	DryRun                  bool          `json:"DRY_RUN"`
    	RestoreFormat           bool          `json:"RESTORE_FORMAT"`
    	SkipRuleApply           bool          `json:"SKIP_RULE_APPLY"`
    	RunValidation           bool          `json:"RUN_VALIDATION"`
    	RedirectDNS             bool          `json:"REDIRECT_DNS"`
    	DropInvalid             bool          `json:"DROP_INVALID"`
    	CaptureAllDNS           bool          `json:"CAPTURE_ALL_DNS"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top