Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 173 for light (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    Documentation tasks
    -------------------
    javadoc - Generates Javadoc API documentation for the main source code.
    
    ...
    
    Other tasks
    -----------
    compileJava - Compiles main Java source.
    
    ...
    ----
    A task might be responsible for compilation, copying, and moving files around, creating JAR files, generating Javadoc, publishing artifacts to repositories, or many other discrete units of work.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

            protected final Collector<T> left;
            protected final Collector<T> right;
    
            private AbstractPlusCollector(Collector<T> left, Collector<T> right) {
                this.left = left;
                this.right = right;
            }
    
            @Override
            public int size() {
                return left.size() + right.size();
            }
    
            @Override
            public ValueProducer getProducer() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/style.css

        font-size: 10pt;
    }
    
    th, td {
        white-space: nowrap;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 12px;
        padding-right: 12px;
        text-align: left;
        vertical-align: bottom;
    }
    
    th.numeric, td.numeric {
        text-align: right;
    }
    
    .empty {
        color: #a0a0a0;
        font-size: 8pt;
    }
    
    .more-detail {
        color: #a0a0a0;
        font-size: 8pt;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

            protected final MapCollector<K, V> right;
    
            private AbstractPlusCollector(MapCollector<K, V> left, MapCollector<K, V> right) {
                this.left = left;
                this.right = right;
            }
    
            @Override
            public ValueProducer getProducer() {
                return left.getProducer().plus(right.getProducer());
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

                cachedBuildFile(
                    withBuildScriptIn("left", left),
                    hasBody(left)
                ),
                cachedBuildFile(
                    withBuildScriptIn("right", right),
                    hasBody(right)
                )
            )
    
        private
        fun randomScriptContent() =
            "println(\"${UUID.randomUUID()}\")"
    }
    
    
    private
    fun hasBody(script: String) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/javadoc.css

        border-radius:10px;
        padding:10px;
        margin-bottom:10px;
        margin-right:10px;
        display:inline-block;
    }
    .preview-block {
        font-size:1em;
        font-family:var(--block-font-family);
        border-style:solid;
        border-width:thin;
        border-radius:10px;
        padding:10px;
        margin-bottom:10px;
        margin-right:10px;
        display:inline-block;
    }
    div.block div.deprecation-comment {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/daemon/AbstractDaemonCompiler.java

        protected BaseForkOptions mergeForkOptions(BaseForkOptions left, BaseForkOptions right) {
            BaseForkOptions merged = new BaseForkOptions();
            merged.setMemoryInitialSize(mergeHeapSize(left.getMemoryInitialSize(), right.getMemoryInitialSize()));
            merged.setMemoryMaximumSize(mergeHeapSize(left.getMemoryMaximumSize(), right.getMemoryMaximumSize()));
            Set<String> mergedJvmArgs = normalized(left.getJvmArgs());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

     * 2. UPDATE build-logic/lifecycle/src/main/kotlin/PrintStackTracesOnTimeoutBuildService.kt if this class is moved to another package.
     *
     * Used to print all JVMs' thread dumps on the machine. When it starts working, the process/machine might be in a bad state (e.g. deadlock),
     * So we don't want it to depend on any third-party libraries. It's executed directly via `java JavaProcessStackTracesMonitor` in `PrintStackTracesOnTimeoutBuildService`.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. gradlew

    #   set -- "${ARGS[@]}" "$@"
    #
    # but POSIX shell has neither arrays nor command substitution, so instead we
    # post-process each arg (as a line of input to sed) to backslash-escape any
    # character that might be a shell metacharacter, then use eval to reverse
    # that process (while maintaining the separation between arguments), and wrap
    # the whole thing up as a single "set" statement.
    #
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    * Providing user-specific information (e.g., authentication credentials)
    * Defining machine-specific details (e.g., JDK locations)
    * Registering build listeners (e.g., external tools that wish to listen to Gradle events might find this helpful)
    * Registering loggers (e.g., customize how Gradle logs the events that it generates)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top