Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for tolen (0.05 sec)

  1. cmd/api-errors.go

    	ErrParseExpectedTokenType: {
    		Code:           "ParseExpectedTokenType",
    		Description:    "Did not find the expected token in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseExpected2TokenTypes: {
    		Code:           "ParseExpected2TokenTypes",
    		Description:    "Did not find the expected token in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseExpectedNumber: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	}
    }
    
    // recordTypedefs remembers in p.typedefs all the typedefs used in dtypes and its children.
    func (p *Package) recordTypedefs(dtype dwarf.Type, pos token.Pos) {
    	p.recordTypedefs1(dtype, pos, map[dwarf.Type]bool{})
    }
    
    func (p *Package) recordTypedefs1(dtype dwarf.Type, pos token.Pos, visited map[dwarf.Type]bool) {
    	if dtype == nil {
    		return
    	}
    	if visited[dtype] {
    		return
    	}
    	visited[dtype] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. tests/integration/security/authz_test.go

    							path:  "/",
    							token: jwt.TokenIssuer1,
    							allow: true,
    						},
    						{
    							host:  "jwt-only.com",
    							path:  "/",
    							token: jwt.TokenIssuer2,
    							allow: false,
    						},
    						{
    							host:  fmt.Sprintf("jwt-and-%s-%s-only.com", allowed.Config().Service, allowed.Config().Namespace.Name()),
    							path:  "/",
    							token: jwt.TokenIssuer1,
    							allow: allow,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                    for (String token : optionValue.split(",")) {
                        String selector = token.trim();
                        boolean active = true;
                        if (selector.charAt(0) == '-' || selector.charAt(0) == '!') {
                            active = false;
                            selector = selector.substring(1);
                        } else if (token.charAt(0) == '+') {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

    			}, "testdata/requestauthn/waypoint-jwt.yaml.tmpl").ApplyOrFail(t)
    
    			t.NewSubTest("deny without token").Run(func(t framework.TestContext) {
    				opt := opt.DeepCopy()
    				opt.HTTP.Path = "/"
    				opt.Check = check.Status(http.StatusForbidden)
    				src.CallOrFail(t, opt)
    			})
    
    			t.NewSubTest("allow with sub-1 token").Run(func(t framework.TestContext) {
    				opt := opt.DeepCopy()
    				opt.HTTP.Path = "/"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

    }
    
    // Test that ordering token resource of tf.CollectiveReduceV2 op is removed.
    // CHECK-LABEL: func @decompose_collective_reduce_v2_op
    // CHECK-SAME: [[TOKEN:%.+]]: tensor<!tf_type.resource
    func.func @decompose_collective_reduce_v2_op(%input: tensor<3xi64>,
      %group_size: tensor<i32>,
      %group_key: tensor<i32>,
      %instance_key: tensor<i32>,
      %token: tensor<!tf_type.resource<tensor<f32>>>
    ) -> tensor<3xi64> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_mounter_test.go

    							Audience: "",
    						},
    					},
    				},
    			},
    			wantVolumeContext: map[string]string{"csi.storage.k8s.io/serviceAccount.tokens": `{"":{"token":"test-ns:test-service-account:3600:[api]","expirationTimestamp":"1970-01-01T00:00:01Z"}}`},
    		},
    		{
    			desc: "one token with non-empty string as audience",
    			driver: &storage.CSIDriver{
    				ObjectMeta: meta.ObjectMeta{
    					Name: testDriver,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    	bgScanCredit := gcController.bgScanCredit.Load()
    	stolen := int64(0)
    	if bgScanCredit > 0 {
    		if bgScanCredit < scanWork {
    			stolen = bgScanCredit
    			gp.gcAssistBytes += 1 + int64(assistBytesPerWork*float64(stolen))
    		} else {
    			stolen = scanWork
    			gp.gcAssistBytes += debtBytes
    		}
    		gcController.bgScanCredit.Add(-stolen)
    
    		scanWork -= stolen
    
    		if scanWork == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta4_BootstrapTokenDiscovery_To_kubeadm_BootstrapTokenDiscovery(in *BootstrapTokenDiscovery, out *kubeadm.BootstrapTokenDiscovery, s conversion.Scope) error {
    	out.Token = in.Token
    	out.APIServerEndpoint = in.APIServerEndpoint
    	out.CACertHashes = *(*[]string)(unsafe.Pointer(&in.CACertHashes))
    	out.UnsafeSkipCAVerification = in.UnsafeSkipCAVerification
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. docs/bucket/notifications/README.md

    subject*                          (string)    NATS subscription subject
    username                          (string)    NATS username
    password                          (string)    NATS password
    token                             (string)    NATS token
    tls                               (on|off)    set to 'on' to enable TLS
    tls_skip_verify                   (on|off)    trust server TLS without verification, defaults to "on" (verify)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top