Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 153 for Roll (0.04 sec)

  1. hack/ginkgo-e2e.sh

    # Some arguments (like --nodes) are only supported when using the CLI.
    # Those get set below when choosing the program.
    ginkgo_args=(
      "--poll-progress-after=${GINKGO_POLL_PROGRESS_AFTER:-60m}"
      "--poll-progress-interval=${GINKGO_POLL_PROGRESS_INTERVAL:-5m}"
      "--source-root=${KUBE_ROOT}"
    )
    
    # NOTE: Ginkgo's default timeout has been reduced from 24h to 1h in V2, set it manually here as "24h"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. src/hash/fnv/fnv.go

    // license that can be found in the LICENSE file.
    
    // Package fnv implements FNV-1 and FNV-1a, non-cryptographic hash functions
    // created by Glenn Fowler, Landon Curt Noll, and Phong Vo.
    // See
    // https://en.wikipedia.org/wiki/Fowler-Noll-Vo_hash_function.
    //
    // All the hash.Hash implementations returned by this package also
    // implement encoding.BinaryMarshaler and encoding.BinaryUnmarshaler to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. pilot/pkg/trustbundle/trustbundle_test.go

    	}})
    	expectTbCount(t, tb, 1, 1*time.Second, "meshConfig pem trustAnchor not updated in bundle")
    
    	// Test2: Append server1 as spiffe endpoint to existing MeshConfig
    
    	// Start processing remote anchor update with poll frequency.
    	go tb.ProcessRemoteTrustAnchors(stop, 200*time.Millisecond)
    	tb.AddMeshConfigUpdate(&meshconfig.MeshConfig{CaCertificates: []*meshconfig.MeshConfig_CertificateData{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/os/file.go

    	if err == nil || err == io.EOF {
    		return err
    	}
    	if err == poll.ErrFileClosing {
    		err = ErrClosed
    	} else if checkWrapErr && errors.Is(err, poll.ErrFileClosing) {
    		panic("unexpected error wrapping poll.ErrFileClosing: " + err.Error())
    	}
    	return &PathError{Op: op, Path: f.name, Err: err}
    }
    
    // TempDir returns the default directory to use for temporary files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/client-services/src/test/groovy/org/gradle/internal/daemon/client/clientinput/DaemonClientInputForwarderTest.groovy

        def received = new LinkedBlockingQueue()
        def dispatch = { received << it } as Dispatch
        def userInputReceiver = new DefaultUserInputReceiver()
    
        def receivedCommand() {
            received.poll(5, TimeUnit.SECONDS)
        }
    
        def receiveStdin(String expected) {
            def receivedCommand = receivedCommand()
            assert receivedCommand instanceof ForwardInput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    	fs.DurationVar(&s.StorageConfig.CountMetricPollPeriod, "etcd-count-metric-poll-period", s.StorageConfig.CountMetricPollPeriod, ""+
    		"Frequency of polling etcd for number of resources per type. 0 disables the metric collection.")
    
    	fs.DurationVar(&s.StorageConfig.DBMetricPollInterval, "etcd-db-metric-poll-interval", s.StorageConfig.DBMetricPollInterval,
    		"The interval of requests to poll etcd and update metric. 0 disables the metric collection")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/types/ExternalPluginsInstrumentationTypeRegistry.java

            Set<String> collected = new HashSet<>();
            collected.add(type);
            while (!superTypes.isEmpty()) {
                String superType = superTypes.poll();
                if (collected.add(superType)) {
                    superTypes.addAll(getDirectSuperTypes(superType));
                }
            }
            return collected;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 10:00:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/internal/trace/trace_test.go

    					{"internal/poll.(*FD).Accept", 0},
    					{"net.(*netFD).accept", 0},
    					{"net.(*TCPListener).accept", 0},
    					{"net.(*TCPListener).Accept", 0},
    					{"main.main.func10", 0},
    				}},
    				{trace.EventStateTransition, "Goroutine Running->Syscall", []frame{
    					{"syscall.read", 0},
    					{"syscall.Read", 0},
    					{"internal/poll.ignoringEINTRIO", 0},
    					{"internal/poll.(*FD).Read", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. src/internal/poll/fd_poll_runtime.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix || windows || wasip1
    
    package poll
    
    import (
    	"errors"
    	"sync"
    	"syscall"
    	"time"
    	_ "unsafe" // for go:linkname
    )
    
    // runtimeNano returns the current value of the runtime clock in nanoseconds.
    //
    //go:linkname runtimeNano runtime.nanotime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. cluster/addons/dns/kube-dns/kube-dns.yaml.sed

              successThreshold: 1
              failureThreshold: 5
            readinessProbe:
              httpGet:
                path: /readiness
                port: 8081
                scheme: HTTP
              # we poll on pod startup for the Kubernetes master service and
              # only setup the /readiness HTTP server once that's available.
              initialDelaySeconds: 3
              timeoutSeconds: 5
            args:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top