Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 346 for north (0.1 sec)

  1. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/tasks/GenerateSample.kt

    import org.gradle.buildinit.plugins.internal.modifiers.ModularizationOption
    import org.gradle.work.DisableCachingByDefault
    import javax.inject.Inject
    
    
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class GenerateSample : DefaultTask() {
    
        @get:Input
        abstract val type: Property<String>
    
        @get:Input
        abstract val modularization: Property<ModularizationOption>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/lex/slice.go

    	// and
    	//	#define A #define B (x) x
    	// The first definition of B has an argument, the second doesn't. Because we let
    	// text/scanner strip the blanks for us, this is extremely rare, hard to fix, and not worth it.
    	return s.pos
    }
    
    func (s *Slice) Close() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 29 22:49:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/component_capabilities.adoc

    [[sec:declaring-capabilities-external-modules]]
    == Declaring capabilities for external modules
    
    It's worth noting that Gradle supports declaring capabilities for components you build, but also for external components in case they didn't.
    
    For example, if your build file contains the following dependencies:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/DefaultClassFileTransformer.java

                return null;
            }
        }
    
        public static boolean tryInstall() {
            // Installing the same transformer multiple times is very problematic, so additional correctness check is worth it.
            if (!INSTALLED.compareAndSet(false, true)) {
                throw new IllegalStateException("The transformer is already installed in " + DefaultClassFileTransformer.class.getClassLoader());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateReleasedVersions.kt

    import org.gradle.api.tasks.Internal
    import org.gradle.api.tasks.TaskAction
    import org.gradle.util.GradleVersion
    import org.gradle.work.DisableCachingByDefault
    import java.io.File
    
    
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class UpdateReleasedVersions : DefaultTask() {
    
        @get:Internal
        abstract val releasedVersionsFile: RegularFileProperty
    
        @get:Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-configuration/src/main/java/org/gradle/buildconfiguration/tasks/UpdateDaemonJvm.java

    /**
     * Generates or updates the Gradle Daemon JVM criteria.
     *
     * This controls the version of the JVM required to run the Gradle Daemon.
     *
     * @since 8.8
     */
    @DisableCachingByDefault(because = "Not worth caching")
    @Incubating
    public abstract class UpdateDaemonJvm extends DefaultTask {
        /**
         * Constructor.
         *
         * @since 8.8
         */
        @Inject
        public UpdateDaemonJvm() {
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/exceptions/StyledException.java

     * between the styled elements. The tag names correspond to a {@link StyledTextOutput.Style}
     * name.</p>
     * <p>For example: This is an &lt;Failure&gt;error&lt;/Failure&gt;</p>
     * <p>It's worth noting that {@link #getMessage()} would return a non-rendered text,
     * so that tooling using the exception messages are not concerned with rendering issues.
     * </p>
     */
    public class StyledException extends GradleException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 06 16:25:37 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/GeneratePluginDescriptors.java

    import java.util.Map;
    import java.util.Properties;
    import java.util.stream.Collectors;
    
    /**
     * Generates plugin descriptors from plugin declarations.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class GeneratePluginDescriptors extends DefaultTask {
    
        private final ListProperty<PluginDeclaration> declarations;
        private final Provider<Map<String, String>> implementationClassById;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. src/compress/testdata/gettysburg.txt

      Four score and seven years ago our fathers brought forth on
    this continent, a new nation, conceived in Liberty, and dedicated
    to the proposition that all men are created equal.
      Now we are engaged in a great Civil War, testing whether that
    nation, or any nation so conceived and so dedicated, can long
    endure.
      We are met on a great battle-field of that war.
      We have come to dedicate a portion of that field, as a final
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 15:46:44 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateKotlinVersions.kt

    import java.util.Properties
    import javax.xml.parsers.DocumentBuilderFactory
    
    
    /**
     * Fetch the latest Kotlin versions and write a properties file.
     * Never up-to-date, non-cacheable.
     */
    @UntrackedTask(because = "Not worth tracking")
    abstract class UpdateKotlinVersions : DefaultTask() {
    
        @get:Internal
        abstract val comment: Property<String>
    
        @get:Internal
        abstract val minimumSupported: Property<String>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 26 13:50:17 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top