Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 586 for 11 (0.13 sec)

  1. ci/official/requirements_updater/README.md

       ```
          load("@python//3.11:defs.bzl",
               compile_pip_requirements_3_11 = "compile_pip_requirements")
       ```
    
       Add a new entry for the loaded `compile_pip_requirements`, e.g.
    
       ```
          compile_pip_requirements_3_11(
              name = "requirements_3_11",
              extra_args = ["--allow-unsafe"],
              requirements_in = "requirements.in",
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 3.9K bytes
    - Viewed (1)
  2. istioctl/pkg/writer/envoy/configdump/testdata/routes/istio-gateway-http-route-prefix/configdump.json

              },
              "route": {
               "cluster": "agent"
              }
             }
            ]
           }
          ]
         },
         "last_updated": "2023-11-29T10:46:50.845Z"
        }
       ],
       "dynamic_route_configs": [
        {
         "version_info": "2023-11-29T10:46:50Z/15",
         "route_config": {
          "@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
          "name": "http.8080",
          "virtual_hosts": [
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Nov 29 12:37:14 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/JSSETest.kt

        val s = factory.createSocket() as SSLSocket
    
        when {
          PlatformVersion.majorVersion > 11 ->
            assertThat(s.enabledProtocols.toList()).containsExactly(
              "TLSv1.3",
              "TLSv1.2",
            )
          // Not much we can guarantee on JDK 11.
          PlatformVersion.majorVersion == 11 ->
            assertThat(s.enabledProtocols.toList()).contains(
              "TLSv1.2",
            )
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/plugin/internal/MavenPluginJavaPrerequisiteCheckerTest.java

            assertTrue(checker.matchesVersion("1.0", "1.8"));
            assertTrue(checker.matchesVersion("1.8", "9.0.1+11"));
            assertFalse(checker.matchesVersion("[1.0,2],[3,4]", "2.1"));
            assertTrue(checker.matchesVersion("[1.0,2],[3,4]", "3.1"));
            assertThrows(IllegalArgumentException.class, () -> checker.matchesVersion("(1.0,0)", "11"));
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/cache/CacheStatsTest.java

        assertEquals(0.0, stats.averageLoadPenalty());
        assertEquals(0, stats.evictionCount());
      }
    
      public void testSingle() {
        CacheStats stats = new CacheStats(11, 13, 17, 19, 23, 27);
        assertEquals(24, stats.requestCount());
        assertEquals(11, stats.hitCount());
        assertEquals(11.0 / 24, stats.hitRate());
        assertEquals(13, stats.missCount());
        assertEquals(13.0 / 24, stats.missRate());
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Sun Jun 30 14:58:49 GMT 2019
    - 4.6K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/body-fields.md

    ## Modellattribute deklarieren
    
    Dann können Sie `Field` mit Modellattributen deklarieren:
    
    === "Python 3.10+"
    
        ```Python hl_lines="11-14"
        {!> ../../../docs_src/body_fields/tutorial001_an_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="11-14"
        {!> ../../../docs_src/body_fields/tutorial001_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="12-15"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Jan 29 17:36:19 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/cache/AbstractCacheTest.java

        }
        for (int i = 0; i < 27; i++) {
          counter.recordEviction();
        }
        CacheStats stats = counter.snapshot();
        int requestCount = 11 + 23;
        assertEquals(requestCount, stats.requestCount());
        assertEquals(11, stats.hitCount());
        assertEquals(11.0 / requestCount, stats.hitRate());
        int missCount = 23;
        assertEquals(missCount, stats.missCount());
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  8. android-test/build.gradle.kts

          "../okhttp-logging-interceptor/src/test/java",
          "../okhttp-sse/src/test/java"
        )
      }
    
      compileOptions {
        targetCompatibility(JavaVersion.VERSION_11)
        sourceCompatibility(JavaVersion.VERSION_11)
      }
    
      testOptions {
        targetSdk = 34
      }
    
      kotlinOptions {
        jvmTarget = JavaVersion.VERSION_11.toString()
      }
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Jan 14 10:20:09 GMT 2024
    - 3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/cache/CacheStatsTest.java

        assertEquals(0.0, stats.averageLoadPenalty());
        assertEquals(0, stats.evictionCount());
      }
    
      public void testSingle() {
        CacheStats stats = new CacheStats(11, 13, 17, 19, 23, 27);
        assertEquals(24, stats.requestCount());
        assertEquals(11, stats.hitCount());
        assertEquals(11.0 / 24, stats.hitRate());
        assertEquals(13, stats.missCount());
        assertEquals(13.0 / 24, stats.missRate());
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Sun Jun 30 14:58:49 GMT 2019
    - 4.6K bytes
    - Viewed (0)
  10. .github/workflows/ci.yml

        steps:
          - name: 'Check out repository'
            uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
          - name: 'Set up JDK 11'
            uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
            with:
              java-version: 11
              distribution: 'zulu'
              cache: 'maven'
          - name: 'Generate latest docs'
            env:
    Others
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 24 19:33:50 GMT 2024
    - 3.5K bytes
    - Viewed (0)
Back to top