Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for rootonly (0.17 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. cmd/kubeadm/app/util/marshal_test.go

    func TestSplitYAMLDocuments(t *testing.T) {
    	var tests = []struct {
    		name         string
    		fileContents []byte
    		gvkmap       kubeadmapi.DocumentMap
    		expectedErr  bool
    	}{
    		{
    			name:         "FooOnly",
    			fileContents: files["foo"],
    			gvkmap: kubeadmapi.DocumentMap{
    				{Group: "foo.k8s.io", Version: "v1", Kind: "Foo"}: files["foo"],
    			},
    		},
    		{
    			name:         "FooBar",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/KotlinDeprecationErrorTest.kt

        val name: String = cookie.name()
        val value: String = cookie.value()
        val persistent: Boolean = cookie.persistent()
        val expiresAt: Long = cookie.expiresAt()
        val hostOnly: Boolean = cookie.hostOnly()
        val domain: String = cookie.domain()
        val path: String = cookie.path()
        val httpOnly: Boolean = cookie.httpOnly()
        val secure: Boolean = cookie.secure()
      }
    
      @Test @Disabled
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. docs/changelogs/upgrading_to_okhttp_4.md

     * **Challenge**: authParams, charset, realm, scheme
     * **CipherSuite**: javaName
     * **ConnectionSpec**: cipherSuites, supportsTlsExtensions, tlsVersions
     * **Cookie**: domain, expiresAt, hostOnly, httpOnly, name, path, persistent, value
     * **Dispatcher**: executorService
     * **FormBody**: size
     * **Handshake**: cipherSuite, localCertificates, localPrincipal, peerCertificates, peerPrincipal,
       tlsVersion
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

        val name: String = cookie.name
        val value: String = cookie.value
        val persistent: Boolean = cookie.persistent
        val expiresAt: Long = cookie.expiresAt
        val hostOnly: Boolean = cookie.hostOnly
        val domain: String = cookie.domain
        val path: String = cookie.path
        val httpOnly: Boolean = cookie.httpOnly
        val secure: Boolean = cookie.secure
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  8. test-site/activator-launch-1.3.2.jar

    ivyPattern; private final String artifactPattern; private final boolean mavenCompatible; private final boolean bootOnly; private final boolean descriptorOptional; private final boolean skipConsistencyCheck; public final String id(); public final java.net.URL url(); public final String ivyPattern(); public final String artifactPattern(); public final boolean mavenCompatible(); public final boolean bootOnly(); public final boolean descriptorOptional(); public final boolean skipConsistencyCheck(); public final...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  9. okhttp/api/okhttp.api

    	public final fun domain ()Ljava/lang/String;
    	public fun equals (Ljava/lang/Object;)Z
    	public final fun expiresAt ()J
    	public fun hashCode ()I
    	public final fun hostOnly ()Z
    	public final fun httpOnly ()Z
    	public final fun matches (Lokhttp3/HttpUrl;)Z
    	public final fun name ()Ljava/lang/String;
    	public final fun newBuilder ()Lokhttp3/Cookie$Builder;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top