Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 545 for Here (0.06 sec)

  1. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/ResourceMapper.java

                storageObject.getSize().longValue(),
                storageObject.getContentType(),
                storageObject.getEtag(),
                null // we cannot use md5 instead of sha1 here because cache will get corrupted due to its expectation of sha1 hashes
            );
        }
    
        private ResourceMapper() {
            throw new AssertionError("No instances");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromSingleCustomPluginRepositorySpec.groovy

              }
              plugins.withType(org.gradle.test.TestPlugin) {
                println "I'm here"
              }
            """
    
            and:
            useCustomRepository(PathType.ABSOLUTE)
    
            when:
            succeeds("pluginTask")
    
            then:
            output.contains("I'm here")
    
            where:
            repoType << [IVY, MAVEN]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseJdt.java

     *       whenMerged { jdt
     *         //you can tinker with the {@link Jdt} here
     *       }
     *
     *       //withProperties allows addition of properties not currently
     *       //modeled by Gradle
     *       withProperties { properties -&gt;
     *           //you can tinker with the {@link java.util.Properties} here
     *       }
     *     }
     *   }
     * }
     * </pre>
     */
    public abstract class EclipseJdt {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsIncludeManyIntegrationTest.groovy

            settingsFile << """
                rootProject.name = 'root'
                $includeFunction $projectNamesCommaSeparated
            """
    
            // The failure here emits a stacktrace because it's at compilation time
            executer.withStackTraceChecksDisabled()
    
            expect:
            def result = fails("projects")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/toolchains/DefaultToolChainSelector.java

            NativeLanguage sourceLanguage = NativeLanguage.CPP;
            NativeToolChainInternal toolChain = getToolChain(sourceLanguage, targetNativePlatform);
    
            // TODO - don't select again here, as the selection is already performed to select the toolchain
            PlatformToolProvider toolProvider = toolChain.select(sourceLanguage, targetNativePlatform);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/software/resources/src/main/java/org/gradle/internal/resource/Resource.java

     */
    
    package org.gradle.internal.resource;
    
    import org.gradle.api.Describable;
    
    /**
     * Represents some resource that may have content.
     *
     * <p>This type is currently pretty much empty. It's here as a place to extract and reuse stuff from the various subtypes, which all stared off as separate hierarchies.
     */
    public interface Resource extends Describable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/configurations/ConfigurationReports.java

     *
     * @since 7.5
     */
    @Incubating
    public interface ConfigurationReports extends ReportContainer<ConfigurableReport> {
        // empty for now, additional report output formats can be added here
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 21:08:41 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/archives/kotlin/build.gradle.kts

    // tag::tar[]
    tasks.register<Tar>("tar") {
        from("src/dist")
        into("libs") {
            from(configurations.runtimeClasspath)
        }
    }
    // end::tar[]
    
    // TODO why can't we use properties instead of setters here?
    // when using them, we get "Cannot access 'preserveFileTimestamps': it is private in 'AbstractArchiveTask'"
    // tag::reproducible[]
    tasks.withType<AbstractArchiveTask>().configureEach {
        isPreserveFileTimestamps = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/JdkToolsInitializer.java

    @ServiceScope(Scope.Global.class)
    public interface JdkToolsInitializer {
        /**
         * Ensures that the JDK tools are visible on the system ClassLoader. Not really a great idea, but here for backwards
         * compatibility.
         */
        void initializeJdkTools();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/RuntimeFunctionResolver.kt

            receiverClass.memberFunctions.forEach { function ->
                // TODO: `convertBinding` is invoked here with the receiverClass passed as the receiver and non-resolved argument origins; this probably needs a different API shape
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 10:30:52 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top