Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 982 for AsObject (0.22 sec)

  1. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

          }
    
        fun build(): HeldCertificate {
          // Subject keys & identity.
          val subjectKeyPair = keyPair ?: generateKeyPair()
          val subjectPublicKeyInfo =
            CertificateAdapters.subjectPublicKeyInfo.fromDer(
              subjectKeyPair.public.encoded.toByteString(),
            )
          val subject: List<List<AttributeTypeAndValue>> = subject()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TransformProgressEventCrossVersionSpec.groovy

            with(transformOperation) {
                assertIsTransform()
                descriptor.transformer.displayName == "FileSizer"
                descriptor.subject.displayName == transformTarget()
                successful
            }
            with(events.operation("Task :app:resolve")) {
                assertIsTask()
                successful
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelViewClosedException.java

    import org.gradle.model.internal.type.ModelType;
    
    /**
     * Thrown when at attempt is made to mutate a subject of a rule after the rule has completed.
     * <p>
     * This can potentially happen when a reference to the subject is retained during a rule and then used afterwards,
     * Such as when an anonymous inner class or closure “closes over” the subject.
     */
    @Incubating
    public class ModelViewClosedException extends ReadOnlyModelViewException {
    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/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)
  6. 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)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

            DeprecateAction(String subject) {
                super(subject);
            }
    
            @Override
            protected String createDefaultDeprecationIdDisplayName() {
                return subject;
            }
    
            @Override
            String formatSummary(String subject) {
                return String.format("%s has been deprecated.", subject);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelRegistrations.java

                private final ModelReference<Object> subject;
                private final DescriptorReference descriptorReference;
    
                public AbstractBuilderAction(ModelReference<Object> subject, DescriptorReference descriptorReference) {
                    this.subject = subject;
                    this.descriptorReference = descriptorReference;
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top