Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,300 for setS (0.06 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport.go

    	atom.Audio:      sets.NewString("src"),
    	atom.Base:       sets.NewString("href"),
    	atom.Blockquote: sets.NewString("cite"),
    	atom.Body:       sets.NewString("background"),
    	atom.Button:     sets.NewString("formaction"),
    	atom.Command:    sets.NewString("icon"),
    	atom.Del:        sets.NewString("cite"),
    	atom.Embed:      sets.NewString("src"),
    	atom.Form:       sets.NewString("action"),
    	atom.Frame:      sets.NewString("longdesc", "src"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

        Set<Feature<?>> features = Sets.<Feature<?>>newHashSet(ExampleBaseFeature.BASE_FEATURE_1);
        assertSame(features, FeatureUtil.addImpliedFeatures(features));
      }
    
      public void testAddImpliedFeatures_addsImpliedFeatures() throws Exception {
        Set<Feature<?>> features;
    
        features = Sets.<Feature<?>>newHashSet(ExampleDerivedFeature.DERIVED_FEATURE_1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/ipset/testing/fake.go

    	f.Sets = nil
    	f.Entries = nil
    	return nil
    }
    
    // CreateSet is part of interface.
    func (f *FakeIPSet) CreateSet(set *ipset.IPSet, ignoreExistErr bool) error {
    	if f.Sets[set.Name] != nil {
    		if !ignoreExistErr {
    			// already exists
    			return fmt.Errorf("Set cannot be created: set with the same name already exists")
    		}
    		return nil
    	}
    	f.Sets[set.Name] = set
    	// initialize entry map
    	f.Entries[set.Name] = sets.NewString()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/helpers_test.go

    func allPrimitiveFieldPaths(t *testing.T, skipRecurseList sets.Set[string], tp reflect.Type, path *field.Path) sets.Set[string] {
    	// if the current field path is in the list of paths we should not recurse into,
    	// return here rather than descending and accumulating child field paths
    	if pathStr := path.String(); len(pathStr) > 0 && skipRecurseList.Has(pathStr) {
    		return sets.New[string](pathStr)
    	}
    
    	paths := sets.New[string]()
    	switch tp.Kind() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/jsonschemaprops.go

    // WithRef sets the Ref field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Ref field is set to the value of the last call.
    func (b *JSONSchemaPropsApplyConfiguration) WithRef(value string) *JSONSchemaPropsApplyConfiguration {
    	b.Ref = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  6. android/guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

        Set<Feature<?>> features = Sets.<Feature<?>>newHashSet(ExampleBaseFeature.BASE_FEATURE_1);
        assertSame(features, FeatureUtil.addImpliedFeatures(features));
      }
    
      public void testAddImpliedFeatures_addsImpliedFeatures() throws Exception {
        Set<Feature<?>> features;
    
        features = Sets.<Feature<?>>newHashSet(ExampleDerivedFeature.DERIVED_FEATURE_1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. pkg/apis/certificates/helpers.go

    )
    
    var (
    	kubeletServingRequiredUsages = sets.NewString(
    		string(UsageDigitalSignature),
    		string(UsageKeyEncipherment),
    		string(UsageServerAuth),
    	)
    	kubeletServingRequiredUsagesNoRSA = sets.NewString(
    		string(UsageDigitalSignature),
    		string(UsageServerAuth),
    	)
    )
    
    func IsKubeletServingCSR(req *x509.CertificateRequest, usages sets.String) bool {
    	return ValidateKubeletServingCSR(req, usages) == nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/cache/snapshot_test.go

    							Names: []string{
    								"gcr.io/200:v1",
    							},
    							SizeBytes: int64(200 * mb),
    						},
    					},
    				},
    			},
    			imageExistenceMap: map[string]sets.Set[string]{
    				"gcr.io/10:v1":  sets.New("node-0", "node-1"),
    				"gcr.io/200:v1": sets.New("node-0"),
    			},
    			expected: map[string]*framework.ImageStateSummary{
    				"gcr.io/10:v1": {
    					Size:     int64(10 * mb),
    					NumNodes: 2,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. pkg/proxy/conntrack/cleanup_test.go

    				// Note: this isn't testClusterIP; it's the IP of some
    				// unknown (because deleted) service.
    				DeletedUDPClusterIPs: sets.New("172.30.99.99"),
    			},
    			endpointsUpdates: proxy.UpdateEndpointsMapResult{},
    
    			result: FakeInterface{
    				ClearedIPs: sets.New("172.30.99.99"),
    
    				ClearedPorts:    sets.New[int](),
    				ClearedNATs:     map[string]string{},
    				ClearedPortNATs: map[int]string{},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/sets/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package sets has generic set and specified sets. Generic set will
    // replace specified ones over time. And specific ones are deprecated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 770 bytes
    - Viewed (0)
Back to top