Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 90 for 503 (0.73 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_RENAMEAT                 = 501 // { int renameat(int oldfd, char *old, int newfd, char *new); }
    	SYS_SYMLINKAT                = 502 // { int symlinkat(char *path1, int fd, char *path2); }
    	SYS_UNLINKAT                 = 503 // { int unlinkat(int fd, char *path, int flag); }
    	SYS_POSIX_OPENPT             = 504 // { int posix_openpt(int flags); }
    	SYS_GSSD_SYSCALL             = 505 // { int gssd_syscall(char *path); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_freebsd_arm64.go

    	SYS_RENAMEAT                 = 501 // { int renameat(int oldfd, char *old, int newfd, char *new); }
    	SYS_SYMLINKAT                = 502 // { int symlinkat(char *path1, int fd, char *path2); }
    	SYS_UNLINKAT                 = 503 // { int unlinkat(int fd, char *path, int flag); }
    	SYS_POSIX_OPENPT             = 504 // { int posix_openpt(int flags); }
    	SYS_GSSD_SYSCALL             = 505 // { int gssd_syscall(char *path); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/OrderingTest.java

        assertEquals(4, numberOrdering.binarySearch(ints, 7));
      }
    
      public void testSortedCopy() {
        List<@Nullable Integer> unsortedInts =
            Collections.unmodifiableList(Arrays.<@Nullable Integer>asList(5, 0, 3, null, 0, 9));
        List<@Nullable Integer> sortedInts = numberOrdering.nullsLast().sortedCopy(unsortedInts);
        assertEquals(Arrays.<@Nullable Integer>asList(0, 0, 3, 5, 9, null), sortedInts);
    
        assertEquals(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    		// Wait for all requests to finish, which are bounded by the RequestTimeout variable.
    		// once NonLongRunningRequestWaitGroup.Wait is invoked, the apiserver is
    		// expected to reject any incoming request with a {503, Retry-After}
    		// response via the WithWaitGroup filter. On the contrary, we observe
    		// that incoming request(s) get a 'connection refused' error, this is
    		// because, at this point, we have called 'Server.Shutdown' and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_3x.md

        behavior was deprecated with RFC 2818 in May 2000 and was recently dropped
        from major web browsers.
     *  New: Honor the `Retry-After` response header. HTTP 503 (Unavailable)
        responses are retried automatically if this header is present and its delay
        is 0 seconds. HTTP 408 (Client Timeout) responses are retried automatically
        if the header is absent or its delay is 0 seconds.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  6. cmd/iam.go

    		loadUserCalled = true
    
    		u, ok = sys.store.GetUser(accessKey)
    	}
    
    	if !ok && loadUserCalled && err != nil {
    		iamLogOnceIf(ctx, err, accessKey)
    
    		// return 503 to application
    		return u, false, errIAMNotInitialized
    	}
    
    	return u, ok && u.Credentials.IsValid(), nil
    }
    
    // GetUser - get user credentials
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_PTHREAD_COND_DESTROY            = 0x1F4 // 500
    	SYS_PTHREAD_COND_SIGNAL             = 0x1F5 // 501
    	SYS_PTHREAD_COND_BROADCAST          = 0x1F6 // 502
    	SYS_PTHREAD_COND_WAIT               = 0x1F7 // 503
    	SYS_PTHREAD_COND_TIMEDWAIT          = 0x1F8 // 504
    	SYS_PTHREAD_CREATE                  = 0x1F9 // 505
    	SYS_PTHREAD_DETACH                  = 0x1FA // 506
    	SYS_PTHREAD_EQUAL                   = 0x1FB // 507
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %502 = "tf.Tile"(%359, %501) {device = ""} : (tensor<?x1xi64>, tensor<2xi32>) -> tensor<?x?xi64>
      %503 = "tf.Mul"(%500, %362) {device = ""} : (tensor<i32>, tensor<i32>) -> tensor<i32>
      %504 = "tf.Pack"(%503) {axis = 0 : i64, device = ""} : (tensor<i32>) -> tensor<1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertCached(false, 416)
        assertCached(false, 417)
        assertCached(false, 418)
        assertCached(false, 500)
        assertCached(true, 501)
        assertCached(false, 502)
        assertCached(false, 503)
        assertCached(false, 504)
        assertCached(false, 505)
        assertCached(false, 506)
      }
    
      @Test
      fun responseCachingWith1xxInformationalResponse() {
        assertSubsequentResponseCached(102, 200)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// StatusReasonServiceUnavailable means that the request itself was valid,
    	// but the requested service is unavailable at this time.
    	// Retrying the request after some time might succeed.
    	// Status code 503
    	StatusReasonServiceUnavailable StatusReason = "ServiceUnavailable"
    )
    
    // StatusCause provides more information about an api.Status failure, including
    // cases when multiple errors are encountered.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
Back to top