Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,062 for leastOf (0.21 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    	"numberUnavailable":      "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/ConnectionSpec.kt

       *
       * For cipher suites, at least one of the [required cipher suites][cipherSuites] must match the
       * socket's enabled cipher suites. If there are no required cipher suites the socket must have at
       * least one cipher suite enabled.
       *
       * For protocols, at least one of the [required protocols][tlsVersions] must match the socket's
       * enabled protocols.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/cuda.packages.txt

    libcudnn9-dev-cuda-12=9.1.1.17-1
    libcudnn9-cuda-12=9.1.1.17-1
    
    # This can be removed once NVIDIA publishes a cuda-12.3.2 Docker image.
    # For now it ensures that we install at least version 12.3.107 of PTXAS,
    # since 12.3.103 has a bug.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 24 17:22:37 UTC 2024
    - 366 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/gcsizes.go

    	// of alignment of the elements and fields, respectively.
    	switch t := under(T).(type) {
    	case *Array:
    		// spec: "For a variable x of array type: unsafe.Alignof(x)
    		// is the same as unsafe.Alignof(x[0]), but at least 1."
    		return s.Alignof(t.elem)
    	case *Struct:
    		if len(t.fields) == 0 && IsSyncAtomicAlign64(T) {
    			// Special case: sync/atomic.align64 is an
    			// empty struct we recognize as a signal that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. test/fixedbugs/issue29870b.go

    // errorcheck
    
    // Copyright 2019 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.
    
    // Make sure we're compiling "_" functions at least enough
    // to get to an error which is generated during walk.
    
    package main
    
    func _() {
    	x := 7 // ERROR "declared and not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 357 bytes
    - Viewed (0)
  6. test/fixedbugs/issue48092.go

    // compile -B
    
    // Copyright 2021 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.
    
    // Make sure that we can at least compile this code
    // successfully with -B. We can't ever produce the right
    // answer at runtime with -B, as the access must panic.
    
    package p
    
    type A [0]byte
    
    func (a *A) Get(i int) byte {
    	return a[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 31 21:49:48 UTC 2021
    - 413 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/request/websocket/protocol.go

    				return nil, false, errors.New("invalid base64.bearer.authorization token")
    			}
    			token = string(decodedToken)
    		}
    	}
    
    	// Must pass at least one other subprotocol so that we can remove the one containing the bearer token,
    	// and there is at least one to echo back to the client
    	if len(token) > 0 && len(filteredProtocols) == 0 {
    		return nil, false, errors.New("missing additional subprotocol")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// ProxyProtocol of GRPC is not supported with TCP transport at the moment
    	// Requires at least one of TCP or UDS to be set
    	// +optional
    	TCP *TCPTransport
    
    	// UDS is the UDS configuration for communicating with the konnectivity server via UDS
    	// Requires at least one of TCP or UDS to be set
    	// +optional
    	UDS *UDSTransport
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. releasenotes/notes/move-istio_cni-to-pilot-values.yaml

       values.pilot.cni as istiod is the affected component.
       That is clearer than having values.cni for install config and values.istio_cni
       for enablement in istiod. The old values.istio_cni fields will still be supported
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 510 bytes
    - Viewed (0)
  10. pkg/test/framework/test.go

    	Label(labels ...label.Instance) Test
    	// RequireIstioVersion ensures that all installed versions of Istio are at least the
    	// required version for the annotated test to pass
    	RequireIstioVersion(version string) Test
    	// RequireKubernetesMinorVersion ensures that all Kubernetes clusters used in this test
    	// are at least the required version for the annotated test to pass
    	RequireKubernetesMinorVersion(minorVersion uint) Test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top