Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 282 for light (0.05 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

            private final ValueProducer left;
            private final ValueProducer right;
    
            public PlusProducer(ValueProducer left, ValueProducer right) {
                this.left = left;
                this.right = right;
            }
    
            @Override
            public boolean isKnown() {
                return left.isKnown() || right.isKnown();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/FileSystemExtensions.kt

            val hasher = Hashing.newHasher()
            // This routine is used to snapshot results of File.list(), File.listFiles() and similar calls.
            // Technically, the relative order or entries is visible to the caller, so it might be considered when computing the hash.
            // However, the File.list spec leaves the order undefined, so no reasonable implementation should depend on it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanConstructors.kt

                Class.forName(superclass.name, true, superclass.classLoader)
                maybeInit(superclass)
            }
        }
    
        // TODO: What about the runtime decorations a serialized bean might have had at configuration time?
        private
        fun newConstructorForSerialization(beanType: Class<*>, constructor: Constructor<*>): Constructor<out Any> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/layout/ResolvedBuildLayout.java

            return cacheBuilderFactory.getRootDir();
        }
    
        /**
         * Is the build using an empty settings because a build definition is missing from the current directory?
         *
         * <p>There are two cases where this might be true: Gradle was invoked from a directory where there is no build script and no settings script in the directory hierarchy,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

        private static final Comparator<File> FILE_SEGMENT_COMPARATOR = new Comparator<File>() {
            @Override
            public int compare(File left, File right) {
                String leftPath = left.getPath();
                String rightPath = right.getPath();
    
                int len1 = leftPath.length();
                int len2 = rightPath.length();
                int lim = Math.min(len1, len2);
    
                int k = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                return de;
            }
            Expression right = transform(de.getRightExpression());
            if (right == de.getRightExpression()) {
                fixDeclaringClass(de);
                return de;
            }
            DeclarationExpression newDeclExpr = new DeclarationExpression(left, de.getOperation(), right);
            newDeclExpr.setDeclaringClass(de.getDeclaringClass());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/settings_file_basics.adoc

    [source,kotlin]
    ----
    include("app")
    include("business-logic")
    include("data-model")
    ----
    
    Consult the <<writing_settings_files.adoc#writing_settings_files,Writing Settings File>> page to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/DependencyResolutionFromTaskContextIntegrationTest.groovy

            """
            settingsFile << """
                include 'a', 'b'
            """
    
            expect:
            fails("a:foo", "b:foo", "--parallel")
    
            // We just need to assert that the build fails with the right error message here, it doesn't matter which task is the first to fail,
            // allowing either failure to pass the test should reduce flakiness on CI.
    
            def docLinkMessage = getDocLinkMessage()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGLoggingOutputCaptureIntegrationTest.groovy

                )
            }
    
            outputContains expectedOutput('The Foo Test')
    
            /**
             * This test documents the current behavior. It's not right, we're missing a lot of output in the report.
             */
    
            def xmlReport = new JUnitXmlTestExecutionResult(testDirectory)
            def classResult = xmlReport.testClass("FooTest")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonStarter.java

            builder.setBaseName("Gradle Worker Daemon");
            builder.setLogLevel(loggingManager.getLevel()); // NOTE: might make sense to respect per-compile-task log level
            builder.sharedPackages("org.gradle", "javax.inject");
            if (forkOptions.getClassLoaderStructure() instanceof FlatClassLoaderStructure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top