Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 131 for 8032 (0.07 sec)

  1. pilot/pkg/security/authz/model/model_test.go

    - source:
        requestPrincipals: ["td-1/ns/foo/sa/sleep-3"]
        notRequestPrincipals: ["td-1/ns/foo/sa/sleep-4"]
    to:
    - operation:
        ports: ["8001"]
        notPorts: ["8002"]
    - operation:
        ports: ["8003"]
        notPorts: ["8004"]
    when:
    - key: "source.principal"
      values: ["td-1/ns/foo/sa/httpbin-1"]
      notValues: ["td-1/ns/foo/sa/httpbin-2"]
    - key: "destination.ip"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/arg.go

    //     a post-index immediate offset, encoded in the "size" field. It can have the following values:
    //       #4 when size = 00
    //       #8 when size = 01
    //       #16 when size = 10
    //       #32 when size = 11
    //
    // - arg_immediate_0_127_CRm_op2:
    //     an immediate encoded in "CRm:op2" in the range 0 to 127
    //
    // - arg_immediate_bitmask_64_N_imms_immr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 20K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/internal/buildid/buildid.go

    		if _, err := io.ReadFull(f, hdr[:]); err != nil {
    			return "", err
    		}
    		// Read member name length.
    		namLenStr := strings.TrimSpace(string(hdr[108:112]))
    		namLen, err := strconv.ParseInt(namLenStr, 10, 32)
    		if err != nil {
    			return bad()
    		}
    		if namLen == 10 {
    			var nam [10]byte
    			if _, err := io.ReadFull(f, nam[:]); err != nil {
    				return "", err
    			}
    			if string(nam[:]) == "_buildid.o" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 28 21:52:53 UTC 2020
    - 9K bytes
    - Viewed (0)
  7. docs/ja/docs/tutorial/security/get-current-user.md

    しかし、同じセキュリティシステムを使って何千ものエンドポイント(*path operations*)を持つことができます。
    
    そして、それらエンドポイントのすべて(必要な、どの部分でも)がこうした依存関係や、あなたが作成する別の依存関係を再利用する利点を享受できるのです。
    
    さらに、こうした何千もの *path operations* は、たった3行で表現できるのです:
    
    ```Python hl_lines="30-32"
    {!../../../docs_src/security/tutorial002.py!}
    ```
    
    ## まとめ
    
    これで、 *path operation関数* の中で直接現在のユーザーを取得できるようになりました。
    
    既に半分のところまで来ています。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jan 28 18:36:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    	// Copy config since options set in the command line should not persist.
    	vcopy := currentConfig()
    
    	var focus, ignore string
    	for i := 0; i < len(args); i++ {
    		t := args[i]
    		if n, err := strconv.ParseInt(t, 10, 32); err == nil {
    			vcopy.NodeCount = int(n)
    			continue
    		}
    		switch t[0] {
    		case '>':
    			outputFile := t[1:]
    			if outputFile == "" {
    				i++
    				if i >= len(args) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/compute_test.go

    			before: map[string][]string{
    				"v1.10.1": {"node1"},
    			},
    			after:    "v1.10.3",
    			expected: true,
    		},
    		{
    			name: "upgrade from v1.10.1 and v1.10.3/2 to v1.10.3 is available",
    			before: map[string][]string{
    				"v1.10.1": {"node1"},
    				"v1.10.3": {"node2", "node3"},
    			},
    			after:    "v1.10.3",
    			expected: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. src/cmd/pprof/pprof.go

    	values := u.Query()
    	if duration > 0 {
    		values.Set("seconds", fmt.Sprint(int(duration.Seconds())))
    	} else {
    		if urlSeconds := values.Get("seconds"); urlSeconds != "" {
    			if us, err := strconv.ParseInt(urlSeconds, 10, 32); err == nil {
    				duration = time.Duration(us) * time.Second
    			}
    		}
    	}
    	if timeout <= 0 {
    		if duration > 0 {
    			timeout = duration + duration/2
    		} else {
    			timeout = 60 * time.Second
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top