Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 270 for mainsail (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/cache.go

    // this statically enforces that transformers placed in the cache are not used for encryption.
    // this is relevant in the context of nonce collision since transformers that are created
    // from encrypted DEKs retrieved from etcd cannot maintain their nonce counter state.
    type simpleCache struct {
    	cache *utilcache.Expiring
    	ttl   time.Duration
    	// hashPool is a per cache pool of hash.Hash (to avoid allocations from building the Hash)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 31 20:26:58 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * example, we could compute the appropriate throttle time for an incoming request, and make the
       * calling thread wait for that time.
       *
       * The simplest way to maintain a rate of QPS is to keep the timestamp of the last granted
       * request, and ensure that (1/QPS) seconds have elapsed since then. For example, for a rate of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_shuffle.txt

    stdout '(?s)=== RUN   TestThree(.*)--- PASS: TestThree'
    stdout -count=2 'BenchmarkOne'
    stdout -count=2 'BenchmarkTwo'
    stdout -count=2 'BenchmarkThree'
    
    
    # When running go test -count=N, each of the N runs distinct runs should maintain the same
    # shuffled order of these tests.
    go test -v -shuffle=43 -count=4 foo_test.go
    stdout '^-test.shuffle 43'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:46:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

        private long currentTimePeriod;
    
        // What actually shows up on the console
        private ProgressBar progressBar;
    
        // Used to maintain timer
        private long buildStartTimestamp;
        private boolean timerEnabled;
    
        public BuildStatusRenderer(OutputEventListener listener, StyledLabel buildStatusLabel, Console console, ConsoleMetaData consoleMetaData) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/runtime/mpagealloc_32bit.go

    	sysMap(reservation, totalSize, p.sysStat)
    	sysUsed(reservation, totalSize, totalSize)
    	p.summaryMappedReady += totalSize
    
    	// Iterate over the reservation and cut it up into slices.
    	//
    	// Maintain i as the byte offset from reservation where
    	// the new slice should start.
    	for l, shift := range levelShift {
    		entries := 1 << (heapAddrBits - shift)
    
    		// Put this reservation into a slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 20:08:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSetOutput.java

     *
     * Working with generated resources.
     * <p>
     * In general, we recommend generating resources into folders different than the regular resourcesDir and classesDirs.
     * Usually, it makes the build easier to understand and maintain. Also it gives some additional benefits
     * because other Gradle plugins can take advantage of the output dirs 'registered' in the SourceSet.output.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/waiting_pods_map.go

    package runtime
    
    import (
    	"fmt"
    	"sync"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // waitingPodsMap a thread-safe map used to maintain pods waiting in the permit phase.
    type waitingPodsMap struct {
    	pods map[types.UID]*waitingPod
    	mu   sync.RWMutex
    }
    
    // NewWaitingPodsMap returns a new waitingPodsMap.
    func NewWaitingPodsMap() *waitingPodsMap {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * example, we could compute the appropriate throttle time for an incoming request, and make the
       * calling thread wait for that time.
       *
       * The simplest way to maintain a rate of QPS is to keep the timestamp of the last granted
       * request, and ensure that (1/QPS) seconds have elapsed since then. For example, for a rate of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  9. src/runtime/debug/garbage.go

    // SetGCPercent returns the previous setting.
    // The initial setting is the value of the GOGC environment variable
    // at startup, or 100 if the variable is not set.
    // This setting may be effectively reduced in order to maintain a memory
    // limit.
    // A negative percentage effectively disables garbage collection, unless
    // the memory limit is reached.
    // See SetMemoryLimit for more details.
    func SetGCPercent(percent int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/mcs-serviceimport-crd.yaml

                          type: string
                    x-kubernetes-list-type: atomic
                  sessionAffinity:
                    description: 'Supports "ClientIP" and "None". Used to maintain session
                      affinity. Enable client IP based session affinity. Must be ClientIP
                      or None. Defaults to None. Ignored when type is Headless More info:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 7K bytes
    - Viewed (0)
Back to top