Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,360 for AsObject (0.18 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/UnmanagedModelCreationRuleExtractor.java

            private final ModelReference<?> subject;
            private final ModelType<T> type;
            private final List<ModelReference<?>> inputs;
    
            private UnmanagedElementCreationAction(ModelRuleDescriptor descriptor, ModelReference<?> subject, List<ModelReference<?>> inputs, ModelType<T> type) {
                this.subject = subject;
                this.inputs = inputs;
                this.descriptor = descriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/SpecializedMapNodeInitializer.java

        }
    
        @Override
        public Multimap<ModelActionRole, ModelAction> getActions(ModelReference<?> subject, ModelRuleDescriptor descriptor) {
            return getActions(subject, descriptor, schema);
        }
    
        public static <T, E> Multimap<ModelActionRole, ModelAction> getActions(ModelReference<?> subject, ModelRuleDescriptor descriptor, final SpecializedMapSchema<T, E> schema) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

            }
    
            return foundTransforms.get(0);
        }
    
        /**
         * Returns grouped output for the given transformer type and transform subject.
         */
        public GroupedTransformOutputFixture transform(String transformer, String subject) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

            then:
            bindings.getRulesWithSubject(nodeAtState("a", ModelNode.State.Mutated)) as List == [rule]
            rule.subjectBinding.boundTo == node
        }
    
        def "locates the subject of a rule by-path when subject added after rule"() {
            when:
            def node = node("a")
            def rule = rule("a", ModelNode.State.Mutated)
            bindings.add(rule)
    
            then:
            !rule.subjectBinding.bound
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildResultLoggerTest.groovy

    import org.gradle.internal.logging.text.TestStyledTextOutputFactory
    import org.gradle.internal.time.Clock
    import org.gradle.util.internal.TextUtil
    import spock.lang.Specification
    import spock.lang.Subject
    
    @Subject(BuildResultLogger)
    class BuildResultLoggerTest extends Specification {
        private StyledTextOutputFactory textOutputFactory = new TestStyledTextOutputFactory()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/apis/rbac/v1alpha1/conversion.go

    // but we don't want an client library (which must include types), depending on a server library
    const allAuthenticated = "system:authenticated"
    
    func Convert_v1alpha1_Subject_To_rbac_Subject(in *rbacv1alpha1.Subject, out *api.Subject, s conversion.Scope) error {
    	if err := autoConvert_v1alpha1_Subject_To_rbac_Subject(in, out, s); err != nil {
    		return err
    	}
    
    	// specifically set the APIGroup for the three subjects recognized in v1alpha1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 18:30:51 UTC 2017
    - 2.8K bytes
    - Viewed (0)
Back to top