Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 957 for ONCE (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    // tunnelingResponseWriter implements the http.ResponseWriter and http.Hijacker interfaces.
    // Only non-upgrade responses can be written using WriteHeader() and Write().
    // Once Write or WriteHeader is called, Hijack returns an error.
    // Once Hijack is called, Write, WriteHeader, and Hijack return errors.
    type tunnelingResponseWriter struct {
    	// w is used to delegate Header(), WriteHeader(), and Write() calls
    	w http.ResponseWriter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. src/crypto/ecdsa/ecdsa.go

    	return x, y, nil
    }
    
    var p224Once sync.Once
    var _p224 *nistCurve[*nistec.P224Point]
    
    func p224() *nistCurve[*nistec.P224Point] {
    	p224Once.Do(func() {
    		_p224 = &nistCurve[*nistec.P224Point]{
    			newPoint: func() *nistec.P224Point { return nistec.NewP224Point() },
    		}
    		precomputeParams(_p224, elliptic.P224())
    	})
    	return _p224
    }
    
    var p256Once sync.Once
    var _p256 *nistCurve[*nistec.P256Point]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"resourceHandles":  "ResourceHandles contain the state associated with an allocation that should be maintained throughout the lifetime of a claim. Each ResourceHandle contains data that should be passed to a specific kubelet plugin once it lands on a node. This data is returned by the driver after a successful allocation and is opaque to Kubernetes. Driver documentation may explain to users how to interpret this data if needed.\n\nSetting this field is optional. It has a maximum size...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        /** The Plexus component type */
        public static final String MAVEN_PLUGIN = "maven-plugin";
    
        /** "once-per-session" execution strategy */
        public static final String SINGLE_PASS_EXEC_STRATEGY = "once-per-session";
    
        /** "always" execution strategy */
        public static final String MULTI_PASS_EXEC_STRATEGY = "always";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningExtension.java

        }
    
        /**
         * Provides the signature type provider. Called once during construction.
         */
        protected SignatureTypeProvider createSignatureTypeProvider() {
            return new DefaultSignatureTypeProvider();
        }
    
        /**
         * Provides the signatory provider. Called once during construction.
         */
        protected SignatoryProvider<?> createSignatoryProvider() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    func (m *Stub) SetRegisterControlFunc(f stubRegisterControlFunc) {
    	m.registerControlFunc = f
    }
    
    // Start starts the gRPC server of the device plugin. Can only
    // be called once.
    func (m *Stub) Start() error {
    	klog.InfoS("Starting device plugin server")
    	err := m.cleanup()
    	if err != nil {
    		return err
    	}
    
    	sock, err := net.Listen("unix", m.socket)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. pilot/pkg/leaderelection/leaderelection_test.go

    	_, stop5 := createElection(t, "pod2", "red", watcher, true, client)
    	close(stop5)
    	close(stop)
    	// Revision "green" can reclaim once "red" releases.
    	_, stop6 := createElection(t, "pod4", "green", watcher, true, client)
    	close(stop6)
    }
    
    func TestMulticlusterLeaderElection(t *testing.T) {
    	client := fake.NewSimpleClientset()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. pkg/test/framework/test.go

    }
    
    func (t *testImpl) runInternal(fn func(ctx TestContext), parallel bool) {
    	// Disallow running the same test more than once.
    	if t.ctx != nil {
    		testName := t.name
    		if testName == "" && t.goTest != nil {
    			testName = t.goTest.Name()
    		}
    		panic(fmt.Sprintf("Attempting to run test `%s` more than once", testName))
    	}
    
    	if t.s.skipped {
    		t.goTest.Skip("Skipped because parent Suite was skipped.")
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/crypto/tls/quic.go

    // It may produce connection events, which may be read with [QUICConn.NextEvent].
    //
    // Start must be called at most once.
    func (q *QUICConn) Start(ctx context.Context) error {
    	if q.conn.quic.started {
    		return quicError(errors.New("tls: Start called more than once"))
    	}
    	q.conn.quic.started = true
    	if q.conn.config.MinVersion < VersionTLS13 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. src/runtime/trace.go

    	}
    	unlock(&s.lock)
    }
    
    // close wakes any goroutine sleeping on the timer and prevents
    // further sleeping on it.
    //
    // Once close is called, the wakeableSleep must no longer be used.
    //
    // It must only be called once no goroutine is sleeping on the
    // timer *and* nothing else will call wake concurrently.
    func (s *wakeableSleep) close() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top