Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,360 for AsObject (0.23 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Validate.java

    import java.lang.annotation.Target;
    
    /**
     * Denotes that the {@link RuleSource} method rule carrying this annotation validates the rule subject.
     * <p>
     * Validate rules execute after {@link Finalize} rules, but before rule subject is used as an input.
     * The first parameter of the rule is the rule subject, which is <b>immutable</b>.
     * <p>
     * Please see {@link RuleSource} for more information on method rules.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway_test.go

    						},
    					},
    				},
    				RequireClientCertificate: proto.BoolFalse,
    			},
    		},
    		{ // Credential name and subject alternative names are specified, generate SDS configs for
    			// key/cert and static validation context config.
    			name: "credential name subject alternative name no key no cert tls SIMPLE",
    			server: &networking.Server{
    				Hosts: []string{"httpbin.example.com", "bookinfo.example.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/rbac/subject_locator_test.go

    	rbacregistryvalidation "k8s.io/kubernetes/pkg/registry/rbac/validation"
    )
    
    func TestSubjectLocator(t *testing.T) {
    	type actionToSubjects struct {
    		action   authorizer.Attributes
    		subjects []rbacv1.Subject
    	}
    
    	tests := []struct {
    		name                string
    		roles               []*rbacv1.Role
    		roleBindings        []*rbacv1.RoleBinding
    		clusterRoles        []*rbacv1.ClusterRole
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Defaults.java

    /**
     * Denotes that the {@link RuleSource} method rule carrying this annotation initializes the rule subject with default values.
     * <p>
     * Default rules execute first for a given subject, just after the subject has been created but before {@link Model} rules and {@link Mutate} rules.
     * The first parameter of the rule is the rule subject, which is mutable for the duration of the rule.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/transform/internal/DefaultTransformOperationDescriptor.java

        private final SubjectDescriptor subject;
        private final Set<OperationDescriptor> dependencies;
    
        public DefaultTransformOperationDescriptor(InternalTransformDescriptor descriptor, OperationDescriptor parent, Set<OperationDescriptor> dependencies) {
            super(descriptor, parent);
            this.transformer = new DefaultTransformerDescriptor(descriptor.getTransformerName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/bootstraptoken/node/tlsbootstrap_test.go

    				},
    				RoleRef: rbac.RoleRef{
    					APIGroup: rbac.GroupName,
    					Kind:     "ClusterRole",
    					Name:     constants.NodeBootstrapperClusterRoleName,
    				},
    				Subjects: []rbac.Subject{
    					{
    						Kind: rbac.GroupKind,
    						Name: constants.NodeBootstrapTokenAuthGroup,
    					},
    				},
    			}),
    		},
    		{
    			name: "Create new ClusterRoleBindings",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 04:16:31 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. pkg/apis/rbac/v1alpha1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddConversionFunc((*rbac.Subject)(nil), (*v1alpha1.Subject)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_rbac_Subject_To_v1alpha1_Subject(a.(*rbac.Subject), b.(*v1alpha1.Subject), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddConversionFunc((*v1alpha1.Subject)(nil), (*rbac.Subject)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 23.6K bytes
    - Viewed (0)
  8. pkg/controller/certificates/authority/authority.go

    	}
    
    	serialNumber, err := rand.Int(rand.Reader, serialNumberLimit)
    	if err != nil {
    		return nil, fmt.Errorf("unable to generate a serial number for %s: %v", cr.Subject.CommonName, err)
    	}
    
    	tmpl := &x509.Certificate{
    		SerialNumber:       serialNumber,
    		Subject:            cr.Subject,
    		DNSNames:           cr.DNSNames,
    		IPAddresses:        cr.IPAddresses,
    		EmailAddresses:     cr.EmailAddresses,
    		URIs:               cr.URIs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 23 19:36:11 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  9. internal/event/target/nats.go

    		if target.args.Streaming.Async {
    			_, err = target.stanConn.PublishAsync(target.args.Subject, data, nil)
    		} else {
    			err = target.stanConn.Publish(target.args.Subject, data)
    		}
    	} else {
    		if target.jstream != nil {
    			_, err = target.jstream.Publish(target.args.Subject, data)
    		} else {
    			err = target.natsConn.Publish(target.args.Subject, data)
    		}
    	}
    	return err
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/transform/TransformOperationDescriptor.java

             */
            String getDisplayName();
    
        }
    
        /**
         * Describes the subject (artifact or file) of a transform operation.
         *
         * @since 5.1
         */
        interface SubjectDescriptor {
    
            /**
             * Returns the display name of this subject.
             */
            String getDisplayName();
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top