Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 182 for 1011 (0.22 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/metrics_test.go

            apiserver_authentication_jwt_authenticator_latency_seconds_bucket{jwt_issuer_hash="sha256:29b34beedc55b972f2428f21bc588f9d38e5e8f7a7af825486e7bb4fd9caa2ad",result="success",le="0.01"} 1
            apiserver_authentication_jwt_authenticator_latency_seconds_bucket{jwt_issuer_hash="sha256:29b34beedc55b972f2428f21bc588f9d38e5e8f7a7af825486e7bb4fd9caa2ad",result="success",le="0.025"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/runtime/norace_test.go

    // Syscall tests split stack between Entersyscall and Exitsyscall under race detector.
    func BenchmarkSyscall(b *testing.B) {
    	benchmarkSyscall(b, 0, 1)
    }
    
    func BenchmarkSyscallWork(b *testing.B) {
    	benchmarkSyscall(b, 100, 1)
    }
    
    func BenchmarkSyscallExcess(b *testing.B) {
    	benchmarkSyscall(b, 0, 4)
    }
    
    func BenchmarkSyscallExcessWork(b *testing.B) {
    	benchmarkSyscall(b, 100, 4)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 983 bytes
    - Viewed (0)
  3. test/fixedbugs/issue19012.go

    }
    
    func main() {
    	f(2, 3 < "x", 10) // ERROR "too many arguments|invalid operation|incompatible type"
    
    	f(10, 10, "a") // ERROR "too many arguments"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 22:22:08 UTC 2023
    - 872 bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/util/GradleVersionTest.groovy

            when:
            GradleVersion.version(versionString)
    
            then:
            IllegalArgumentException e = thrown()
            e.message == "'$versionString' is not a valid Gradle version string (examples: '1.0', '1.0-rc-1')"
    
            where:
            versionString << [
                    "",
                    "something",
                    "1",
                    "1-beta",
                    "1.0-\n"
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/Dockerfile

    RUN groupadd -g 1001 buildslave && useradd -m -u 1001 -g buildslave buildslave
    RUN mkdir -p /tf/venv
    RUN chown -R buildslave:buildslave /tf
    RUN dpkg -i /patchelf/patchelf_0.14.3-1_arm64.deb
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 09:32:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/id/UniqueIdTest.groovy

     */
    
    package org.gradle.internal.id
    
    import spock.lang.Specification
    
    class UniqueIdTest extends Specification {
    
        def "generates unique values"() {
            expect:
            def n = 100
            (1..n).collect { UniqueId.generate() }.unique().size() == n
        }
    
        def "can roundtrip to / from string"() {
            when:
            def id = UniqueId.generate()
            def s = id.asString()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/prune_unused_nodes.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-prune-unused-nodes -tf-input-arrays=input0,input1 -tf-input-data-types=DT_INT32,DT_INT32 -tf-input-shapes=10:10 -tf-output-arrays=Add -o - | FileCheck %s
    
    # Verify that an unused Node (here named "Prune") isn't converted when we
    # request pruning on import.
    # CHECK-LABEL:  func @main
    # CHECK-NOT:  Prune
    # CHECK-NOT:  unused_input
    
    node {
      name: "Prune"
      op: "Const"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/bench_test.go

    func fn(a, b int) bool {
    	c := false
    	if a > 0 {
    		if b < 0 {
    			d = d + 1
    		}
    		c = true
    	}
    	return c
    }
    
    func BenchmarkPhioptPass(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		a := rand.Perm(i/10 + 10)
    		for i := 1; i < len(a)/2; i++ {
    			fn(a[i]-a[i-1], a[i+len(a)/2-2]-a[i+len(a)/2-1])
    		}
    	}
    }
    
    type Point struct {
    	X, Y int
    }
    
    //go:noinline
    func sign(p1, p2, p3 Point) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 02:36:06 UTC 2023
    - 835 bytes
    - Viewed (0)
  9. test/ken/rob2.go

    	case EOF:
    		token = EOF
    	case '(', ')':
    		token = c
    		break
    	default:
    		for i = 0; i < 100-1; { // sizeof tokenbuf - 1
    			tokenbuf[i] = byte(c)
    			i = i + 1
    			c = Get()
    			if c == EOF {
    				break
    			}
    			if WhiteSpace(c) || c == ')' {
    				peekc = c
    				break
    			}
    		}
    		if i >= 100-1 { // sizeof tokenbuf - 1
    			panic("atom too long\n")
    		}
    		tokenlen = i
    		tokenbuf[i] = nilchar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/line_test.go

    	ctxt.statichash = make(map[string]*LSym)
    
    	afile := src.NewFileBase("a.go", "a.go")
    	bfile := src.NewFileBase("b.go", "/foo/bar/b.go")
    	lfile := src.NewLinePragmaBase(src.MakePos(afile, 8, 1), "linedir", "linedir", 100, 1)
    
    	var tests = []struct {
    		pos  src.Pos
    		want string
    	}{
    		{src.NoPos, "??:0"},
    		{src.MakePos(afile, 1, 0), "a.go:1"},
    		{src.MakePos(afile, 2, 0), "a.go:2"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top