Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for 8032 (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/internal/obj/arm64/doc.go

    64-bit variant, the <shift> is 0, 16, 32 or 48.
    
    The current Go assembler does not accept zero shifts, such as "op $0, Rd" and "op $(0<<(16|32|48)), Rd" instructions.
    
    Examples:
    
    	MOVK $(10<<32), R20     <=>      movk x20, #10, lsl #32
    	MOVZW $(20<<16), R8     <=>      movz w8, #20, lsl #16
    	MOVK $(0<<16), R10 will be reported as an error by the assembler.
    
    Special Cases.
    
    (1) umov is written as VMOV.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. operator/pkg/validate/common.go

    		return util.NewErrs(fmt.Errorf("validatePortNumberString(%s) bad type %T, want string", path, val))
    	}
    	if val.(string) == "*" || val.(string) == "" {
    		return nil
    	}
    	intV, err := strconv.ParseInt(val.(string), 10, 32)
    	if err != nil {
    		return util.NewErrs(fmt.Errorf("%s : %s", path, err))
    	}
    	return validatePortNumber(path, intV)
    }
    
    // validatePortNumber checks whether val is an integer representing a valid port number.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	VPERM2I128 $0x02, AA2, BB2, AA0; VPERM2I128 $0x02, CC2, DD2, BB0; VPERM2I128 $0x13, AA2, BB2, CC0; VPERM2I128 $0x13, CC2, DD2, DD0
    	VPXOR      (8*32)(inp), AA0, AA0; VPXOR (9*32)(inp), BB0, BB0; VPXOR (10*32)(inp), CC0, CC0; VPXOR (11*32)(inp), DD0, DD0
    	VMOVDQU    AA0, (8*32)(oup); VMOVDQU BB0, (9*32)(oup); VMOVDQU CC0, (10*32)(oup); VMOVDQU DD0, (11*32)(oup)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  7. pkg/apis/core/helper/helpers.go

    		// values that start with plus sign (e.g, "+10") or leading zeros (e.g., "008") are not valid.
    		if !validFirstDigit(value) {
    			return 0, fmt.Errorf("invalid value %q", value)
    		}
    
    		i, err := strconv.ParseInt(value, 10, 32)
    		if err != nil {
    			// make sure we default to 0 on error.
    			return 0, err
    		}
    		return int32(i), nil
    	}
    	return 0, nil
    }
    
    func validFirstDigit(str string) bool {
    	if len(str) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv12-ClientCert-ECDSA-ECDSA

    00000290  fd 1e bc 64 8b 01 3f a0  f8 8b 41 be 4d 97 07 6c  |...d..?...A.M..l|
    000002a0  3b 09 74 d6 00 76 b3 a0  c0 d0 92 d0 78 24 d7 b2  |;.t..v......x$..|
    000002b0  1f c0 86 90 59 3a fb a8  e1 f6 80 23 db f7 90 93  |....Y:.....#....|
    000002c0  95 fd 37 14 8c 34 f3 07  10 f8 dd e3 66 28 1c b2  |..7..4......f(..|
    000002d0  a0 14 03 03 00 01 01 16  03 03 00 40 00 00 00 00  |...........@....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. cmd/sftp-server.go

    		case "trusted-user-ca-key":
    			userCaKeyFile = tokens[1]
    		case "password-auth":
    			disablePassAuth, _ = strconv.ParseBool(tokens[1])
    		}
    	}
    
    	if port == 0 {
    		port = 8022 // Default SFTP port, since no port was given.
    	}
    
    	if sshPrivateKey == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. test/inline_big.go

    	a[789] = 0
    	a[790] = 0
    	a[791] = 0
    	a[792] = 0
    	a[793] = 0
    	a[794] = 0
    	a[795] = 0
    	a[796] = 0
    	a[797] = 0
    	a[798] = 0
    	a[799] = 0
    	a[800] = 0
    	a[801] = 0
    	a[802] = 0
    	a[803] = 0
    	a[804] = 0
    	a[805] = 0
    	a[806] = 0
    	a[807] = 0
    	a[808] = 0
    	a[809] = 0
    	a[810] = 0
    	a[811] = 0
    	a[812] = 0
    	a[813] = 0
    	a[814] = 0
    	a[815] = 0
    	a[816] = 0
    	a[817] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top