Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 947 for ONCE (1.98 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. internal/bucket/lifecycle/lifecycle.go

    				break
    			}
    
    			if !rule.Expiration.IsDaysNull() {
    				// Specifying the Days tag will automatically perform ExpiredObjectDeleteMarker cleanup
    				// once delete markers are old enough to satisfy the age criteria.
    				// https://docs.aws.amazon.com/AmazonS3/latest/userguide/lifecycle-configuration-examples.html
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_compiler.h

    // was used for their TF model.
    // Prints only once to avoid spamming LOG(INFO).
    inline void LogOnceXlaCompiledFirstCluster() {
      static absl::once_flag log_once;
      absl::call_once(log_once, [] {
        LOG(INFO) << "Compiled cluster using XLA!  This line is logged at most "
                     "once for the lifetime of the process.";
      });
    }
    
    template <typename ExecutableType>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/errors/errors_test.go

    	}
    	if cause, ok := StatusCause(err, "SomeCause"); !ok || cause != err.ErrStatus.Details.Causes[0] {
    		t.Errorf("expected cause, got %v: %#v", ok, cause)
    	}
    
    	wrapped := fmt.Errorf("once: %w", err)
    	if cause, ok := StatusCause(wrapped, "SomeCause"); !ok || cause != err.ErrStatus.Details.Causes[0] {
    		t.Errorf("expected cause when wrapped, got %v: %#v", ok, cause)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 19.5K bytes
    - Viewed (0)
Back to top