Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for 8032 (0.03 sec)

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

    	SYS_UNUSED28                     = 4028
    	SYS_PAUSE                        = 4029
    	SYS_UTIME                        = 4030
    	SYS_STTY                         = 4031
    	SYS_GTTY                         = 4032
    	SYS_ACCESS                       = 4033
    	SYS_NICE                         = 4034
    	SYS_FTIME                        = 4035
    	SYS_SYNC                         = 4036
    	SYS_KILL                         = 4037
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go

    	SYS_UNUSED28                     = 4028
    	SYS_PAUSE                        = 4029
    	SYS_UTIME                        = 4030
    	SYS_STTY                         = 4031
    	SYS_GTTY                         = 4032
    	SYS_ACCESS                       = 4033
    	SYS_NICE                         = 4034
    	SYS_FTIME                        = 4035
    	SYS_SYNC                         = 4036
    	SYS_KILL                         = 4037
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. docs/ko/docs/tutorial/security/get-current-user.md

    그러나 동일한 보안 시스템을 사용하여 수천 개의 엔드포인트(*경로 작동*)를 가질 수 있습니다.
    
    그리고 그들 모두(또는 원하는 부분)는 이러한 의존성 또는 생성한 다른 의존성을 재사용하는 이점을 얻을 수 있습니다.
    
    그리고 이 수천 개의 *경로 작동*은 모두 3줄 정도로 줄일 수 있습니다.
    
    === "파이썬 3.7 이상"
    
        ```Python hl_lines="30-32"
        {!> ../../../docs_src/security/tutorial002.py!}
        ```
    
    === "파이썬 3.10 이상"
    
        ```Python hl_lines="28-30"
        {!> ../../../docs_src/security/tutorial002_py310.py!}
        ```
    
    ## 요약
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    }
    
    // Parse the given string and try to convert it to an int32 integer before
    // setting it as a string value.
    func Parse(val string) IntOrString {
    	i, err := strconv.ParseInt(val, 10, 32)
    	if err != nil {
    		return FromString(val)
    	}
    	return FromInt32(int32(i))
    }
    
    // UnmarshalJSON implements the json.Unmarshaller interface.
    func (intstr *IntOrString) UnmarshalJSON(value []byte) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. pkg/config/validation/agent/extensionprovider.go

    			return err
    		}
    	}
    	return nil
    }
    
    func validateExtensionProviderEnvoyExtAuthzStatusOnError(status string) error {
    	if status == "" {
    		return nil
    	}
    	code, err := strconv.ParseInt(status, 10, 32)
    	if err != nil {
    		return fmt.Errorf("invalid statusOnError value %s: %v", status, err)
    	}
    	if _, found := envoytypev3.StatusCode_name[int32(code)]; !found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv12-ECDHE-RSA-AES

    00000020  df d6 5e cb 85 3e 0c f7  48 69 95 77 29 95 88 1c  |..^..>..Hi.w)...|
    00000030  1e 76 8a c3 ea 69 07 75  46 68 09 50 fa 30 0a 57  |.v...i.uFh.P.0.W|
    00000040  84 e3 c7 d9 34 c4 40 32  7b f4 95                 |....4.@2{..|
    >>> Flow 5 (client to server)
    00000000  17 03 03 00 30 00 00 00  00 00 00 00 00 00 00 00  |....0...........|
    00000010  00 00 00 00 00 24 6d d9  23 68 ad 8d 64 2e 3a d5  |.....$m.#h..d.:.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler_test.go

    			# TYPE apiserver_rerouted_request_total counter
    			apiserver_rerouted_request_total{code="503"} 2
    			`,
    		},
    	}
    
    	metrics.Register()
    	for _, tt := range testCases {
    		t.Run(tt.desc, func(t *testing.T) {
    			lastHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. pkg/config/security/security.go

    			}
    		}
    	}
    	return errs.ErrorOrNil()
    }
    
    func ValidatePorts(ports []string) error {
    	var errs *multierror.Error
    	for _, port := range ports {
    		p, err := strconv.ParseUint(port, 10, 32)
    		if err != nil || p > 65535 {
    			errs = multierror.Append(errs, fmt.Errorf("bad port (%s): %v", port, err))
    		}
    	}
    	return errs.ErrorOrNil()
    }
    
    func validateMapKey(key string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv13-X25519-ECDHE

    00000170  1e 58 fc 67 5e bb 69 a1  ae 1d 6d bc b4 80 b9 71  |.X.g^.i...m....q|
    00000180  1a 11 12 35 6a 2a 0c dc  b3 b5 4b 0a 06 a7 8b be  |...5j*....K.....|
    00000190  38 4b 70 32 d4 51 e3 99  5b 60 28 e7 9a 60 90 6b  |8Kp2.Q..[`(..`.k|
    000001a0  1f 3a 9b 4b 66 fd e6 76  b5 8c 29 c3 36 ae a8 81  |.:.Kf..v..).6...|
    000001b0  7e 7c bf e7 46 7d 13 27  0d 38 75 f0 15 e1 64 93  |~|..F}.'.8u...d.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/extauthz.go

    }
    
    func parseStatusOnError(status string) (*envoytypev3.HttpStatus, error) {
    	if status == "" {
    		return nil, nil
    	}
    	code, err := strconv.ParseInt(status, 10, 32)
    	if err != nil {
    		return nil, multierror.Prefix(err, fmt.Sprintf("invalid statusOnError %q:", status))
    	}
    	if _, found := envoytypev3.StatusCode_name[int32(code)]; !found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top