Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 656 for too (0.03 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    		begin.Format(time.RFC3339), end.Format(time.RFC3339),
    		progPath, progVers, goVers, runtime.GOOS, runtime.GOARCH)
    	if len(f.meta) > maxMetaLen { // should be impossible for our use
    		f.err = fmt.Errorf("metadata too long")
    		return
    	}
    	if progVers != "" {
    		progVers = "@" + progVers
    	}
    	prefix := fmt.Sprintf("%s%s-%s-%s-%s-", path.Base(progPath), progVers, goVers, runtime.GOOS, runtime.GOARCH)
    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. internal/dsync/drwmutex.go

    				log("dsync: Refresh returned false for %#v at %s\n", args, c)
    			}
    		}(index, c)
    	}
    
    	// Wait until we have either
    	//
    	// a) received all refresh responses
    	// b) received too many refreshed for quorum to be still possible
    	// c) timed out
    	//
    	lockNotFound, lockRefreshed := 0, 0
    	done := false
    
    	for i := 0; i < len(restClnts); i++ {
    		select {
    		case refreshResult := <-ch:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. internal/config/cache/cache.go

    		return nil, nil
    	}
    
    	buf, err := r.MarshalMsg(nil)
    	if err != nil {
    		return nil, err
    	}
    
    	// We do not want Gets to take so much time, anything
    	// beyond 250ms we should cut it, remote cache is too
    	// busy already.
    	ctx, cancel := context.WithTimeout(context.Background(), 250*time.Millisecond)
    	defer cancel()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    This analyzer checks for problems with known Go toolchain directives
    in all Go source files in a package directory, even those excluded by
    //go:build constraints, and all non-Go source files too.
    
    For //go:debug (see https://go.dev/doc/godebug), the analyzer checks
    that the directives are placed only in Go source files, only above the
    package comment, and only in package main or *_test.go files.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho.go

    func newMachoSeg(name string, msect int) *MachoSeg {
    	if nseg >= len(seg) {
    		Exitf("too many segs")
    	}
    
    	s := &seg[nseg]
    	nseg++
    	s.name = name
    	s.msect = uint32(msect)
    	s.sect = make([]MachoSect, msect)
    	return s
    }
    
    func newMachoSect(seg *MachoSeg, name string, segname string) *MachoSect {
    	if seg.nsect >= seg.msect {
    		Exitf("too many sects in segment %s", seg.name)
    	}
    
    	s := &seg.sect[seg.nsect]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  6. src/net/http/fs.go

    		return condNone
    	}
    	t, err := ParseTime(ius)
    	if err != nil {
    		return condNone
    	}
    
    	// The Last-Modified header truncates sub-second precision so
    	// the modtime needs to be truncated too.
    	modtime = modtime.Truncate(time.Second)
    	if ret := modtime.Compare(t); ret <= 0 {
    		return condTrue
    	}
    	return condFalse
    }
    
    func checkIfNoneMatch(w ResponseWriter, r *Request) condResult {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. src/bytes/buffer_test.go

    				t.Errorf("bad written data at %d %d", startLen, growLen)
    			}
    		}
    	}
    }
    
    func TestGrowOverflow(t *testing.T) {
    	defer func() {
    		if err := recover(); err != ErrTooLarge {
    			t.Errorf("after too-large Grow, recover() = %v; want %v", err, ErrTooLarge)
    		}
    	}()
    
    	buf := NewBuffer(make([]byte, 1))
    	const maxInt = int(^uint(0) >> 1)
    	buf.Grow(maxInt)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. src/hash/crc64/crc64.go

    		if *tab == slicing8TableECMA[0] {
    			helperTable = slicing8TableECMA
    		} else if *tab == slicing8TableISO[0] {
    			helperTable = slicing8TableISO
    			// For smaller sizes creating extended table takes too much time
    		} else if len(p) >= 2048 {
    			// According to the tests between various x86 and arm CPUs, 2k is a reasonable
    			// threshold for now. This may change in the future.
    			helperTable = makeSlicingBy8Table(tab)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/internal/trace/gc_test.go

    					break
    				}
    			}
    		}
    	}
    }
    
    func TestMMUTrace(t *testing.T) {
    	// Can't be t.Parallel() because it modifies the
    	// testingOneBand package variable.
    	if testing.Short() {
    		// test input too big for all.bash
    		t.Skip("skipping in -short mode")
    	}
    	check := func(t *testing.T, mu [][]trace.MutatorUtil) {
    		mmuCurve := trace.NewMMUCurve(mu)
    
    		// Test the optimized implementation against the "obviously
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/FreeListBlockStore.java

                if (index < 0) {
                    index = -index - 1;
                }
                if (index == entries.size()) {
                    // Largest free block is too small
                    return;
                }
    
                FreeListEntry entry = entries.remove(index);
                block.setPos(entry.pos);
                block.setSize(entry.size);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top