Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for Flash (0.29 sec)

  1. 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)
  2. src/go/printer/nodes.go

    	}
    	typeSize := p.nodeSize(f.Type, maxSize)
    	return namesSize+typeSize <= maxSize
    }
    
    func (p *printer) setLineComment(text string) {
    	p.setComment(&ast.CommentGroup{List: []*ast.Comment{{Slash: token.NoPos, Text: text}}})
    }
    
    func (p *printer) fieldList(fields *ast.FieldList, isStruct, isIncomplete bool) {
    	lbrace := fields.Opening
    	list := fields.List
    	rbrace := fields.Closing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/main/java/jcifs/smb/SmbTransportImpl.java

                log.debug("Resolving DFS path " + path);
            }
    
            if ( path.length() >= 2 && path.charAt(0) == '\\' && path.charAt(1) == '\\' ) {
                throw new SmbException("Path must not start with double slash: " + path);
            }
    
            try ( SmbSessionImpl sess = getSmbSession(ctx, targetHost, targetDomain);
                  SmbTransportImpl transport = sess.getTransport();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K 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