Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,936 for opus (0.07 sec)

  1. cmd/os_other.go

    func readDirWithOpts(dirPath string, opts readDirOpts) (entries []string, err error) {
    	d, err := Open(dirPath)
    	if err != nil {
    		return nil, osErrToFileErr(err)
    	}
    	defer d.Close()
    
    	maxEntries := 1000
    	if opts.count > 0 && opts.count < maxEntries {
    		maxEntries = opts.count
    	}
    
    	done := false
    	remaining := opts.count
    
    	for !done {
    		// Read up to max number of entries.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 13 15:14:36 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram.go

    // will be measured until the histogram is registered in at least one registry.
    func NewTimingRatioHistogram(opts *TimingRatioHistogramOpts) *TimingRatioHistogram {
    	return NewTestableTimingRatioHistogram(time.Now, opts)
    }
    
    // NewTestableTimingHistogram adds injection of the clock
    func NewTestableTimingRatioHistogram(nowFunc func() time.Time, opts *TimingRatioHistogramOpts) *TimingRatioHistogram {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

    	noTarget := func(_ echo.Caller, opts *echo.CallOptions) {
    		opts.To = nil
    	}
    	// allows setting the target indirectly via the host header
    	fqdnHostHeader := func(src echo.Caller, opts *echo.CallOptions) {
    		if opts.HTTP.Headers == nil {
    			opts.HTTP.Headers = make(http.Header)
    		}
    		opts.HTTP.Headers.Set(headers.Host, opts.To.Config().ClusterLocalFQDN())
    		noTarget(src, opts)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. src/encoding/json/encode.go

    	b := e.AvailableBuffer()
    	b = mayAppendQuote(b, opts.quoted)
    	b = strconv.AppendBool(b, v.Bool())
    	b = mayAppendQuote(b, opts.quoted)
    	e.Write(b)
    }
    
    func intEncoder(e *encodeState, v reflect.Value, opts encOpts) {
    	b := e.AvailableBuffer()
    	b = mayAppendQuote(b, opts.quoted)
    	b = strconv.AppendInt(b, v.Int(), 10)
    	b = mayAppendQuote(b, opts.quoted)
    	e.Write(b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

          ConversionPatternRewriter& rewriter) const override {
        // This pattern is a conversion pattern because we want to specify a type
        // converter. However, this pattern still uses the original op's operands
        // while creating the ops so make sure there aren't any type changes between
        // the original op operands and the operands during the conversion.
        for (auto&& [old_val, new_val] : llvm::zip(op->getOperands(), operands)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		attribute.String("audit-id", audit.GetAuditIDTruncated(ctx)),
    		attribute.String("key", key),
    		attribute.String("resourceVersion", opts.ResourceVersion),
    		attribute.String("resourceVersionMatch", string(opts.ResourceVersionMatch)),
    		attribute.Int("limit", int(opts.Predicate.Limit)),
    		attribute.String("continue", opts.Predicate.Continue))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. RELEASE.md

        * Disabling TensorFloat-32 execution now causes TPUs to use float32 precision for float32 matmuls and other ops. TPUs have always used bfloat16 precision for certain ops, like matmul, when such ops had float32 inputs. Now, disabling TensorFloat-32 by calling `tf.config.experimental.enable_tensor_float_32_execution(False)` will cause TPUs to use float32 precision for such ops instead of bfloat16.
    
    *  `tf.experimental.dtensor`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  8. src/database/sql/ctxutil.go

    }
    
    func ctxDriverBegin(ctx context.Context, opts *TxOptions, ci driver.Conn) (driver.Tx, error) {
    	if ciCtx, is := ci.(driver.ConnBeginTx); is {
    		dopts := driver.TxOptions{}
    		if opts != nil {
    			dopts.Isolation = driver.IsolationLevel(opts.Isolation)
    			dopts.ReadOnly = opts.ReadOnly
    		}
    		return ciCtx.BeginTx(ctx, dopts)
    	}
    
    	if opts != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 02 12:57:37 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/rest/subresources.go

    }
    
    // Connect returns a handler for the pod proxy
    func (r *ProxyREST) Connect(ctx context.Context, id string, opts runtime.Object, responder rest.Responder) (http.Handler, error) {
    	proxyOpts, ok := opts.(*api.PodProxyOptions)
    	if !ok {
    		return nil, fmt.Errorf("Invalid options object: %#v", opts)
    	}
    	location, transport, err := pod.ResourceLocation(ctx, r.Store, r.ProxyTransport, id)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/topologymanager/policy_restricted.go

    // PolicyRestricted policy name.
    const PolicyRestricted string = "restricted"
    
    // NewRestrictedPolicy returns restricted policy.
    func NewRestrictedPolicy(numaInfo *NUMAInfo, opts PolicyOptions) Policy {
    	return &restrictedPolicy{bestEffortPolicy{numaInfo: numaInfo, opts: opts}}
    }
    
    func (p *restrictedPolicy) Name() string {
    	return PolicyRestricted
    }
    
    func (p *restrictedPolicy) canAdmitPodResult(hint *TopologyHint) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top