Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 147 for 99$ (0.01 sec)

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

    var sysctlMib = []mibentry{
    	{"ddb.console", []_C_int{9, 6}},
    	{"ddb.log", []_C_int{9, 7}},
    	{"ddb.max_line", []_C_int{9, 3}},
    	{"ddb.max_width", []_C_int{9, 2}},
    	{"ddb.panic", []_C_int{9, 5}},
    	{"ddb.profile", []_C_int{9, 9}},
    	{"ddb.radix", []_C_int{9, 1}},
    	{"ddb.tab_stop_width", []_C_int{9, 4}},
    	{"ddb.trigger", []_C_int{9, 8}},
    	{"fs.posix.setuid", []_C_int{3, 1, 1}},
    	{"hw.allowpowerdown", []_C_int{6, 22}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    		TLSConfig:      tlsConfig,
    
    		IdleTimeout:       90 * time.Second, // matches http.DefaultTransport keep-alive timeout
    		ReadHeaderTimeout: 32 * time.Second, // just shy of requestTimeoutUpperBound
    	}
    
    	// At least 99% of serialized resources in surveyed clusters were smaller than 256kb.
    	// This should be big enough to accommodate most API POST requests in a single frame,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    			getRequirement("this-is-another-dns.domain.com/key-with-dash", selection.In, sets.NewString("so", "what"), t),
    		}, true, true},
    		{"0.1.2.domain/99 notin (10.10.100.1, tick.tack.clock)", internalSelector{
    			getRequirement("0.1.2.domain/99", selection.NotIn, sets.NewString("10.10.100.1", "tick.tack.clock"), t),
    		}, true, true},
    		{"foo  in	 (abc)", internalSelector{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-ECDSA

    000002d0  55 62 f4 da 8f 60 db f7  76 80 d5 4d 37 f6 43 49  |Ub...`..v..M7.CI|
    000002e0  95 3d 96 f6 e2 fd a4 07  ae 24 8c fa bd 02 41 20  |.=.......$....A |
    000002f0  a1 50 78 a3 dd 99 c0 cf  74 f1 c0 79 b1 13 9d bc  |.Px.....t..y....|
    00000300  0b 37 cf 7c 09 11 b8 a4  71 65 e8 be ff 3a b9 85  |.7.|....qe...:..|
    00000310  cd b4 30 f8 1f d6 2e 83  96 6c 01 3e d2 00 a7 5b  |..0......l.>...[|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_openbsd_amd64.go

    	SYS_SOCKET         = 97  // { int sys_socket(int domain, int type, int protocol); }
    	SYS_CONNECT        = 98  // { int sys_connect(int s, const struct sockaddr *name, \
    	SYS_GETDENTS       = 99  // { int sys_getdents(int fd, void *buf, size_t buflen); }
    	SYS_GETPRIORITY    = 100 // { int sys_getpriority(int which, id_t who); }
    	SYS_PIPE2          = 101 // { int sys_pipe2(int *fdp, int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.2K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_openbsd_arm64.go

    	SYS_SOCKET         = 97  // { int sys_socket(int domain, int type, int protocol); }
    	SYS_CONNECT        = 98  // { int sys_connect(int s, const struct sockaddr *name, \
    	SYS_GETDENTS       = 99  // { int sys_getdents(int fd, void *buf, size_t buflen); }
    	SYS_GETPRIORITY    = 100 // { int sys_getpriority(int which, id_t who); }
    	SYS_PIPE2          = 101 // { int sys_pipe2(int *fdp, int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 17:34:54 UTC 2019
    - 14.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransactionTest.groovy

        }
    
        private boolean isEmptyDirectory(File file) {
            file.listFiles().length == 0
        }
    
        private List<String> listAllFiles(File file) {
            return Files.find(file.toPath(), 99, { path, attributes -> attributes.isRegularFile() })
                .collect { file.toPath().relativize(it).toString().replace("\\", "/") }
                .toSorted()
        }
    
        private boolean hasOnlyDirectories(File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

            where:
            source | target | sourceOut | targetOut
            '9'    | '10'   | '9'       | '10'
            '9'    | 'none' | '9'       | '9'
            'none' | 'none' | '11'      | '11'
        }
    
        def "configuring toolchain on java extension with source and target compatibility is supported"() {
            def jdk = Jvm.current()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_openbsd_mips64.go

    	SYS_SOCKET         = 97  // { int sys_socket(int domain, int type, int protocol); }
    	SYS_CONNECT        = 98  // { int sys_connect(int s, const struct sockaddr *name, \
    	SYS_GETDENTS       = 99  // { int sys_getdents(int fd, void *buf, size_t buflen); }
    	SYS_GETPRIORITY    = 100 // { int sys_getpriority(int which, id_t who); }
    	SYS_PIPE2          = 101 // { int sys_pipe2(int *fdp, int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 14.9K bytes
    - Viewed (0)
  10. test/fixedbugs/issue2615.go

    		return 95
    	} else if x[1]&(1<<32) != 0 {
    		return 96
    	} else if x[1]&(1<<33) != 0 {
    		return 97
    	} else if x[1]&(1<<34) != 0 {
    		return 98
    	} else if x[1]&(1<<35) != 0 {
    		return 99
    	} else if x[1]&(1<<36) != 0 {
    		return 100
    	} else if x[1]&(1<<37) != 0 {
    		return 101
    	} else if x[1]&(1<<38) != 0 {
    		return 102
    	} else if x[1]&(1<<39) != 0 {
    		return 103
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 11.5K bytes
    - Viewed (0)
Back to top