Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 491 for Here (0.05 sec)

  1. 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 ->
     *           //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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildCompletionNotifyingBuildActionRunner.java

                // whereas console failure logging based on the _thrown exception_ happens up outside session scope. It would be better to refactor so that a result can be returned from here
                notifyEnterprisePluginManager(Result.failed(t));
                throw UncheckedException.throwAsUncheckedException(t);
            }
            notifyEnterprisePluginManager(result);
            return result;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/exception/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Exceptions thrown when variant selection fails.
     *
     * The hierarchy of exceptions here should be kept small, and in sync with the 2
     * main branches of the {@link org.gradle.internal.component.resolution.failure.type.ResolutionFailure ResolutionFailure}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dependencies/SelfResolvingDependencyInternal.java

     */
    
    package org.gradle.api.internal.artifacts.dependencies;
    
    import org.gradle.api.artifacts.component.ComponentIdentifier;
    
    import javax.annotation.Nullable;
    
    /**
     * Used by Kotlin here:
     * <a href="https://github.com/JetBrains/kotlin/blob/e9b4b8919dc1725026ce55a00ca8680af154ebd8/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/targets/js/npm/NpmDependency.kt#L24">Link</a>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:37 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top