Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 117 for ErrRange (0.26 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    	// and consumes a hash from an adjacent subtree.
    	m := int(bits.TrailingZeros64(uint64(n + 1)))
    	indexes := make([]int64, m)
    	for i := 0; i < m; i++ {
    		// We arrange indexes in sorted order.
    		// Note that n>>i is always odd.
    		indexes[m-1-i] = StoredHashIndex(i, n>>uint(i)-1)
    	}
    
    	// Fetch hashes.
    	old, err := r.ReadHashes(indexes)
    	if err != nil {
    		return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. src/runtime/profbuf.go

    	// still shade that pointer, which would preserve it for the
    	// in-progress GC, so all is well. Any future GC will see the
    	// value we copied when scanning b.tags (heap-allocated).
    	// We arrange that the store here is always overwriting a nil,
    	// so there is no need for a deletion barrier on b.tags[wt].
    	wt := int(bw.tagCount() % uint32(len(b.tags)))
    	if tagPtr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/walk/order.go

    // by reference, so make sure all map keys are addressable
    // by copying them to temporaries as needed.
    // The same is true for channel operations.
    //
    // Arrange that map index expressions only appear in direct
    // assignments x = m[k] or m[k] = x, never in larger expressions.
    //
    // Arrange that receive expressions only appear in direct assignments
    // x = <-c or as standalone statements <-c, never in larger expressions.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/internal/toolchain/select.go

    // that if multiple go commands call raceSafeCopy(old, new) at the same time,
    // they don't interfere with each other: both will succeed and return and
    // later observe the correct content in new. Like in the build cache, we arrange
    // this by opening new without truncation and then writing the content.
    // Both go commands can do this simultaneously and will write the same thing
    // (old never changes content).
    func raceSafeCopy(old, new string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. 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: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. 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)
Back to top