Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for secondMask (0.32 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionErrorHandlingIntegrationTest.groovy

                    def outTxt = file("build/first.txt")
                    outputs.file(outTxt)
                    doLast {
                        outTxt.text = "Done"
                    }
                }
    
                task secondTask {
                    dependsOn firstTask
                    outputs.cacheIf { true }
                    def outTxt = file("build/second.txt")
                    outputs.file(outTxt)
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

                }
    
                task secondTask {
                    def inputDir = file("${outputDir}")
                    def outputDir = file("${sourceDir}")
                    inputs.dir(inputDir)
                    outputs.dir(outputDir)
                    doLast {
                        new File(outputDir, "source").text = "fixed"
                    }
                }
    
                secondTask.${relation}(firstTask)
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

                task anotherTask
                task firstTask
                task secondTask
                task lastTask
                task someTask
    
                someTask.dependsOn anotherTask
                someTask.dependsOn otherTask
                someTask.mustRunAfter firstTask
                someTask.shouldRunAfter secondTask
                someTask.finalizedBy lastTask
            """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            firstTaskNode.task == a
            assertNoWorkReadyToStart()
            lockedProjects.empty
    
            when:
            finishedExecuting(firstTaskNode)
            def secondTask = selectNextTask()
            then:
            secondTask == b
    
            where:
            relation << ["dependsOn", "mustRunAfter"]
        }
    
        def "two tasks with should run after ordering are executed in parallel"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  5. cmd/erasure-healing_test.go

    	}
    
    	// Test 1: Remove the object backend files from the first disk.
    	z := objLayer.(*erasureServerPools)
    	er := z.serverPools[0].sets[0]
    	erasureDisks := er.getDisks()
    	firstDisk := erasureDisks[0]
    	secondDisk := erasureDisks[1]
    
    	fileInfos, errs := readAllFileInfo(ctx, erasureDisks, "", bucket, object, "", false, true)
    	fi, err := getLatestFileInfo(ctx, fileInfos, er.defaultParityCount, errs)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/controller.go

    				hashedServices[firstHash] = svc
    			} else {
    				// This means we have a collision. Resolve collision by "DoubleHashing".
    				i := uint32(1)
    				secondHash := uint32(prime) - (s % uint32(prime))
    				for {
    					nh := (s + i*secondHash) % uint32(maxIPs-1)
    					if hashedServices[nh] == nil {
    						hashedServices[nh] = svc
    						break
    					}
    					i++
    				}
    			}
    			hash.Reset()
    			j++
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top