Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for frequently (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    )
    
    const (
    	// storageWatchListPageSize is the cacher's request chunk size of
    	// initial and resync watch lists to storage.
    	storageWatchListPageSize = int64(10000)
    	// defaultBookmarkFrequency defines how frequently watch bookmarks should be send
    	// in addition to sending a bookmark right before watch deadline.
    	//
    	// NOTE: Update `eventFreshDuration` when changing this value.
    	defaultBookmarkFrequency = time.Minute
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    }
    
    // AttrDuplicateOK returns true for a symbol that can be present in
    // multiple object files.
    func (l *Loader) AttrDuplicateOK(i Sym) bool {
    	if !l.IsExternal(i) {
    		// TODO: if this path winds up being taken frequently, it
    		// might make more sense to copy the flag value out of the object
    		// into a larger bitmap during preload.
    		r, li := l.toLocal(i)
    		return r.Sym(li).Dupok()
    	}
    	return l.attrDuplicateOK.Has(l.extIndex(i))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    // Operation: http://publibfp.boulder.ibm.com/epubs/pdf/dz9zr010.pdf
    //
    // Suffixes encode the bit width of pseudo-instructions.
    // D (double word)  = 64 bit (frequently omitted)
    // W (word)         = 32 bit
    // H (half word)    = 16 bit
    // B (byte)         = 8 bit
    // S (single prec.) = 32 bit (double precision is omitted)
    
    // copied from ../../s390x/reg.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  4. src/go/printer/testdata/parser.go

    	p.file = fset.AddFile(filename, fset.Base(), len(src))
    	p.scanner.Init(p.file, src, p, scannerMode(mode))
    
    	p.mode = mode
    	p.trace = mode&Trace != 0 // for convenience (p.trace is used frequently)
    
    	p.next()
    
    	// set up the pkgScope here (as opposed to in parseFile) because
    	// there are other parser entry points (ParseExpr, etc.)
    	p.openScope()
    	p.pkgScope = p.topScope
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    in Java & JVM projects
    
    Testing on the JVM is a rich subject matter. There are many different testing libraries and frameworks, as well as many different types of test. All need to be part of the build, whether they are executed frequently or infrequently. This chapter is dedicated to explaining how Gradle handles differing requirements between and within builds, with significant coverage of how it integrates with the two most common testing frameworks: https://junit.org/[JUnit] and http...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ----
    
    There are several options:
    
    1. signature was wrong in the first place, which happens frequently with <<#sec:trusting-several-checksums,dependencies published on different repositories>>.
    2. the signature is correct but the artifact has been compromised (either in the local dependency cache or remotely)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	if err != nil {
    		t.Fatalf("Couldn't create cacher: %v", err)
    	}
    	defer cacher.Stop()
    	// Update bookmarkFrequency to speed up test.
    	// Note that the frequency lower than 1s doesn't change much due to
    	// resolution how frequency we recompute.
    	cacher.bookmarkWatchers.bookmarkFrequency = time.Second
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. src/bufio/bufio_test.go

    func createTestInput(n int) []byte {
    	input := make([]byte, n)
    	for i := range input {
    		// 101 and 251 are arbitrary prime numbers.
    		// The idea is to create an input sequence
    		// which doesn't repeat too frequently.
    		input[i] = byte(i % 251)
    		if i%101 == 0 {
    			input[i] ^= byte(i / 101)
    		}
    	}
    	return input
    }
    
    func TestReaderWriteTo(t *testing.T) {
    	input := createTestInput(8192)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	kubeRuntimeAPIVersion = "0.1.0"
    	// A minimal shutdown window for avoiding unnecessary SIGKILLs
    	minimumGracePeriodInSeconds = 2
    
    	// The expiration time of version cache.
    	versionCacheTTL = 60 * time.Second
    	// How frequently to report identical errors
    	identicalErrorDelay = 1 * time.Minute
    	// OpenTelemetry instrumentation scope name
    	instrumentationScope = "k8s.io/kubernetes/pkg/kubelet/kuberuntime"
    )
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    	// scavenged memory vs. scavenging memory. This forces us to pay down
    	// the cost of reusing this memory eagerly by sleeping for a longer period
    	// of time and scavenging less frequently. More concretely, we avoid situations
    	// where we end up scavenging so often that we hurt allocation performance
    	// because of the additional overheads of using scavenged memory.
    	worked *= 1 + scavengeCostRatio
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top