Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 486 for gold (0.04 sec)

  1. CONTRIBUTING.md

        rare occasion we may reject it.
    
    **3. Review**
    
    -   For a valid PR, reviewer (person familiar with the code/functionality)
        checks if the PR looks good or needs additional changes.
    -   If all looks good, the reviewer will approve the PR.
    -   If a change is needed, the contributor is requested to make the suggested
        change.
    -   You make the change and submit it for the review again.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

        xla::PjRtLoadedExecutable* pjrt_executable;
        OP_REQUIRES_OK(ctx, Compile(args, ctx, &pjrt_device_compiler, &profiler,
                                    &result, &pjrt_executable));
        // Hold the reference to the XLA device compiler and profiler during
        // evaluation. (We could probably free them sooner because the ResourceMgr
        // will retain references, but this is more obviously correct.)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device_context.cc

            xla_tensor->AllocateShapedBuffer(device_tensor->dtype(), shape, client_,
                                             stream_->parent()->device_ordinal()));
    
        // The cpu_tensor and literal that we created here hold the data of host
        // tensor in descending layout. The layout could be different from layout in
        // device_tensor (but the logical shape has to be the same). The
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. cmd/http-stats.go

    	hstats.currentS3Requests.Dec(api) // decrement this once we have the response recorder.
    
    	hstats.totalS3Requests.Inc(api)
    	code := w.StatusCode
    
    	switch {
    	case code == 0:
    	case code == 499:
    		// 499 is a good error, shall be counted as canceled.
    		hstats.totalS3Canceled.Inc(api)
    	case code >= http.StatusBadRequest:
    		if code >= http.StatusInternalServerError {
    			hstats.totalS35xxErrors.Inc(api)
    		} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. src/cmd/trace/main.go

    		{Type: traceviewer.ViewProc, Ranges: ranges},
    		// N.B. Use the same ranges for threads. It takes a long time to compute
    		// the split a second time, but the makeup of the events are similar enough
    		// that this is still a good split.
    		{Type: traceviewer.ViewThread, Ranges: ranges},
    	}))
    
    	// Catapult handlers.
    	mux.Handle("/trace", traceviewer.TraceHandler())
    	mux.Handle("/jsontrace", JSONTraceHandler(parsed))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. pkg/config/validation/envoyfilter/envoyfilter_test.go

    func TestRecurseMissingTypedConfig(t *testing.T) {
    	good := &listener.Filter{
    		Name:       wellknown.TCPProxy,
    		ConfigType: &listener.Filter_TypedConfig{TypedConfig: nil},
    	}
    	ecds := &hcm.HttpFilter{
    		Name:       "something",
    		ConfigType: &hcm.HttpFilter_ConfigDiscovery{},
    	}
    	bad := &listener.Filter{
    		Name: wellknown.TCPProxy,
    	}
    	assert.Equal(t, recurseMissingTypedConfig(good.ProtoReflect()), []string{}, "typed config set")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. src/runtime/runtime.go

    	if panicking.Load() > 0 {
    		return ^uintptr(0)
    	}
    
    	old := crashFD.Swap(fd)
    
    	// If we are panicking, don't return the old FD to runtime/debug for
    	// closing. writeErrData may have already read the old FD from crashFD
    	// before the swap and closing it would cause the write to be lost [1].
    	// The old FD will never be closed, but we are about to crash anyway.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/subr.go

    	r.SetImplicit(true)
    	return r
    }
    
    // Is type src assignment compatible to type dst?
    // If so, return op code to use in conversion.
    // If not, return OXXX. In this case, the string return parameter may
    // hold a reason why. In all other cases, it'll be the empty string.
    func assignOp(src, dst *types.Type) (ir.Op, string) {
    	if src == dst {
    		return ir.OCONVNOP, ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  9. src/runtime/time.go

    // ts need not be (and usually is not) locked.
    func (ts *timers) updateMinWhenModified(when int64) {
    	for {
    		old := ts.minWhenModified.Load()
    		if old != 0 && old < when {
    			return
    		}
    		if ts.minWhenModified.CompareAndSwap(old, when) {
    			return
    		}
    	}
    }
    
    // timeSleepUntil returns the time when the next timer should fire. Returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/CompactHashMap.java

      /**
       * Creates a {@code CompactHashMap} instance, with a high enough "initial capacity" that it
       * <i>should</i> hold {@code expectedSize} elements without growth.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
       * @return a new, empty {@code CompactHashMap} with enough capacity to hold {@code expectedSize}
       *     elements without resizing
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
Back to top