Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for 304_ (0.04 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt

          Header(TARGET_SCHEME, "http"),
          Header(TARGET_SCHEME, "https"),
          Header(RESPONSE_STATUS, "200"),
          Header(RESPONSE_STATUS, "204"),
          Header(RESPONSE_STATUS, "206"),
          Header(RESPONSE_STATUS, "304"),
          Header(RESPONSE_STATUS, "400"),
          Header(RESPONSE_STATUS, "404"),
          Header(RESPONSE_STATUS, "500"),
          Header("accept-charset", ""),
          Header("accept-encoding", "gzip, deflate"),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go

    	SYS___THREXIT      = 302 // { void sys___threxit(pid_t *notdead); }
    	SYS___THRSIGDIVERT = 303 // { int sys___thrsigdivert(sigset_t sigmask, siginfo_t *info, const struct timespec *timeout); }
    	SYS___GETCWD       = 304 // { int sys___getcwd(char *buf, size_t len); }
    	SYS_ADJFREQ        = 305 // { int sys_adjfreq(const int64_t *freq, int64_t *oldfreq); }
    	SYS_SETRTABLE      = 310 // { int sys_setrtable(int rtableid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go

    	SYS___THREXIT      = 302 // { void sys___threxit(pid_t *notdead); }
    	SYS___THRSIGDIVERT = 303 // { int sys___thrsigdivert(sigset_t sigmask, siginfo_t *info, const struct timespec *timeout); }
    	SYS___GETCWD       = 304 // { int sys___getcwd(char *buf, size_t len); }
    	SYS_ADJFREQ        = 305 // { int sys_adjfreq(const int64_t *freq, int64_t *oldfreq); }
    	SYS_SETRTABLE      = 310 // { int sys_setrtable(int rtableid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go

    	SYS___THREXIT      = 302 // { void sys___threxit(pid_t *notdead); }
    	SYS___THRSIGDIVERT = 303 // { int sys___thrsigdivert(sigset_t sigmask, siginfo_t *info, const struct timespec *timeout); }
    	SYS___GETCWD       = 304 // { int sys___getcwd(char *buf, size_t len); }
    	SYS_ADJFREQ        = 305 // { int sys_adjfreq(const int64_t *freq, int64_t *oldfreq); }
    	SYS_SETRTABLE      = 310 // { int sys_setrtable(int rtableid); }
    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_openbsd_riscv64.go

    	SYS___THREXIT      = 302 // { void sys___threxit(pid_t *notdead); }
    	SYS___THRSIGDIVERT = 303 // { int sys___thrsigdivert(sigset_t sigmask, siginfo_t *info, const struct timespec *timeout); }
    	SYS___GETCWD       = 304 // { int sys___getcwd(char *buf, size_t len); }
    	SYS_ADJFREQ        = 305 // { int sys_adjfreq(const int64_t *freq, int64_t *oldfreq); }
    	SYS_SETRTABLE      = 310 // { int sys_setrtable(int rtableid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go

    	SYS___THREXIT      = 302 // { void sys___threxit(pid_t *notdead); }
    	SYS___THRSIGDIVERT = 303 // { int sys___thrsigdivert(sigset_t sigmask, siginfo_t *info, const struct timespec *timeout); }
    	SYS___GETCWD       = 304 // { int sys___getcwd(char *buf, size_t len); }
    	SYS_ADJFREQ        = 305 // { int sys_adjfreq(const int64_t *freq, int64_t *oldfreq); }
    	SYS_SETRTABLE      = 310 // { int sys_setrtable(int rtableid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

            result.available
            result.component.version == VersionNumber.parse(versionNumber)
    
            where:
            gcc          | versionNumber
            gccMajorOnly | "3.0.0"
            gccNoMinor   | "3.0.4"
            gcc3         | "3.3.4"
            gcc4         | "4.2.1"
        }
    
        def "can scrape version from output of GCC"() {
            expect:
            def result = output(gcc4, gccVerboseOutput('4.2.1', []))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/net/http/clientserver_test.go

    			if ae := r.Header.Get("Accept-Encoding"); ae != "" {
    				t.Errorf("%s Accept-Encoding = %q; want empty", r.Proto, ae)
    			}
    		},
    	}.run(t)
    }
    
    // Test304Responses verifies that 304s don't declare that they're
    // chunking in their response headers and aren't allowed to produce
    // output.
    func Test304Responses(t *testing.T) { run(t, test304Responses) }
    func test304Responses(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_MODFNEXT                 = 302 // { int modfnext(int modid); }
    	SYS_MODFIND                  = 303 // { int modfind(const char *name); }
    	SYS_KLDLOAD                  = 304 // { int kldload(const char *file); }
    	SYS_KLDUNLOAD                = 305 // { int kldunload(int fileid); }
    	SYS_KLDFIND                  = 306 // { int kldfind(const char *file); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_freebsd_386.go

    	SYS_MODFNEXT                 = 302 // { int modfnext(int modid); }
    	SYS_MODFIND                  = 303 // { int modfind(const char *name); }
    	SYS_KLDLOAD                  = 304 // { int kldload(const char *file); }
    	SYS_KLDUNLOAD                = 305 // { int kldunload(int fileid); }
    	SYS_KLDFIND                  = 306 // { int kldfind(const char *file); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
Back to top