Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for seenDirs (0.12 sec)

  1. pkg/kubelet/certificate/kubelet.go

    	seenDNSNames := map[string]bool{}
    	seenIPs := map[string]bool{}
    	for _, address := range addresses {
    		if len(address.Address) == 0 {
    			continue
    		}
    
    		switch address.Type {
    		case v1.NodeHostName:
    			if ip := netutils.ParseIPSloppy(address.Address); ip != nil {
    				seenIPs[address.Address] = true
    			} else {
    				seenDNSNames[address.Address] = true
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

            oos.setObjectTransformer(new InternalTransformer<Object, Object>() {
                boolean seenFirst;
    
                @Override
                public Object transform(Object obj) {
                    if (!seenFirst) {
                        seenFirst = true;
                        return obj;
                    }
                    // Don't serialize the causes - we'll serialize them separately later
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/listtype/validation_test.go

    			errs := ValidateListSetsAndMaps(field.NewPath("root"), tt.schema, tt.obj)
    
    			seenErrs := make([]bool, len(errs))
    
    			for _, expectedError := range tt.errors {
    				found := false
    				for i, err := range errs {
    					if expectedError.matches(err) && !seenErrs[i] {
    						found = true
    						seenErrs[i] = true
    						break
    					}
    				}
    
    				if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top