Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 296 for squash (0.11 sec)

  1. src/cmd/compile/internal/ssa/compile.go

    		fmt.Fprintf(buf, "%s: ", f.Name)
    		for _, key := range keys {
    			fmt.Fprintf(buf, "%s=%d ", key, f.ruleMatches[key])
    		}
    		fmt.Fprint(buf, "\n")
    		fmt.Print(buf.String())
    	}
    
    	// Squash error printing defer
    	phaseName = ""
    }
    
    // DumpFileForPhase creates a file from the function name and phase name,
    // warning and returning nil if this is not possible.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/http/language/v3alpha"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/http/squash/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/http/sxg/v3alpha"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/client_ssl_auth/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. pkg/apis/storage/types.go

    	// these operations.
    	// This mode should be selected if the CSIDriver does not support fsGroup modifications,
    	// for example when Kubernetes cannot change ownership and permissions on a volume due
    	// to root-squash settings on a NFS volume.
    	NoneFSGroupPolicy FSGroupPolicy = "None"
    )
    
    // VolumeLifecycleMode specifies how a CSI volume is used in Kubernetes.
    // More modes may be added in the future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1/types.go

    	// these operations.
    	// This mode should be selected if the CSIDriver does not support fsGroup modifications,
    	// for example when Kubernetes cannot change ownership and permissions on a volume due
    	// to root-squash settings on a NFS volume.
    	NoneFSGroupPolicy FSGroupPolicy = "None"
    )
    
    // VolumeLifecycleMode is an enumeration of possible usage modes for a volume
    // provided by a CSI driver. More modes may be added in the future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/InetAddresses.java

        }
    
        // Many strategies for hashing are possible. This might suffice for now.
        int coercedHash = Hashing.murmur3_32_fixed().hashLong(addressAsLong).asInt();
    
        // Squash into 224/4 Multicast and 240/4 Reserved space (i.e. 224/3).
        coercedHash |= 0xe0000000;
    
        // Fixup to avoid some "illegal" values. Currently the only potential
        // illegal value is 255.255.255.255.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/InetAddresses.java

        }
    
        // Many strategies for hashing are possible. This might suffice for now.
        int coercedHash = Hashing.murmur3_32_fixed().hashLong(addressAsLong).asInt();
    
        // Squash into 224/4 Multicast and 240/4 Reserved space (i.e. 224/3).
        coercedHash |= 0xe0000000;
    
        // Fixup to avoid some "illegal" values. Currently the only potential
        // illegal value is 255.255.255.255.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/field/fe.go

    	z2.Square(z)             // 2
    	t.Square(&z2)            // 4
    	t.Square(&t)             // 8
    	z9.Multiply(&t, z)       // 9
    	z11.Multiply(&z9, &z2)   // 11
    	t.Square(&z11)           // 22
    	z2_5_0.Multiply(&t, &z9) // 31 = 2^5 - 2^0
    
    	t.Square(&z2_5_0) // 2^6 - 2^1
    	for i := 0; i < 4; i++ {
    		t.Square(&t) // 2^10 - 2^5
    	}
    	z2_10_0.Multiply(&t, &z2_5_0) // 2^10 - 2^0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p384.go

    	}
    	t1.Mul(z, t1)
    	z.Square(t1)
    	z.Mul(x, z)
    	t2.Square(z)
    	for s := 1; s < 31; s++ {
    		t2.Square(t2)
    	}
    	t1.Mul(t1, t2)
    	t2.Square(t1)
    	for s := 1; s < 63; s++ {
    		t2.Square(t2)
    	}
    	t1.Mul(t1, t2)
    	t2.Square(t1)
    	for s := 1; s < 126; s++ {
    		t2.Square(t2)
    	}
    	t1.Mul(t1, t2)
    	for s := 0; s < 3; s++ {
    		t1.Square(t1)
    	}
    	t0.Mul(t0, t1)
    	for s := 0; s < 33; s++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  9. docs/recipes.md

     [AccessHeadersJava]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/AccessHeaders.java
     [AccessHeadersKotlin]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/kt/AccessHeaders.kt
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixDatabaseTest.kt

        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("foo.bar.square.com"))
          .isEqualTo("bar.square.com")
        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("foo.my.square.com"))
          .isEqualTo("foo.my.square.com")
      }
    
      @Test fun wildcardMatch() {
        val buffer =
          Buffer()
            .writeUtf8("*.square.com\n")
            .writeUtf8("com\n")
            .writeUtf8("example.com\n")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top