Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,199 for forSet (0.29 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation_test.go

    			}
    		},
    		func(s **NestedValueValidation, c fuzz.Continue) {
    			if c.RandBool() {
    				*s = &NestedValueValidation{}
    			}
    		},
    	)
    	fuzzer.NilChance(0)
    
    	// check that we didn't forget to check any forbidden generic field
    	tt := reflect.TypeOf(Generic{})
    	for i := 0; i < tt.NumField(); i++ {
    		vv := &NestedValueValidation{}
    		x := reflect.ValueOf(&vv.ForbiddenGenerics).Elem()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. security/pkg/credentialfetcher/plugin/gce_test.go

    	testCases := map[string]struct {
    		jwt           string
    		jwtPath       string
    		expectedToken string
    		expectedCall  int
    	}{
    		// mock metadata server returns an expired token, that forces rotation job
    		// to fetch new token during each rotation.
    		"expired token needs rotation": {
    			jwt:           thirdPartyJwt,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 10.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

                        forced()
                        byConstraint("belongs to platform org:platform:2.7.9")
                    }
                    module("org:databind:2.7.9") {
                        forced()
                        byConstraint("belongs to platform org:platform:2.7.9")
                        module('org:annotations:2.7.9') {
                            forced()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/DependencyResolveRulesIntegrationTest.groovy

                        selectedByRule()
                        forced()
                        module("org.utils:api:1.3") {
                            selectedByRule()
                            forced()
                        }
                    }
                }
            }
        }
    
        void "rule are applied after forced modules"()
        {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  5. hack/update-vendor.sh

    options:
      # make root approval non-recursive
      no_parent_owners: true
    approvers:
    - dep-approvers
    reviewers:
    - dep-reviewers
    __EOF__
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

                case REQUESTED:
                    return "Was requested";
                case SELECTED_BY_RULE:
                    return "Selected by rule";
                case FORCED:
                    return "Forced";
                case CONFLICT_RESOLUTION:
                    return "By conflict resolution";
                case COMPOSITE_BUILD:
                    return "By composite build";
                case REJECTION:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. src/runtime/extern.go

    	mark and scan, and STW mark termination. The CPU times
    	for mark/scan are broken down in to assist time (GC performed in
    	line with allocation), background GC time, and idle GC time.
    	If the line ends with "(forced)", this GC was forced by a
    	runtime.GC() call.
    
    	harddecommit: setting harddecommit=1 causes memory that is returned to the OS to
    	also have protections removed on it. This is the only mode of operation on Windows,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/policy_test.go

    			expectedMandatoryErrs: 1, // can't downgrade two minor versions
    		},
    		{
    			name: "kubeadm version must be higher than the new kube version. However, patch version skews may be forced",
    			vg: &fakeVersionGetter{
    				clusterVersion: minimumControlPlaneVersion.WithPatch(3).String(),
    				kubeletVersion: minimumKubeletVersion.WithPatch(3).String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 03:17:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. guava-gwt/pom.xml

              <show>package</show>
            </configuration>
          </plugin>
          <!-- Disable "normal" testing, which doesn't work for GWT tests. -->
          <plugin>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompileAvoidanceIntegrationSpec.groovy

            succeeds ":b:${language.compileTaskName}", "--debug"
    
            then:
            executedAndNotSkipped(":b:${language.compileTaskName}")
    
            when:
            // Remove sealed modifier, forces change to API.
            file("a/src/main/${language.name}/Foo.${language.name}").delete()
            file("a/src/main/${language.name}/Foo.${language.name}") << '''
    interface Foo {
        interface Sub extends Foo {}
    }
    '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 14.6K bytes
    - Viewed (0)
Back to top