Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for Flash (0.09 sec)

  1. pkg/apis/storage/validation/validation_test.go

    			}
    		})
    	}
    }
    
    func TestValidateVolumeAttributesClass(t *testing.T) {
    	successCases := []storage.VolumeAttributesClass{
    		{
    			// driverName without a slash
    			ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    			DriverName: "foo",
    			Parameters: map[string]string{
    				"foo-parameter": "free-form-string",
    			},
    		},
    		{
    			// some parameters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  2. src/net/http/request.go

    	// just the authority section of a URL. This information should go in req.URL.Host.
    	//
    	// The net/rpc package also uses CONNECT, but there the parameter is a path
    	// that starts with a slash. It can be parsed with the regular URL parser,
    	// and the path will end up in req.URL.Path, where it needs to be in order for
    	// RPC to work.
    	justAuthority := req.Method == "CONNECT" && !strings.HasPrefix(rawurl, "/")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidObjectNamePrefixSlash: {
    		Code:           "XMinioInvalidObjectName",
    		Description:    "Object name contains a leading slash.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidResourceName: {
    		Code:           "XMinioInvalidResourceName",
    		Description:    "Resource name contains bad components such as \"..\" or \".\".",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  4. src/go/build/build.go

    	IsDir func(path string) bool
    
    	// HasSubdir reports whether dir is lexically a subdirectory of
    	// root, perhaps multiple levels below. It does not try to check
    	// whether dir exists.
    	// If so, HasSubdir sets rel to a slash-separated path that
    	// can be joined to root to produce a path equivalent to dir.
    	// If HasSubdir is nil, Import uses an implementation built on
    	// filepath.EvalSymlinks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    			q.raw = ""
    		}
    
    		// Guard against 'go get x.go', a common mistake.
    		// Note that package and module paths may end with '.go', so only print an error
    		// if the argument has no version and either has no slash or refers to an existing file.
    		if strings.HasSuffix(q.raw, ".go") && q.rawVersion == "" {
    			if !strings.Contains(q.raw, "/") {
    				base.Errorf("go: %s: arguments must be package or module paths", q.raw)
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    	// modRoot maps each module in versions to its absolute filesystem path.
    	modRoot map[module.Version]string
    
    	// pathPrefix is the path prefix for packages in the module, without a trailing
    	// slash. For most modules, pathPrefix is just version.Path, but the
    	// standard-library module "std" has an empty prefix.
    	pathPrefix map[module.Version]string
    
    	// inGorootSrc caches whether modRoot is within GOROOT/src.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. src/os/os_test.go

    	for len(tmpdir) < 400 {
    		tmpdir += "/dir3456789"
    	}
    	for _, sz := range sizes {
    		t.Run(fmt.Sprintf("length=%d", sz), func(t *testing.T) {
    			sizedTempDir := tmpdir[:sz-1] + "x" // Ensure it does not end with a slash.
    
    			// The various sized runs are for this call to trigger the boundary
    			// condition.
    			if err := MkdirAll(sizedTempDir, 0755); err != nil {
    				t.Fatalf("MkdirAll failed: %v", err)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top