Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 486 for light (0.03 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/TemplateFactory.java

            }
            return operationBuilder.create();
        }
    
        private static String joinIfNotEmpty(String left, String right) {
            return left.isEmpty() || right.isEmpty() ? "" : (left + right);
        }
    
        private static class TemplateDetails implements SourceFileTemplate {
            final Map<String, String> bindings = new HashMap<>();
            String subproject;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:38:39 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/InstrumentingBackwardsCompatibilityVisitor.java

        );
    
        private static final List<Pair<String, String>> RENAMED_TYPE_DESCRIPTORS = RENAMED_TYPE_INTERNAL_NAMES.stream().map(
            p -> Pair.of("L" + p.left + ";", "L" + p.right + ";")
        ).collect(toList());
    
        InstrumentingBackwardsCompatibilityVisitor(ClassVisitor classVisitor) {
            super(ASM_LEVEL, classVisitor);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 08:17:26 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/GradleUserHomeScopeFileTimeStampInspector.java

         * And if the provided timestamp is in `millisecond` precision, then we will definitely detect changes for that file correctly.
         * But if it's in `second` precision we might not detect changes, and we might need to discard the hash at the end of the build.
         */
        private boolean isReliableTimestampPrecision(long timestamp) {
            return isCurrentTimestampHighPrecision || isHighTimestampPrecision(timestamp);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    Always keep in mind that the solution you choose to fix a problem can "leak" to your consumers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/software_architecture.puml

    }
    
    package "Application Layer" {
      [server-application]
      [android-app]
    }
    
    package "Business Logic Layer" {
      [user-feature]
      [admin-feature]
    }
    
    package "Domain Model Layer" {
      [domain-model] <-right- [state]
    }
    
    [server-application] -down-> [user-feature]
    [server-application] -down-> [admin-feature]
    [android-app] -down-> [user-feature]
    
    [user-feature] -down-> [domain-model]
    [user-feature] -down-> [state]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 886 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    Some projects might need to divert from the default behavior and enforce an earlier version of a dependency e.g. if the source code of the project depends on an older API of a dependency than some of the external libraries.
    
    [WARNING]
    ====
    Forcing a version of a dependency requires a conscious decision.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4_Container.puml

        FontColor ELEMENT_FONT_COLOR
        BackgroundColor CONTAINER_BG_COLOR
        BorderColor #3C7FC0
    }
    
    ' 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)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/TargetMachine.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform;
    
    import org.gradle.api.tasks.Nested;
    
    /**
     * Represents a combination of operating system and cpu architecture that a variant might be built for.
     *
     * @since 5.1
     */
    public interface TargetMachine {
        /**
         * Returns the target operating system
         */
        @Nested
        OperatingSystemFamily getOperatingSystemFamily();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheToolingApiInvocationIntegrationTest.groovy

            model.left.message == "It works from project :"
            model.right.message == "It works from project :"
            outputContains("script log statement")
    
            when:
            def model2 = runPhasedBuildAction(new SomeToolingModelBuildAction(), new SomeToolingModelBuildAction())
    
            then:
            model2.left.message == "It works from project :"
            model2.right.message == "It works from project :"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/InstrumentedMetaClass.java

     * limitations under the License.
     */
    
    package org.gradle.internal.metaobject;
    
    /**
     * An implementation of a Groovy MetaClass that is instrumented and might need to cancel some optimizations
     * in order to get the instrumentation to work properly.
     */
    public interface InstrumentedMetaClass {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top