Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 141 for 404s (0.07 sec)

  1. cmd/s3-zip-handlers.go

    			// whether you also have the s3:ListBucket
    			// permission.
    			// * If you have the s3:ListBucket permission
    			//   on the bucket, Amazon S3 will return an
    			//   HTTP status code 404 ("no such key")
    			//   error.
    			// * if you don’t have the s3:ListBucket
    			//   permission, Amazon S3 will return an HTTP
    			//   status code 403 ("access denied") error.`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/GcsClient.java

                // If we throw, an attempt to publish will fail altogether even if we use ResourceExceptions#getMissing(uri).
                if (e.getStatusCode() == 404) {
                    return null;
                }
                throw ResourceExceptions.getFailed(uri, e);
            } catch (IOException e) {
                throw ResourceExceptions.getFailed(uri, e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:20 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/http2/hpack/static_table.go

    		{Name: ":status", Value: "206", Sensitive: false},
    		{Name: ":status", Value: "304", Sensitive: false},
    		{Name: ":status", Value: "400", Sensitive: false},
    		{Name: ":status", Value: "404", Sensitive: false},
    		{Name: ":status", Value: "500", Sensitive: false},
    		{Name: "accept-charset", Value: "", Sensitive: false},
    		{Name: "accept-encoding", Value: "gzip, deflate", Sensitive: false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go

    	SYS_WAIT4_NOCANCEL                 = 400
    	SYS_RECVMSG_NOCANCEL               = 401
    	SYS_SENDMSG_NOCANCEL               = 402
    	SYS_RECVFROM_NOCANCEL              = 403
    	SYS_ACCEPT_NOCANCEL                = 404
    	SYS_MSYNC_NOCANCEL                 = 405
    	SYS_FCNTL_NOCANCEL                 = 406
    	SYS_SELECT_NOCANCEL                = 407
    	SYS_FSYNC_NOCANCEL                 = 408
    	SYS_CONNECT_NOCANCEL               = 409
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go

    	SYS_MSGSND                       = 400
    	SYS_MSGRCV                       = 401
    	SYS_MSGCTL                       = 402
    	SYS_CLOCK_GETTIME64              = 403
    	SYS_CLOCK_SETTIME64              = 404
    	SYS_CLOCK_ADJTIME64              = 405
    	SYS_CLOCK_GETRES_TIME64          = 406
    	SYS_CLOCK_NANOSLEEP_TIME64       = 407
    	SYS_TIMER_GETTIME64              = 408
    	SYS_TIMER_SETTIME64              = 409
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    			exitHandler := make(chan bool, 1)
    			defer close(exitHandler)
    			lastLine := make(chan int, 1)
    
    			sh := HandlerFunc(func(w ResponseWriter, r *Request) {
    				w.WriteHeader(404)
    				w.WriteHeader(404)
    				w.WriteHeader(404)
    				w.WriteHeader(404)
    				_, _, line, _ := runtime.Caller(0)
    				lastLine <- line
    				<-exitHandler
    			})
    
    			if !tt.mustTimeout {
    				exitHandler <- true
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/apiserver.go

    	// It ensures that requests to potential custom resource endpoints while the server hasn't installed all known HTTP paths get a 503 error instead of a 404
    	hasCRDInformerSyncedSignal := make(chan struct{})
    	if err := genericServer.RegisterMuxAndDiscoveryCompleteSignal("CRDInformerHasNotSynced", hasCRDInformerSyncedSignal); err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 14:31:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loadmacho/ldmacho.go

    			}
    
    			if arch.Family == sys.ARM64 && rel.type_ == MACHO_ARM64_RELOC_ADDEND {
    				// Two relocations. This addend will be applied to the next one.
    				rAdd = int64(rel.symnum) << 40 >> 40 // convert unsigned 24-bit to signed 24-bit
    				continue
    			}
    
    			rSize = rel.length
    			rType = objabi.MachoRelocOffset + (objabi.RelocType(rel.type_) << 1) + objabi.RelocType(rel.pcrel)
    			rOff = int32(rel.addr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt

          MockResponse.Builder()
            .status("HTTP/1.1 404 Not Found")
            .build(),
        )
        newWebSocket()
        clientListener.assertFailure(
          404,
          null,
          ProtocolException::class.java,
          "Expected HTTP 101 response but was '404 Not Found'",
        )
      }
    
      @Test
      fun clientTimeoutClosesBody() {
        webServer.enqueue(
          MockResponse.Builder()
            .code(408)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/ntlmssp/Type2Message.java

                }
            }
            int serverLength = server.length;
            byte[] targetInfo = new byte[ ( domainLength > 0 ? domainLength + 4 : 0 ) + ( serverLength > 0 ? serverLength + 4 : 0 ) + 4];
            int offset = 0;
            if ( domainLength > 0 ) {
                writeUShort(targetInfo, offset, 2);
                offset += 2;
                writeUShort(targetInfo, offset, domainLength);
                offset += 2;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.4K bytes
    - Viewed (0)
Back to top