Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 185 for 1e15 (0.09 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"1E6", decQuantity(1, 6, DecimalExponent)},
    		{"1e9", decQuantity(1, 9, DecimalExponent)},
    		{"1E12", decQuantity(1, 12, DecimalExponent)},
    		{"1e15", decQuantity(1, 15, DecimalExponent)},
    		{"1E18", decQuantity(1, 18, DecimalExponent)},
    
    		// Nonstandard but still parsable
    		{"1e14", decQuantity(1, 14, DecimalExponent)},
    		{"1e13", decQuantity(1, 13, DecimalExponent)},
    		{"1e3", decQuantity(1, 3, DecimalExponent)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/MD4.java

            B = HH(B, C, D, A, X[12], 15);
            A = HH(A, B, C, D, X[ 2],  3);
            D = HH(D, A, B, C, X[10],  9);
            C = HH(C, D, A, B, X[ 6], 11);
            B = HH(B, C, D, A, X[14], 15);
            A = HH(A, B, C, D, X[ 1],  3);
            D = HH(D, A, B, C, X[ 9],  9);
            C = HH(C, D, A, B, X[ 5], 11);
            B = HH(B, C, D, A, X[13], 15);
            A = HH(A, B, C, D, X[ 3],  3);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  3. fuzzing/fuzzingserver-expected.txt

    "12.1.18 UNIMPLEMENTED"
    "12.1.2 UNIMPLEMENTED"
    "12.1.3 UNIMPLEMENTED"
    "12.1.4 UNIMPLEMENTED"
    "12.1.5 UNIMPLEMENTED"
    "12.1.6 UNIMPLEMENTED"
    "12.1.7 UNIMPLEMENTED"
    "12.1.8 UNIMPLEMENTED"
    "12.1.9 UNIMPLEMENTED"
    "12.2.1 UNIMPLEMENTED"
    "12.2.10 UNIMPLEMENTED"
    "12.2.11 UNIMPLEMENTED"
    "12.2.12 UNIMPLEMENTED"
    "12.2.13 UNIMPLEMENTED"
    "12.2.14 UNIMPLEMENTED"
    "12.2.15 UNIMPLEMENTED"
    "12.2.16 UNIMPLEMENTED"
    "12.2.17 UNIMPLEMENTED"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Mar 26 02:01:32 UTC 2019
    - 6.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.15.md

    Certificate management has become more robust in 1.15, with kubeadm now seamlessly rotating all your certificates (on upgrades) before they expire. Check the [kubeadm documentation](https://github.com/kubernetes/website/blob/dev-1.15/content/en/docs/reference/setup-tools/kubeadm/kubeadm-alpha.md) for information on how to manage your certificates.
    
    The kubeadm configuration file API is moving from v1beta1 to v1beta2 in 1.15.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/poset_test.go

    		{SetOrderOrEqual, 25, 10},
    
    		// Check that all nodes are pairwise equal now
    		{Equal, 10, 12},
    		{Equal, 10, 15},
    		{Equal, 10, 16},
    		{Equal, 10, 17},
    		{Equal, 10, 18},
    		{Equal, 10, 19},
    		{Equal, 10, vconst(20)},
    		{Equal, 10, vconst2(20)},
    		{Equal, 10, 25},
    
    		{Equal, 12, 15},
    		{Equal, 12, 16},
    		{Equal, 12, 17},
    		{Equal, 12, 18},
    		{Equal, 12, 19},
    		{Equal, 12, vconst(20)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 26 07:52:35 UTC 2019
    - 18.1K bytes
    - Viewed (0)
  6. pkg/test/framework/resource/version_test.go

    		version  IstioVersion
    		result   bool
    	}{
    		{
    			"not at least",
    			makeRevVerMap("1.4", "1.5"),
    			IstioVersion("1.8"),
    			false,
    		},
    		{
    			"tied with minimum",
    			makeRevVerMap("1.4", "1.5"),
    			IstioVersion("1.4"),
    			true,
    		},
    		{
    			"lower than minimum",
    			makeRevVerMap("1.4", "1.5"),
    			IstioVersion("1.3"),
    			true,
    		},
    		{
    			"no versions",
    			makeRevVerMap(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-concreteVersion/kotlin/build.gradle.kts

    // tag::required-version[]
    dependencies {
        implementation("org.slf4j:slf4j-api:1.7.15")
    }
    // end::required-version[]
    
    // tag::strict-shorthand[]
    dependencies {
        // short-hand notation with !!
        implementation("org.slf4j:slf4j-api:1.7.15!!")
        // is equivalent to
        implementation("org.slf4j:slf4j-api") {
            version {
               strictly("1.7.15")
            }
        }
    
        // or...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-concreteVersion/groovy/build.gradle

    // tag::required-version[]
    dependencies {
        implementation('org.slf4j:slf4j-api:1.7.15')
    }
    // end::required-version[]
    
    // tag::strict-shorthand[]
    dependencies {
        // short-hand notation with !!
        implementation('org.slf4j:slf4j-api:1.7.15!!')
        // is equivalent to
        implementation("org.slf4j:slf4j-api") {
            version {
               strictly '1.7.15'
            }
        }
    
        // or...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/istio-extension-dashboard.json

              "placement": "bottom",
              "showLegend": true
            },
            "tooltip": {
              "mode": "multi",
              "sort": "none"
            }
          },
          "pluginVersion": "10.1.5",
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
              "expr": "avg(envoy_wasm_envoy_wasm_runtime_null_active)",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/istio-mesh-dashboard.json

            "mode": "html"
          },
          "pluginVersion": "10.1.5",
          "style": {
            "font-size": "18pt"
          },
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top