Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,585 for Lach (0.69 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ChangesDuringBuildContinuousIntegrationTest.groovy

        }
    
        @UnsupportedWithConfigurationCache(because = "taskGraph.afterTask")
        def "new build should be triggered when input files to tasks are changed after each task has been executed, but before the build has completed (changed: #changingInput)"() {
            given:
            ['a', 'b', 'c', 'd'].each { file(it).createDir() }
    
            when:
            buildFile << """
                task a {
                  inputs.dir "a"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho.go

    	BIND_SUBOPCODE_THREADED_SET_BIND_ORDINAL_TABLE_SIZE_ULEB = 0x00
    	BIND_SUBOPCODE_THREADED_APPLY                            = 0x01
    )
    
    const machoHeaderSize64 = 8 * 4 // size of 64-bit Mach-O header
    
    // Mach-O file writing
    // https://developer.apple.com/mac/library/DOCUMENTATION/DeveloperTools/Conceptual/MachORuntime/Reference/reference.html
    
    var machohdr MachoHdr
    
    var load []MachoLoad
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/groovy/build.gradle

    dependencies {
        rejectConfig "org.sample:api:1.+"
    }
    // end::reject-version-1-1[]
    
    tasks.register('printRejectConfig') {
        FileCollection rejectConfig = configurations.rejectConfig
        doLast {
            rejectConfig.each { println "Resolved: ${it.name}" }
        }
    }
    
    // tag::component-selection-with-metadata[]
    configurations {
        metadataRulesConfig {
            resolutionStrategy {
                componentSelection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/collections.adoc

    2. <<nameddomainobjectset,`NamedDomainObjectSet<T>`>>: A specialization of `DomainObjectSet` where each object has a unique name associated with it. This is often used for collections where each element needs to be uniquely identified by a name.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelMap.java

         * @param name The name.
         * @param ruleSource A rule source class.
         */
        void named(String name, Class<? extends RuleSource> ruleSource);
    
        /**
         * Applies the given action to each item in this collection, as each item is required.
         *
         * <p>The given action is invoked to configure the item when the item is required. It is called before any actions provided to {@link #create(String, org.gradle.api.Action)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractIdeLifecycleIntegrationTest.groovy

            [":", ":foo", ":foo:bar"].each { projectPath ->
                getGenerationTaskNames(projectPath).each { taskName ->
                    result.assertTaskOrder(getCleanTaskName(taskName), taskName)
                }
            }
        }
    
        def assertGenerationTasksRunBeforeCleanTasks() {
            [":", ":foo", ":foo:bar"].each { projectPath ->
                getGenerationTaskNames(projectPath).each { taskName ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ParallelDependencyResolutionIntegrationTest.groovy

                        }
                    }
                """
            }
    
            ('a'..'z').each {
                createDirs(it)
                settingsFile << "include '$it'\n"
                file("${it}/build.gradle") << """
                    apply plugin: 'java-library'
                """
                ['project1', 'project2'].each { downstream ->
                    file("$downstream/build.gradle") << """
                        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    To build native software using Gradle, your project should define one or more _native components_. Each component represents either an executable or a library that Gradle should build. A project can define any number of components. Gradle does not define any components by default.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

                server.expectConcurrent(it)
            }
            configurationCacheRun ":finalized:task", "--parallel"
            configurationCache.assertStateStored()
    
            and: "unrequested finalizer dependencies not to run in parallel when loading the graph"
            [":finalized:dep", ":finalized:task", ":finalizer:dep", ":finalizer:task"].each {
                server.expectConcurrent(it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            0 * _
        }
    
        def testCanScanForFiles() {
            File included1 = new File(testDir, 'subDir/included1')
            File included2 = new File(testDir, 'subDir2/included2')
            [included1, included2].each { File file ->
                file.parentFile.mkdirs()
                file.text = 'some text'
            }
    
            when:
            def files = fileTree.files
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top