Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Flash (0.13 sec)

  1. cmd/object-api-listobjects_test.go

    		// Test listing with marker > last object such that response should be empty (65)
    		{"test-bucket-single-object", "", "A/C", "", 1000, resultCases[34], nil, true},
    		// Test listing an object with a trailing slash and a slash delimiter (66)
    		{"test-bucket-list-object", "Asia-maps.png/", "", "/", 1000, resultCases[34], nil, true},
    		// Test listing an object with uncommon delimiter
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    	    See 'go doc test2json' for the encoding details.
    
    	-o file
    	    Compile the test binary to the named file.
    	    The test still runs (unless -c or -i is specified).
    	    If file ends in a slash or names an existing directory,
    	    the test is written to pkg.test in that directory.
    
    The test binary also accepts flags that control execution of the test; these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/net/netip/netip_test.go

    		}
    	}
    }
    
    func TestParsePrefixAllocs(t *testing.T) {
    	tests := []struct {
    		ip    string
    		slash string
    	}{
    		{"192.168.1.0", "/24"},
    		{"aaaa:bbbb:cccc::", "/24"},
    	}
    	for _, test := range tests {
    		prefix := test.ip + test.slash
    		t.Run(prefix, func(t *testing.T) {
    			ipAllocs := int(testing.AllocsPerRun(5, func() {
    				ParseAddr(test.ip)
    			}))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  4. src/net/url/url_test.go

    		t.Errorf("ParseRequestURI path:\ngot  %q\nwant %q", url.Path, pathThatLooksSchemeRelative)
    	}
    }
    
    var stringURLTests = []struct {
    	url  URL
    	want string
    }{
    	// No leading slash on path should prepend slash on String() call
    	{
    		url: URL{
    			Scheme: "http",
    			Host:   "www.google.com",
    			Path:   "search",
    		},
    		want: "http://www.google.com/search",
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		// is correct in a separate namespace, so when using the slash as the sysctl
    		// variable separator, runc returns an error: "sysctl is not in a separate kernel namespace"
    		// and the podSandBox cannot be successfully created. Therefore, before calling runc,
    		// we need to convert the sysctl variable, the dot is used as a separator to separate the kernel namespace.
    		// When runc supports slash as sysctl separator, this function can no longer be used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== New API introduced may clash with existing Gradle DSL code
    
    When a new property or method is added to an existing type in the Gradle DSL, it may clash with names already in use in user code.
    
    When a name clash occurs, one solution is to rename the element in user code.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

     * and workgroups.
     * <p>
     * <font color="#800000"><i>Important: all SMB URLs that represent
     * workgroups, servers, shares, or directories require a trailing slash '/'.
     * </i></font>
     * <p>
     * When using the <tt>java.net.URL</tt> class with
     * 'smb://' URLs it is necessary to first call the static
     * <tt>jcifs.Config.registerSmbURLHandler();</tt> method. This is required
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    			in:        "https://issuer-url",
    			want:      `issuer.discoveryURL: Invalid value: "https://issuer-url": discoveryURL must be different from URL`,
    		},
    		{
    			name:      "discovery url same as issuer url, with trailing slash",
    			issuerURL: "https://issuer-url",
    			in:        "https://issuer-url/",
    			want:      `issuer.discoveryURL: Invalid value: "https://issuer-url/": discoveryURL must be different from URL`,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool.go

    		objects = objects[:maxKeys]
    		loi.IsTruncated = true
    	}
    	for _, obj := range objects {
    		if obj.IsDir && obj.ModTime.IsZero() && delimiter != "" {
    			// Only add each once.
    			// With slash delimiter we only get the directory once.
    			found := false
    			if delimiter != slashSeparator {
    				for _, p := range loi.Prefixes {
    					if found {
    						break
    					}
    					found = p == obj.Name
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  10. src/testing/testing.go

    //
    // The argument to the -run, -bench, and -fuzz command-line flags is an unanchored regular
    // expression that matches the test's name. For tests with multiple slash-separated
    // elements, such as subtests, the argument is itself slash-separated, with
    // expressions matching each name element in turn. Because it is unanchored, an
    // empty expression matches any string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top