Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 629 for leastOf (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/crypto/rsa/example_test.go

    // a buffer that contains a random key. Thus, if the RSA result isn't
    // well-formed, the implementation uses a random key in constant time.
    func ExampleDecryptPKCS1v15SessionKey() {
    	// The hybrid scheme should use at least a 16-byte symmetric key. Here
    	// we read the random key that will be used if the RSA decryption isn't
    	// well-formed.
    	key := make([]byte, 32)
    	if _, err := rand.Read(key); err != nil {
    		panic("RNG failure")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:52:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. test/fixedbugs/issue29610.go

    // Issue 29610: Symbol import and initialization order caused function
    // symbols to be recorded as non-function symbols.
    
    // This uses rundir not because we actually want to run the final
    // binary, but because we need to at least link it.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 11 00:45:49 UTC 2019
    - 429 bytes
    - Viewed (0)
  9. src/runtime/tagptr.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    // taggedPointer is a pointer with a numeric tag.
    // The size of the numeric tag is GOARCH-dependent,
    // currently at least 10 bits.
    // This should only be used with pointers allocated outside the Go heap.
    type taggedPointer uint64
    
    // minTagBits is the minimum number of tag bits that we expect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:22:50 UTC 2023
    - 496 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-substitutionRule/kotlin/build.gradle.kts

    // Need to have at least one configuration declared, otherwise the rules are never evaluated
    val conf by configurations.creating
    
    // tag::module_to_project_substitution[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute(module("org.utils:api"))
                .using(project(":api")).because("we work with the unreleased development version")
            substitute(module("org.utils:util:2.5")).using(project(":util"))
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 796 bytes
    - Viewed (0)
Back to top