Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,641 for Lach (0.26 sec)

  1. test/solitaire.go

    // If a solution is found, solve prints the board after each move in a backward
    // fashion (i.e., the last board position is printed first, all the way back to
    // the starting board position).
    func solve() bool {
    	var last, n int
    	for pos, field := range board {
    		// try each board position
    		if field == '●' {
    			// found a peg
    			for _, dir := range [...]int{-1, -N, +1, +N} {
    				// try each direction
    				if move(pos, dir) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 2.9K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/git/internal/SourceDependencyCleanupIntegrationTest.groovy

        def "does not remove vcs checkout that is older than 7 days but recently used"() {
            // checkout all versions
            versions.each { version ->
                succeeds("assertVersion", "-PrepoVersion=${version}")
            }
            // mark all versions as unused
            versions.each { version ->
                markUnused(version)
            }
    
            when:
            cleanupNow()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/function-resource-args.mlir

    // CHECK:            input_arg
    // CHECK:              type: DT_RESOURCE
    // CHECK:            output_arg
    // CHECK:              type: DT_RESOURCE
    // CHECK:          ret
    
    // Check _resource_arg_unique_id for each argument. Since they alias each other,
    // both values are 0.
    // CHECK:          arg_attr
    // CHECK-NEXT:       key: 0
    // CHECK-NEXT:       value
    // CHECK:             key: "_resource_arg_unique_id"
    // CHECK-NEXT:        value
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top