Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 267 for light (0.05 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

            Pair<RelativePath, ClassVisitor> chain = transform.apply(classEntry, classWriter, new ClassData(reader, content, typeRegistry));
            reader.accept(chain.right, 0);
            byte[] bytes = classWriter.toByteArray();
            builder.put(chain.left.getPathString(), bytes, classEntry.getCompressionMethod());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/dependency_management_basics.adoc

    \--- org.mockito:mockito-core:2.16.0 (n)
    
    ...
    ----
    
    Consult the <<dependency_management_terminology.adoc#dependency_management_terminology,Dependency Management chapter>> to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:47:52 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                                // The artifact rule report/css/*.css => performanceResultsDir is there to clean up the target directory.
                                // If we don't clean that up there might be leftover json files from other report builds running on the same machine.
                                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:42 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultImmutableCapability.java

            this.group = group;
            this.name = name;
            this.version = version;
    
            this.hashCode = computeHashcode(group, name, version);
    
            // Using a string instead of a plain ID here might look strange, but this turned out to be
            // the fastest of several experiments, including:
            //
            //    using ModuleIdentifier (initial implementation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4_Component.puml

        FontColor #000000
        BackgroundColor COMPONENT_BG_COLOR
        BorderColor #78A8D8
    }
    
    ' Layout
    ' ##################################
    
    !definelong LAYOUT_WITH_LEGEND
    hide stereotype
    legend right
    |=              |= Type |
    |<PERSON_BG_COLOR>      | person |
    |<EXTERNAL_PERSON_BG_COLOR>      | external person |
    |<SYSTEM_BG_COLOR>   | system |
    |<EXTERNAL_SYSTEM_BG_COLOR>      | external system |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheRemoteDisabledDueToFailureProgressDetails.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.operations;
    
    /**
     * Marks that the remote build cache has been disabled due to a failure.
     * <p>
     * There might be multiple disabled events from build cache operations happening in parallel.
     *
     * @since 8.6
     */
    public interface BuildCacheRemoteDisabledDueToFailureProgressDetails {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:53:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedClosuresTracker.java

     * Tracks the closures that are currently present in the call stack.
     * An instrumented closure must invoke {@link InstrumentedClosuresTracker#enterClosure} when it starts executing and {@link InstrumentedClosuresTracker#leaveClosure}
     * right before it leaves the call stack. <p>
     *
     * {@link InstrumentedClosuresTracker#hitInstrumentedDynamicCall} is invoked by the instrumentation infrastructure on every invocation that is dynamically dispatched
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 11 12:31:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/download/FileDownloadResult.java

    /**
     * The result of a file download operation.
     *
     * @since 7.3
     */
    public interface FileDownloadResult extends OperationResult {
        /**
         * Returns the total download size. Note that this might not be the same as the file size.
         */
        long getBytesDownloaded();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 988 bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/build.gradle.kts

        api(project(":resources"))
        api(projects.serviceProvider)
        api(project(":snapshots"))
    
        api(libs.groovy)
        api(libs.inject)
        api(libs.kotlinStdlib)
    
        // TODO - it might be good to allow projects to contribute state to save and restore, rather than have this project know about everything
        implementation(projects.beanSerializationServices)
        implementation(projects.buildEvents)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/LineBufferingOutputStream.java

        }
    
        /**
         * Writes the specified byte to this output stream. The general contract for <code>write</code> is that one byte is
         * written to the output stream. The byte to be written is the eight low-order bits of the argument <code>b</code>.
         * The 24 high-order bits of <code>b</code> are ignored.
         *
         * @param b the <code>byte</code> to write
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top