Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,668 for book (0.27 sec)

  1. tensorflow/cc/framework/cc_op_gen_util.h

    string PrintAttrValue(StringPiece, const AttrValue& attr_value);
    
    bool IsEmptyList(const AttrValue::ListValue& list);
    
    string ToCamelCase(StringPiece str);
    
    string SeparateNamespaces(StringPiece str);
    
    // Returns a <string, bool> pair. The string is the C++ type name to be used for
    // attr_type when defining an object of that type. The bool is a flag to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/v1beta1/defaults.go

    		obj.EnableSystemLogHandler = utilpointer.Bool(true)
    	}
    	if obj.EnableProfilingHandler == nil {
    		obj.EnableProfilingHandler = utilpointer.Bool(true)
    	}
    	if obj.EnableDebugFlagsHandler == nil {
    		obj.EnableDebugFlagsHandler = utilpointer.Bool(true)
    	}
    	if obj.SeccompDefault == nil {
    		obj.SeccompDefault = utilpointer.Bool(false)
    	}
    	if obj.MemoryThrottlingFactor == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/iter/iter.go

    func Pull[V any](seq Seq[V]) (next func() (V, bool), stop func()) {
    	var (
    		v          V
    		ok         bool
    		done       bool
    		yieldNext  bool
    		racer      int
    		panicValue any
    		seqDone    bool // to detect Goexit
    	)
    	c := newcoro(func(c *coro) {
    		race.Acquire(unsafe.Pointer(&racer))
    		if done {
    			race.Release(unsafe.Pointer(&racer))
    			return
    		}
    		yield := func(v1 V) bool {
    			if done {
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/mlir_bridge_rollout_policy.cc

        const tensorflow::Graph& graph,
        const FunctionLibraryDefinition* function_library,
        std::optional<ConfigProto> config_proto,
        bool is_supported_by_replicated_brige,
        bool uses_uninitialized_resource_args, bool is_v1_compat,
        bool record_stats) {
      switch (GetMlirBridgeRolloutState(config_proto)) {
        case ConfigProto::Experimental::MLIR_BRIDGE_ROLLOUT_ENABLED:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/internal/cpu/cpu_x86.go

    	X86.HasAES = isSet(ecx1, cpuid_AES)
    
    	// OSXSAVE can be false when using older Operating Systems
    	// or when explicitly disabled on newer Operating Systems by
    	// e.g. setting the xsavedisable boot option on Windows 10.
    	X86.HasOSXSAVE = isSet(ecx1, cpuid_OSXSAVE)
    
    	// The FMA instruction set extension only has VEX prefixed instructions.
    	// VEX prefixed instructions require OSXSAVE to be enabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:20 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/internal/goexperiment/flags.go

    // For the baseline experimental configuration, see
    // objabi.experimentBaseline.
    //
    // If you change this struct definition, run "go generate".
    type Flags struct {
    	FieldTrack        bool
    	PreemptibleLoops  bool
    	StaticLockRanking bool
    	BoringCrypto      bool
    
    	// Regabi is split into several sub-experiments that can be
    	// enabled individually. Not all combinations work.
    	// The "regabi" GOEXPERIMENT is an alias for all "working"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

    // NOLINTNEXTLINE
    opt<bool> preserve_assert_op(
        "preserve-assert-op",
        llvm::cl::desc("Preserve AssertOp during tfl legalization."),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> enable_stablehlo_conversion(
        "enable-stablehlo-conversion",
        llvm::cl::desc("Enable converting TF to Stablehlo."),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> post_training_quantization(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1beta1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of CronJobs.
      repeated CronJob items = 2;
    }
    
    // CronJobSpec describes how the job execution will look like and when it will actually run.
    message CronJobSpec {
      // The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.
      optional string schedule = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/internal/poll/fd_poll_runtime.go

    }
    
    func (pd *pollDesc) prepare(mode int, isFile bool) error {
    	if pd.runtimeCtx == 0 {
    		return nil
    	}
    	res := runtime_pollReset(pd.runtimeCtx, mode)
    	return convertErr(res, isFile)
    }
    
    func (pd *pollDesc) prepareRead(isFile bool) error {
    	return pd.prepare('r', isFile)
    }
    
    func (pd *pollDesc) prepareWrite(isFile bool) error {
    	return pd.prepare('w', isFile)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/version_windows.go

    	info.osVersionInfoSize = uint32(unsafe.Sizeof(info))
    	rtlGetVersion(&info)
    	return info.majorVersion, info.minorVersion, info.buildNumber
    }
    
    var (
    	supportTCPKeepAliveIdle     bool
    	supportTCPKeepAliveInterval bool
    	supportTCPKeepAliveCount    bool
    )
    
    var initTCPKeepAlive = sync.OnceFunc(func() {
    	s, err := WSASocket(syscall.AF_INET, syscall.SOCK_STREAM, syscall.IPPROTO_TCP, nil, 0, WSA_FLAG_NO_HANDLE_INHERIT)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top