Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,115 for apiall (0.34 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/resourceconfig/helpers.go

    			schema.GroupVersion{Group: gvr.Group, Version: runtime.APIVersionInternal})
    	}
    	return resourceEncodingConfig
    }
    
    // Recognized values for the --runtime-config parameter to enable/disable groups of APIs
    const (
    	APIAll   = "api/all"
    	APIGA    = "api/ga"
    	APIBeta  = "api/beta"
    	APIAlpha = "api/alpha"
    )
    
    var (
    	gaPattern    = regexp.MustCompile(`^v\d+$`)
    	betaPattern  = regexp.MustCompile(`^v\d+beta\d+$`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/api_enablement.go

    	if s == nil {
    		return nil
    	}
    
    	errors := []error{}
    	if s.RuntimeConfig[resourceconfig.APIAll] == "false" && len(s.RuntimeConfig) == 1 {
    		// Do not allow only set api/all=false, in such case apiserver startup has no meaning.
    		return append(errors, fmt.Errorf("invalid key with only %v=false", resourceconfig.APIAll))
    	}
    
    	groups, err := resourceconfig.ParseGroups(s.RuntimeConfig)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/api_enablement_test.go

    			},
    			expectErr: "invalid key with only api/all=false",
    		},
    		{
    			name: "test when ConfigurationMap key is invalid",
    			testOptions: &APIEnablementOptions{
    				RuntimeConfig: cliflag.ConfigurationMap{"apiall": "false"},
    			},
    			expectErr: "runtime-config invalid key",
    		},
    		{
    			name: "test when unknown api groups",
    			testOptions: &APIEnablementOptions{
    				RuntimeConfig: cliflag.ConfigurationMap{"api/v1": "true"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 09 07:30:43 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/stackalloc.go

    				p := e.b
    				t.clear()
    				t.addAll(s.live[p.ID])
    				t.addAll(live.contents())
    				t.addAll(spillLive[p.ID])
    				for _, v := range phis {
    					a := v.Args[i]
    					if s.values[a.ID].needSlot {
    						t.add(a.ID)
    					}
    					if spill := s.values[a.ID].spill; spill != nil {
    						//TODO: remove?  Subsumed by SpillUse?
    						t.add(spill.ID)
    					}
    				}
    				if t.size() == len(s.live[p.ID]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/testers/ListAddAllAtIndexTester.java

        assertFalse("addAll(n, nothing) should return false", getList().addAll(0, emptyCollection()));
        expectUnchanged();
      }
    
      @ListFeature.Require(absent = SUPPORTS_ADD_WITH_INDEX)
      public void testAddAllAtIndex_unsupportedNothing() {
        try {
          assertFalse(
              "addAll(n, nothing) should return false or throw",
              getList().addAll(0, emptyCollection()));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionAddAllTester.java

      public void testAddAll_supportedNothing() {
        assertFalse("addAll(nothing) should return false", collection.addAll(emptyCollection()));
        expectUnchanged();
      }
    
      @CollectionFeature.Require(absent = SUPPORTS_ADD)
      public void testAddAll_unsupportedNothing() {
        try {
          assertFalse(
              "addAll(nothing) should return false or throw", collection.addAll(emptyCollection()));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/testers/ListAddAllAtIndexTester.java

        assertFalse("addAll(n, nothing) should return false", getList().addAll(0, emptyCollection()));
        expectUnchanged();
      }
    
      @ListFeature.Require(absent = SUPPORTS_ADD_WITH_INDEX)
      public void testAddAllAtIndex_unsupportedNothing() {
        try {
          assertFalse(
              "addAll(n, nothing) should return false or throw",
              getList().addAll(0, emptyCollection()));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

        oneValueAccumulatorByAddAllEmptyStats.addAll(Stats.of());
    
        twoValuesAccumulator = new StatsAccumulator();
        twoValuesAccumulator.addAll(TWO_VALUES);
    
        twoValuesAccumulatorByAddAllStats = new StatsAccumulator();
        twoValuesAccumulatorByAddAllStats.addAll(Stats.of(ONE_VALUE));
        twoValuesAccumulatorByAddAllStats.addAll(Stats.of(OTHER_ONE_VALUE));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 34K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            given:
            property.set(toMutable(["abc"]))
            property.addAll("${'321'.substring(2)}")
    
            expect:
            assertValueIs(["abc", "1"])
        }
    
        def "appends zero or more values from provider #value using addAll"() {
            given:
            property.addAll(Providers.of(value))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectListTest.groovy

            list == ['a']
        }
    
        def "can add collection at given index"() {
            when:
            list.addAll(0, ['a', 'b'])
    
            then:
            list == ['a', 'b']
    
            when:
            list.addAll(1, ['c', 'd'])
    
            then:
            list == ['a', 'c', 'd', 'b']
        }
    
        def "fires events when elements are added"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top