Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,344 for valid (1.05 sec)

  1. cni/pkg/install/install_test.go

    			}
    			assert.Equal(t, isReady.Load(), false)
    
    			if len(c.invalidConfigFilename) > 0 {
    				if err := os.Remove(cniConfigFilepath); err != nil {
    					t.Fatal(err)
    				}
    			}
    
    			// Copy a valid config file into tempDir
    			if err := file.AtomicCopy(filepath.Join("testdata", c.validConfigFilename), tempDir, c.cniConfigFilename); err != nil {
    				t.Fatal(err)
    			}
    
    			// Listen for isReady to be set to true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

                            .details("When using a string to declare library coordinates, you must use a valid dependency notation")
                            .solution("Make sure that the coordinates consist of 3 parts separated by colons, e.g.: my.group:artifact:1.2");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Suppliers.java

       * on the deserialized instance.
       *
       * <p>When the underlying delegate throws an exception then this memoizing supplier will keep
       * delegating calls until it returns valid data.
       *
       * <p>If {@code delegate} is an instance created by an earlier call to {@code memoize}, it is
       * returned directly.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. src/net/url/url.go

    }
    
    // Port returns the port part of u.Host, without the leading colon.
    //
    // If u.Host doesn't contain a valid numeric port, Port returns an empty string.
    func (u *URL) Port() string {
    	_, port := splitHostPort(u.Host)
    	return port
    }
    
    // splitHostPort separates host and port. If the port is not valid, it returns
    // the entire input as host, and it doesn't check the validity of the host.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_linux_test.go

    		container      v1.Container
    		podVolumes     kubecontainer.VolumeMap
    		supportsRRO    bool
    		expectErr      bool
    		expectedErrMsg string
    		expectedMounts []kubecontainer.Mount
    	}{
    		"valid mounts in unprivileged container": {
    			podVolumes: kubecontainer.VolumeMap{
    				"disk":  kubecontainer.VolumeInfo{Mounter: &stubVolume{path: "/mnt/disk"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation_test.go

    		if len(errs) != 0 {
    			t.Logf("errors returned: %v", errs)
    		}
    		if len(errs) != 0 && valid {
    			t.Errorf("unexpected forbidden field validation errors for: %#v", s)
    		}
    		if len(errs) == 0 && !valid {
    			t.Errorf("expected forbidden field validation errors for: %#v", s)
    		}
    	}
    }
    
    func TestValidateStructuralCompleteness(t *testing.T) {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    // VerifyOptions, and converts valid certificate chains into user.Info using the provided UserConversion
    func New(opts x509.VerifyOptions, user UserConversion) *Authenticator {
    	return NewDynamic(StaticVerifierFn(opts), user)
    }
    
    // NewDynamic returns a request.Authenticator that verifies client certificates using the provided
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_resourceclassparameters_test.go

    	name := "valid"
    	validResourceClassParameters := testResourceClassParameters(name, name, nil)
    
    	scenarios := map[string]struct {
    		oldResourceClassParameters *resource.ResourceClassParameters
    		update                     func(class *resource.ResourceClassParameters) *resource.ResourceClassParameters
    		wantFailures               field.ErrorList
    	}{
    		"valid-no-op-update": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/go/types/decl.go

    		check.funcDecl(obj, d)
    	default:
    		panic("unreachable")
    	}
    }
    
    // validCycle checks if the cycle starting with obj is valid and
    // reports an error if it is not.
    func (check *Checker) validCycle(obj Object) (valid bool) {
    	// The object map contains the package scope objects and the non-interface methods.
    	if debug {
    		info := check.objMap[obj]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/strategy.go

    	// Allow ID as "podname" or "podname:port" or "scheme:podname:port".
    	// If port is not specified, try to use the first defined port on the pod.
    	scheme, name, port, valid := utilnet.SplitSchemeNamePort(id)
    	if !valid {
    		return nil, nil, errors.NewBadRequest(fmt.Sprintf("invalid pod request %q", id))
    	}
    
    	pod, err := getPod(ctx, getter, name)
    	if err != nil {
    		return nil, nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top