Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for ErrRange (0.2 sec)

  1. src/runtime/stubs.go

    func getg() *g
    
    // mcall switches from the g to the g0 stack and invokes fn(g),
    // where g is the goroutine that made the call.
    // mcall saves g's current PC/SP in g->sched so that it can be restored later.
    // It is up to fn to arrange for that later execution, typically by recording
    // g in a data structure, causing something to call ready(g) later.
    // mcall returns to the original goroutine g later, when g has been rescheduled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    // meaning to start a new counter file with a different date in the name.
    // rotate is also used to open the file initially, meaning f.current can be nil.
    // In general rotate should be called just once for each file.
    // rotate will arrange a timer to call itself again when necessary.
    func (f *file) rotate() {
    	expire, cleanup := f.rotate1()
    	cleanup()
    	if !expire.IsZero() {
    		// TODO(rsc): Does this do the right thing for laptops closing?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/runtime/panic.go

    // deferprocat using that head will throw.
    // (The atomic head is ordinary garbage collected memory so that
    // it's not a problem if user code holds onto it beyond
    // the lifetime of drangefunc.)
    //
    // TODO: We could arrange for the compiler to call into the
    // runtime after the loop finishes normally, to do an eager
    // deferconvert, which would catch calling the loop body
    // and having it defer after the loop is done. If we have a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/doc.go

    	// It is the caller's responsibility to arrange for it to be
    	// freed, such as by calling C.free (be sure to include stdlib.h
    	// if C.free is needed).
    	func C.CString(string) *C.char
    
    	// Go []byte slice to C array
    	// The C array is allocated in the C heap using malloc.
    	// It is the caller's responsibility to arrange for it to be
    	// freed, such as by calling C.free (be sure to include stdlib.h
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     * well as a simple framework for helping to make sure that assertions failing in generated threads
     * cause the associated test that generated them to itself fail (which JUnit does not otherwise
     * arrange). The rules for creating such tests are:
     *
     * <ol>
     *   <li>All assertions in code running in generated threads must use the forms {@link #threadFail},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/test.go

    				PGOProfile:     p.Internal.PGOProfile,
    			},
    		}
    		if pxtestNeedsPtest {
    			pxtest.Internal.Imports = append(pxtest.Internal.Imports, ptest)
    		}
    	}
    
    	// Arrange for testing.Testing to report true.
    	ldflags := append(p.Internal.Ldflags, "-X", "testing.testBinary=1")
    	gccgoflags := append(p.Internal.Gccgoflags, "-Wl,--defsym,testing.gccgoTestBinary=1")
    
    	// Build main package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. src/runtime/chan.go

    // violating that assumption, but the write barrier has to work.
    // typedmemmove will call bulkBarrierPreWrite, but the target bytes
    // are not in the heap, so that will not help. We arrange to call
    // memmove and typeBitsBulkBarrier instead.
    
    func sendDirect(t *_type, sg *sudog, src unsafe.Pointer) {
    	// src is on our stack, dst is a slot on another stack.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/fetch.go

    // mod.Version may have the additional suffix "/go.mod" to request the checksum
    // for the module's go.mod file only.
    func checkModSum(mod module.Version, h string) error {
    	// We lock goSum when manipulating it,
    	// but we arrange to release the lock when calling checkSumDB,
    	// so that parallel calls to checkModHash can execute parallel calls
    	// to checkSumDB.
    
    	// Check whether mod+h is listed in go.sum already. If so, we're done.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. pkg/kubelet/server/server.go

    	return func(c *cadvisorapi.ContainerInfo) map[string]string {
    		// Prometheus requires that all metrics in the same family have the same labels,
    		// so we arrange to supply blank strings for missing labels
    		var name, image, podName, namespace, containerName string
    		if len(c.Aliases) > 0 {
    			name = c.Aliases[0]
    		}
    		image = c.Spec.Image
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route.go

    // Note: Currently we are not fully utilizing this structure. We could invoke this logic
    // once for all sidecars in the cluster to compute all RDS for inside the mesh and arrange
    // it by listener port. However to properly use such an optimization, we need to have an
    // eventing subsystem to invalidate the computed routes if any service changes/virtual Services change.
    type VirtualHostWrapper struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
Back to top