Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for rootonly (1.71 sec)

  1. src/net/http/cookiejar/jar.go

    type entry struct {
    	Name       string
    	Value      string
    	Quoted     bool
    	Domain     string
    	Path       string
    	SameSite   string
    	Secure     bool
    	HttpOnly   bool
    	Persistent bool
    	HostOnly   bool
    	Expires    time.Time
    	Creation   time.Time
    	LastAccess time.Time
    
    	// seqNum is a sequence number so that Cookies returns cookies in a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/net/http/cookiejar/jar_test.go

    	jar := newTestJar()
    	for _, tc := range domainAndTypeTests {
    		domain, hostOnly, err := jar.domainAndType(tc.host, tc.domain)
    		if err != tc.wantErr {
    			t.Errorf("%q/%q: got %q error, want %v",
    				tc.host, tc.domain, err, tc.wantErr)
    			continue
    		}
    		if err != nil {
    			continue
    		}
    		if domain != tc.wantDomain || hostOnly != tc.wantHostOnly {
    			t.Errorf("%q/%q: got %q/%t want %q/%t",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/BUILD

            "@local_xla//xla/mlir_hlo:hlo_dialect_registration",
            "@stablehlo//:register",
        ],
    )
    
    tf_cc_binary(
        name = "odml-to-stablehlo-opt",
        testonly = True,
        tags = ["hostonly"],
        deps = [
            ":compose_uniform_quantized_type_pass",
            ":fold_broadcast_pass",
            ":fuse_convolution_pass",
            ":legalize_stablehlo_composite_to_tfl_custom",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top