Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 331 for gomod (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    	}
    	return subject, matchingUIs, skippingUIs
    }
    
    func genUser(rng *rand.Rand, pfx string) (*flowcontrol.UserSubject, []user.Info, []user.Info) {
    	mui := &user.DefaultInfo{
    		Name:   pfx + "-u",
    		UID:    "good-id",
    		Groups: []string{pfx + "-g1", mg(rng), pfx + "-g2"},
    		Extra:  noextra}
    	skips := []user.Info{&user.DefaultInfo{
    		Name:   mui.Name + "x",
    		UID:    mui.UID,
    		Groups: mui.Groups,
    		Extra:  mui.Extra}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options_test.go

    				{`foo.com(:|$)`},
    			},
    			errShouldContain: "regular expression does not pin to start/end of host in the origin header",
    		},
    		{
    			regexp: [][]string{
    				{`^http://foo.com$`, `^foo.com`}, // one good followed by a bad one
    			},
    			errShouldContain: "regular expression does not pin to start/end of host in the origin header",
    		},
    	}
    
    	for _, test := range tests {
    		for _, regexp := range test.regexp {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. pkg/volume/projected/projected_test.go

    	}{
    		{
    			name:        "good service account",
    			audience:    "https://example.com",
    			defaultMode: utilptr.Int32Ptr(0644),
    			path:        "token",
    			expiration:  &minute,
    
    			wantPayload: map[string]util.FileProjection{
    				"token": {Data: []byte("test_projected_namespace:foo:60:[https://example.com]"), Mode: 0644},
    			},
    		},
    		{
    			name:        "good service account other path",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

                return task.getOnlyIf().isSatisfiedBy(task);
            }
            return false;
        }
    
        // In a perfect world, the consumer should depend on the producer.
        // Though we still don't have a good solution for the code linter and formatter use-case.
        // And for that case, there will be a cyclic dependency between the analyze and the format task if we only take output/input locations into account.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginToolchainsIntegrationTest.groovy

                        }
                    }
                }
            """
    
            then:
            succeeds("checkstyleMain")
        }
    
        def "analyze good code with the toolchain JDK"() {
            goodCode()
            def jdk = setupExecutorForToolchains()
            writeBuildFileWithToolchainsFromJavaPlugin(jdk)
            writeConfigFileWithTypeName()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 22:34:07 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. src/index/suffixarray/suffixarray_test.go

    			"a",
    			"bar",
    			"rab",
    			"arab",
    			"barbar",
    			"bara?bar",
    		},
    	},
    
    	{
    		"typing drill",
    		"Now is the time for all good men to come to the aid of their country.",
    		[]string{
    			"Now",
    			"the time",
    			"to come the aid",
    			"is the time for all good men to come to the aid of their",
    			"to (come|the)?",
    		},
    	},
    
    	{
    		"godoc simulation",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    			serverResponse: authenticationv1beta1.TokenReviewStatus{
    				Authenticated: false,
    			},
    			expectedAuthenticated: false,
    			expectedUser:          nil,
    		},
    		{
    			description:  "good audience",
    			implicitAuds: apiAuds,
    			reqAuds:      apiAuds,
    			serverResponse: authenticationv1beta1.TokenReviewStatus{
    				Authenticated: true,
    				User: authenticationv1beta1.UserInfo{
    					Username: "somebody",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

         | Is JDK:             {description}false{normal}
         | Detected by:        {description}TestSource{normal}
    
    """
        }
    
        def "reports toolchains with good and invalid ones"() {
            given:
            defineJdks(
                jdk("14", "+1", "14"),
                jdk(null, null, "invalid"),
                jdk(null, null, "noSuchDirectory"),
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/StartParameterResolutionOverride.java

            // TODO: This is not quite correct: we're using the "root project" build directory
            // but technically speaking, this can be changed _after_ this service is created.
            // There's currently no good way to figure that out.
            File buildDir = new File(gradleDir.getParentFile(), "build");
            File reportsDirectory = new File(buildDir, "reports");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. src/runtime/race_arm64.s

    	CMP	R10, R3
    	BGE	racecallatomic_ignore
    racecallatomic_ok:
    	// Addr is within the good range, call the atomic function.
    	load_g
    	MOVD	g_racectx(g), R0	// goroutine context
    	MOVD	16(RSP), R1	// caller pc
    	MOVD	R9, R2	// pc
    	ADD	$40, RSP, R3
    	JMP	racecall<>(SB)	// does not return
    racecallatomic_ignore:
    	// Addr is outside the good range.
    	// Call __tsan_go_ignore_sync_begin to ignore synchronization during the atomic op.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top