Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 78 for 1123 (0.03 sec)

  1. CHANGELOG/CHANGELOG-1.12.md

        - [Server Binaries](#server-binaries-6)
        - [Node Binaries](#node-binaries-6)
      - [Changelog since v1.12.3](#changelog-since-v1123)
        - [Action Required](#action-required)
        - [Other notable changes](#other-notable-changes-6)
    - [v1.12.3](#v1123)
      - [Downloads for v1.12.3](#downloads-for-v1123)
        - [Client Binaries](#client-binaries-7)
        - [Server Binaries](#server-binaries-7)
        - [Node Binaries](#node-binaries-7)
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.20.md

    - Modify DNS-1123 error messages to indicate that RFC 1123 is not followed exactly ([#94182](https://github.com/kubernetes/kubernetes/pull/94182), [@mattfenwick](https://github.com/mattfenwick)) [SIG API Machinery, Apps, Auth, Network and Node]
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  3. compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java

            assertVersionOlder("1.1", "1.2");
            assertVersionOlder("1.0.0", "1.1");
            assertVersionOlder("1.1", "1.2.0");
    
            assertVersionOlder("1.1.2.alpha1", "1.1.2");
            assertVersionOlder("1.1.2.alpha1", "1.1.2.beta1");
            assertVersionOlder("1.1.2.beta1", "1.2");
    
            assertVersionOlder("1.0-alpha-1", "1.0");
            assertVersionOlder("1.0-alpha-1", "1.0-alpha-2");
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. docs/ru/docs/tutorial/schema-extra-example.md

    //// tab | Python 3.10+
    
    ```Python hl_lines="13-21"
    {!> ../../docs_src/schema_extra_example/tutorial001_py310.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="15-23"
    {!> ../../docs_src/schema_extra_example/tutorial001.py!}
    ```
    
    ////
    
    Эта дополнительная информация будет включена в **JSON Schema** выходных данных для этой модели, и она будет использоваться в документации к API.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.23.md

    ## Changelog since v1.23.15
    
    ## Changes by Kind
    
    ### API Change
    
    - Kubernetes 1.23 is now built with go1.19.4. To match behavior of previous Kubernetes 1.23 patch releases:
      - `kube-apiserver` defaults the GOGC setting to 63, to approximate go1.17 garbage collection memory performance in heavily loaded API servers
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.13.md

    ## Urgent Upgrade Notes
    
    ### (No, really, you MUST do this before you upgrade)
    
    Before upgrading to Kubernetes 1.13, you must keep the following in mind:
    
    - kube-apiserver
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/http/StatusLineTest.kt

        assertInvalid("HTTP/1.1_200 OK")
      }
    
      @Test
      fun nonThreeDigitCode() {
        assertInvalid("HTTP/1.1  OK")
        assertInvalid("HTTP/1.1 2 OK")
        assertInvalid("HTTP/1.1 20 OK")
        assertInvalid("HTTP/1.1 2000 OK")
        assertInvalid("HTTP/1.1 two OK")
        assertInvalid("HTTP/1.1 2")
        assertInvalid("HTTP/1.1 2000")
        assertInvalid("HTTP/1.1 two")
      }
    
      @Test
      fun truncated() {
        assertInvalid("")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.11.md

        - [Node Binaries](#node-binaries-6)
      - [Changelog since v1.11.3](#changelog-since-v1113)
        - [Other notable changes](#other-notable-changes-6)
    - [v1.11.3](#v1113)
      - [Downloads for v1.11.3](#downloads-for-v1113)
        - [Client Binaries](#client-binaries-7)
        - [Server Binaries](#server-binaries-7)
        - [Node Binaries](#node-binaries-7)
      - [Changelog since v1.11.2](#changelog-since-v1112)
        - [Action Required](#action-required)
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  9. cmd/batch-job-common-types_test.go

    			objSize: 2 << 10,
    			sizeFilter: BatchJobSizeFilter{
    				UpperBound: 10 << 20,
    				LowerBound: 1 << 20,
    			},
    			want: false,
    		},
    		{
    			// 11MiB > 10 MiB -> out of range from right
    			objSize: 11 << 20,
    			sizeFilter: BatchJobSizeFilter{
    				UpperBound: 10 << 20,
    				LowerBound: 1 << 20,
    			},
    			want: false,
    		},
    		{
    			//  2MiB < 10MiB -> in range
    			objSize: 2 << 20,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jan 08 23:22:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/io/ByteSourceTest.java

        assertThrows(IOException.class, () -> okSource.copyTo(out));
        assertTrue(okSource.wasStreamClosed());
      }
    
      public void testConcat() throws IOException {
        ByteSource b1 = ByteSource.wrap(new byte[] {0, 1, 2, 3});
        ByteSource b2 = ByteSource.wrap(new byte[0]);
        ByteSource b3 = ByteSource.wrap(new byte[] {4, 5});
    
        byte[] expected = {0, 1, 2, 3, 4, 5};
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top