Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for 114514 (0.09 sec)

  1. pkg/util/filesystem/util_windows.go

    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/klog/v2"
    )
    
    const (
    	// Amount of time to wait between attempting to use a Unix domain socket.
    	// As detailed in https://github.com/kubernetes/kubernetes/issues/104584
    	// the first attempt will most likely fail, hence the need to retry
    	socketDialRetryPeriod = 1 * time.Second
    	// Overall timeout value to dial a Unix domain socket, including retries
    	socketDialTimeout = 4 * time.Second
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. pkg/util/filesystem/util_windows_test.go

    }
    
    // This is required as on Windows it's possible for the socket file backing a Unix domain socket to
    // exist but not be ready for socket communications yet as per
    // https://github.com/kubernetes/kubernetes/issues/104584
    func TestPendingUnixDomainSocket(t *testing.T) {
    	// Create a temporary file that will simulate the Unix domain socket file in a
    	// not-yet-ready state. We need this because the Kubelet keeps an eye on file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:10:26 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/JavaVersion.java

         * @since 4.7
         */
        VERSION_HIGHER;
        // Since Java 9, version should be X instead of 1.X
        private static final int FIRST_MAJOR_VERSION_ORDINAL = 9 - 1;
        // Class file versions: 1.1 == 45, 1.2 == 46...
        private static final int CLASS_MAJOR_VERSION_OFFSET = 44;
        private static JavaVersion currentJavaVersion;
        private final String versionName;
    
        JavaVersion() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                        )
                        FunctionArgument.Positional [indexes: 13..16, line/column: 1/14..1/17, file: test] (
                            expr = FunctionCall [indexes: 13..16, line/column: 1/14..1/17, file: test] (
                                name = g
                                args = []
                            )
                        )
                    ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. docs/ru/docs/tutorial/response-model.md

        {!> ../../../docs_src/response_model/tutorial004_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="11  13-14"
        {!> ../../../docs_src/response_model/tutorial004_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="11  13-14"
        {!> ../../../docs_src/response_model/tutorial004.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - Updated API reference for Requests, specifying they must not exceed limits ([#115434](https://github.com/kubernetes/kubernetes/pull/115434), [@ehashman](https://github.com/ehashman))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  7. docs/em/docs/tutorial/response-model.md

    ## 📨 🏷 🔢 🔢
    
    👆 📨 🏷 💪 ✔️ 🔢 💲, 💖:
    
    === "🐍 3️⃣.6️⃣ & 🔛"
    
        ```Python hl_lines="11  13-14"
        {!> ../../../docs_src/response_model/tutorial004.py!}
        ```
    
    === "🐍 3️⃣.9️⃣ & 🔛"
    
        ```Python hl_lines="11  13-14"
        {!> ../../../docs_src/response_model/tutorial004_py39.py!}
        ```
    
    === "🐍 3️⃣.1️⃣0️⃣ & 🔛"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/response-model.md

        {!> ../../../docs_src/response_model/tutorial004_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="11  13-14"
        {!> ../../../docs_src/response_model/tutorial004_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="11  13-14"
        {!> ../../../docs_src/response_model/tutorial004.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. src/net/resolverdialfunc_test.go

    			HandleA: func(w AWriter, name string) error {
    				w.AddIP([4]byte{1, 2, 3, 4})
    				w.AddIP([4]byte{5, 6, 7, 8})
    				return nil
    			},
    			HandleAAAA: func(w AAAAWriter, name string) error {
    				w.AddIP([16]byte{1: 1, 15: 15})
    				w.AddIP([16]byte{2: 2, 14: 14})
    				return nil
    			},
    			HandleSRV: func(w SRVWriter, name string) error {
    				w.AddSRV(1, 2, 80, "foo.bar.")
    				w.AddSRV(2, 3, 81, "bar.baz.")
    				return nil
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/response-model.md

        {!> ../../../docs_src/response_model/tutorial004_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="11  13-14"
        {!> ../../../docs_src/response_model/tutorial004_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="11  13-14"
        {!> ../../../docs_src/response_model/tutorial004.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top