Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 485 for light (0.07 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/AbstractHttpsRepoResolveIntegrationTest.groovy

            fails "libs"
    
            then:
            failure.assertHasCause("Could not GET '${server.uri}/repo1/my-group/my-module/1.0/")
            // exact error might vary depending on JVM version and OS
            failure.assertThatCause(matchesRegexp("Got (socket|SSL handshake) exception during request. It might be caused by SSL misconfiguration"))
        }
    
        def "build fails when client has invalid ssl configuration and has underlying cause in output"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4.puml

    !define Rel_Left(e_from,e_to, e_label, e_techn) Rel_L(e_from,e_to, e_label, e_techn)
    
    !define Rel_R(e_from,e_to, e_label) Rel_(e_from,e_to, e_label, "-RIGHT->")
    !define Rel_R(e_from,e_to, e_label, e_techn) Rel_(e_from,e_to, e_label, e_techn, "-RIGHT->")
    !define Rel_Right(e_from,e_to, e_label) Rel_R(e_from,e_to, e_label)
    !define Rel_Right(e_from,e_to, e_label, e_techn) Rel_R(e_from,e_to, e_label, e_techn)
    
    ' Layout Helpers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/OrElseValueProducer.java

            this(context, left, right, right.getProducer());
        }
    
        private OrElseValueProducer(EvaluationContext.ScopeContext context, ProviderInternal<?> left, @Nullable ProviderInternal<?> right, ValueSupplier.ValueProducer rightProducer) {
            this.owner = Objects.requireNonNull(context.getOwner());
            this.left = left;
            this.right = right;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/AbstractIntersection.java

            return (leftType.isInstance(left) && rightType.isInstance(right))
                    || (leftType.isInstance(right) && rightType.isInstance(left));
        }
    
        @Override
        @Nullable
        public ExcludeSpec intersect(ExcludeSpec left, ExcludeSpec right, ExcludeFactory factory) {
            if (leftType.isInstance(left) && rightType.isInstance(right)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 21:03:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/OrElseProvider.java

        private final ProviderInternal<? extends T> right;
    
        public OrElseProvider(ProviderInternal<T> left, ProviderInternal<? extends T> right) {
            this.left = left;
            this.right = right;
        }
    
        @Override
        protected String toStringNoReentrance() {
            return String.format("or(%s, %s)", left, right);
        }
    
        @Nullable
        @Override
        public Class<T> getType() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:42 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/CachingExcludeFactory.java

            }
    
            private ExcludePair(ExcludeSpec left, ExcludeSpec right) {
                this.left = left;
                this.right = right;
                this.hashCode = 31 * left.hashCode() + right.hashCode();
            }
    
            @Override
            public boolean equals(Object o) {
                if (this == o) {
                    return true;
                }
                if (o == null || getClass() != o.getClass()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Unions.java

            } else if (right instanceof GroupExclude) {
                return tryGroupUnion((GroupExclude) right, left);
            }
            if (left instanceof ModuleSetExclude) {
                return tryModuleSetUnion((ModuleSetExclude) left, right);
            } else if (right instanceof ModuleSetExclude) {
                return tryModuleSetUnion((ModuleSetExclude) right, left);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/SubtractingFileCollection.java

        private final AbstractFileCollection left;
        private final FileCollection right;
    
        public SubtractingFileCollection(AbstractFileCollection left, FileCollection right) {
            super(left.taskDependencyFactory, left.patternSetFactory);
            this.left = left;
            this.right = right;
        }
    
        public AbstractFileCollection getLeft() {
            return left;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    When you have a fully up to date build and you clean and re-run the code generator task on the same code base it should generate _exactly the same output_, so anything that depends on that output will stay up-to-date.
    
    It might also be that your code generator adds some extra information to its output that doesn't depend on its declared inputs, like a timestamp.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/WithSideEffectProviderTest.groovy

            "both have (but zip provider missing)" | Integer.MAX_VALUE | 0        | 88         | 0         | null
            "only left has"                        | 23                | 0        | null       | 0         | null
            "only right has"                       | null              | 0        | 88         | 0         | null
            "none have"                            | null              | 0        | null       | 0         | null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top