Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 187 for Lyding (0.1 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/impl/DefaultFileCollectionFingerprinterRegistry.java

            if (fingerprinter == null) {
                throw new IllegalStateException(String.format("No fingerprinter registered with '%s' normalization, directory sensitivity '%s' and line ending normalization '%s'", spec.getNormalizer(), spec.getDirectorySensitivity().name(), spec.getLineEndingNormalization()));
            }
            return fingerprinter;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.dom
    
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Configuring
    import org.gradle.declarative.dsl.model.annotations.HiddenInDeclarativeDsl
    import org.gradle.declarative.dsl.model.annotations.Restricted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/distribution_plugin.adoc

    The following sample creates a `custom` distribution that will cause four additional tasks to be added to the project: `customDistZip`, `customDistTar`, `assembleCustomDist`, and `installCustomDist`:
    
    .Adding extra distributions
    ====
    include::sample[dir="snippets/base/distribution/kotlin",files="build.gradle.kts[tags=custom-distribution]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyConstraintFactory.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    /**
     * Factory class for creating {@link DependencyConstraint} instances, with strong typing.
     *
     * <p>
     * An instance of the factory can be injected into a task, plugin or other object by annotating a public constructor or property getter method with {@link javax.inject.Inject}.
     * </p>
     *
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/build.gradle.kts

    }
    
    description = """JVM-specific testing functionality, including the Test type and support for configuring options for and detecting
    tests written in various JVM testing frameworks. This project "extends" the testing-base project by sub-typing many
    of its abstractions with JVM-specific abstractions or implementations.
    
    This project is a implementation dependency of many other testing-related subprojects in the Gradle build, and is a necessary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/BuildBuilderGenerator.groovy

         */
        @OutputDirectory
        final DirectoryProperty generatedDir
    
        /**
         * Additional arguments to provide to the build-builder.
         *
         * NOTE: Prefer to model something more concretely here vs adding extra arguments.
         */
        @Input
        final ListProperty<String> args
    
        /**
         * Type of project to generate (cpp, java, swift, etc)
         */
        @Input
        String projectType
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonJvmSettingsIntegrationTest.groovy

                            assert memBean.heapMemoryUsage.max > 256 * 1024 * 1024
                        }
                    }
                }
            """
    
            when:
            // This prevents the executer fixture from adding "default" values to the build jvm options
            executer.useOnlyRequestedJvmOpts()
            executer.withEnvironmentVars(JAVA_TOOL_OPTIONS: javaToolOptions)
            run "verify"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrPlugin.java

    import org.gradle.api.plugins.antlr.internal.DefaultAntlrSourceDirectorySet;
    import org.gradle.api.tasks.SourceSet;
    
    import javax.inject.Inject;
    import java.io.File;
    
    /**
     * A plugin for adding Antlr support to {@link org.gradle.api.plugins.JavaPlugin java projects}.
     *
     * @see <a href="https://docs.gradle.org/current/userguide/antlr_plugin.html">ANTLR plugin reference</a>
     */
    @SuppressWarnings("JavadocReference")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/schemaFromTypes.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.schemaBuilder
    
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Builder
    import org.gradle.declarative.dsl.model.annotations.Configuring
    import org.gradle.declarative.dsl.model.annotations.HasDefaultValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/AbstractFileWatcherRegistryFactory.java

            BlockingQueue<FileWatchEvent> fileEvents = new ArrayBlockingQueue<>(FILE_EVENT_QUEUE_SIZE);
            try {
                // TODO How can we avoid hard-coding ".gradle" here?
                FileWatcherProbeRegistry probeRegistry = new DefaultFileWatcherProbeRegistry(buildDir ->
                    new File(new File(buildDir, ".gradle"), "file-system.probe"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top