Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 135 for subjects (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    			},
    			DistinguisherMethod: &flowcontrol.FlowDistinguisherMethod{
    				Type: flowcontrol.FlowDistinguisherMethodByUserType,
    			},
    			Rules: []flowcontrol.PolicyRulesWithSubjects{
    				{
    					Subjects: []flowcontrol.Subject{
    						{
    							Kind: flowcontrol.SubjectKindUser,
    							User: &flowcontrol.UserSubject{
    								Name: user,
    							},
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    		if err != nil {
    			return nil, err
    		}
    	}
    
    	var subject pkix.RDNSequence
    	if rest, err := asn1.Unmarshal(in.TBSCSR.Subject.FullBytes, &subject); err != nil {
    		return nil, err
    	} else if len(rest) != 0 {
    		return nil, errors.New("x509: trailing data after X.509 Subject")
    	}
    
    	out.Subject.FillFromRDNSequence(&subject)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

         * @param tdom
         * @param thost
         * @return
         */
        protected boolean matches ( CIFSContext tf, String thost, String tdom ) {
            return Objects.equals(this.getCredentials(), tf.getCredentials()) && Objects.equals(this.targetHost, thost)
                    && Objects.equals(this.targetDomain, tdom);
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  4. docs/bucket/notifications/README.md

    ```
    KEY:
    notify_nats[:name]  publish bucket notifications to NATS endpoints
    
    ARGS:
    address*                          (address)   NATS server address e.g. '0.0.0.0:4222'
    subject*                          (string)    NATS subscription subject
    username                          (string)    NATS username
    password                          (string)    NATS password
    token                             (string)    NATS token
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // If a persisted webhook configuration specifies allowed versions and does not
      // include any versions known to the API Server, calls to the webhook will fail
      // and be subject to the failure policy.
      // +listType=atomic
      repeated string admissionReviewVersions = 8;
    
      // reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // If a persisted webhook configuration specifies allowed versions and does not
      // include any versions known to the API Server, calls to the webhook will fail
      // and be subject to the failure policy.
      // Default to `['v1beta1']`.
      // +optional
      // +listType=atomic
      repeated string admissionReviewVersions = 8;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    // ScopeType specifies a scope for a Rule.
    type ScopeType = v1.ScopeType
    
    const (
    	// ClusterScope means that scope is limited to cluster-scoped objects.
    	// Namespace objects are cluster-scoped.
    	ClusterScope ScopeType = v1.ClusterScope
    	// NamespacedScope means that scope is limited to namespaced objects.
    	NamespacedScope ScopeType = v1.NamespacedScope
    	// AllScopes means that all scopes are included.
    	AllScopes ScopeType = v1.AllScopes
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    // ScopeType specifies a scope for a Rule.
    // +enum
    type ScopeType string
    
    const (
    	// ClusterScope means that scope is limited to cluster-scoped objects.
    	// Namespace objects are cluster-scoped.
    	ClusterScope ScopeType = "Cluster"
    	// NamespacedScope means that scope is limited to namespaced objects.
    	NamespacedScope ScopeType = "Namespaced"
    	// AllScopes means that all scopes are included.
    	AllScopes ScopeType = "*"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    			// is freed when all subobjects are unreachable. The subobjects
    			// must be noscan (don't have pointers), this ensures that
    			// the amount of potentially wasted memory is bounded.
    			//
    			// Size of the memory block used for combining (maxTinySize) is tunable.
    			// Current setting is 16 bytes, which relates to 2x worst case memory
    			// wastage (when all but one subobjects are unreachable).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                            it.className == "${AbstractTask.name}" && it.methodName == getSharedResources.name
                        }
                        objects.newInstance(NestedBean)
                    })
                    @Internal
                    final Property<String> subject = project.objects.property(String).value("World")
                }
    
                tasks.register('hello', Greeter) {
                    it.usesService(serviceProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top