Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 301 for iterations (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ExecutionGradleServices.java

    import org.gradle.internal.file.Deleter;
    import org.gradle.internal.hash.ClassLoaderHierarchyHasher;
    import org.gradle.internal.id.UniqueId;
    import org.gradle.internal.operations.BuildOperationProgressEventEmitter;
    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.internal.operations.CurrentBuildOperationRef;
    import org.gradle.internal.scopeids.id.BuildInvocationScopeId;
    import org.gradle.internal.service.Provides;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/local/internal/AbstractBuildCacheCleanupIntegrationTest.groovy

        void assertCacheWasCleanedUpSince(long lastCleanupCheck) {
            def buildOp = operations.only("Clean up ${getBuildCacheName()} ($cacheDir)")
            buildOp.details.cacheLocation == cacheDir
            assert gcFile().lastModified() > lastCleanupCheck
        }
    
        void assertCacheWasNotCleanedUpSince(long lastCleanupCheck) {
            operations.none("Clean up ${getBuildCacheName()} ($cacheDir)")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

            """
        }
    
        def "reports successful project configuration progress events"() {
            when:
            runBuild("tasks")
    
            then:
            events.operations.size() == 6
            events.trees == events.operations
            containsSuccessfulProjectConfigurationOperation(":buildSrc", file("buildSrc"), ":")
            containsSuccessfulProjectConfigurationOperation(":buildSrc:a", file("buildSrc"), ":a")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

    // Belows are the attributes in TFE.
    // TFE Arguments and Results (Got from "_Arg",
    // "_Retval", .etc)
    //  NodeDef.device <-> "tf.device"
    //  NodeDef.attr <-> "tf."
    //
    // TFE general operations
    //  NodeDef.device <-> "device"
    //
    // The following two functions are only used for mapping/excluding attributes
    // which are inconsistent between TFG and TFE.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_executor.go

    	volumetypes "k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    // OperationExecutor defines a set of operations for attaching, detaching,
    // mounting, or unmounting a volume that are executed with a NewNestedPendingOperations which
    // prevents more than one operation from being triggered on the same volume.
    //
    // These operations should be idempotent (for example, AttachVolume should
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. README.md

    with a *minimum* of 4 drives per MinIO server. See [MinIO Erasure Code Overview](https://min.io/docs/minio/linux/operations/concepts/erasure-coding.html)
    for more complete documentation.
    
    ### Stable
    
    Run the following command to run the latest stable image of MinIO as a container using an ephemeral data volume:
    
    ```sh
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/nettest/conntest.go

    	}
    	checkForTimeoutError(t, err)
    
    	testRoundtrip(t, c1)
    }
    
    // testPresentTimeout tests that a past deadline set while there are pending
    // Read and Write operations immediately times out those operations.
    func testPresentTimeout(t *testing.T, c1, c2 net.Conn) {
    	var wg sync.WaitGroup
    	defer wg.Wait()
    	wg.Add(3)
    
    	deadlineSet := make(chan bool, 1)
    	go func() {
    		defer wg.Done()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

            }
    
            then: "task progress events must be forwarded to the attached listeners"
            !events.tasks.empty
            events.operations == events.tasks
        }
    
        def "receive task progress events when launching a build"() {
            given:
            goodCode()
    
            when: "launching a build"
            def events = ProgressEvents.create()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildModelControllerServices.kt

    import org.gradle.internal.event.ListenerManager
    import org.gradle.internal.extensions.core.get
    import org.gradle.internal.model.StateTransitionControllerFactory
    import org.gradle.internal.operations.BuildOperationExecutor
    import org.gradle.internal.operations.BuildOperationRunner
    import org.gradle.internal.reflect.Instantiator
    import org.gradle.internal.service.CachingServiceLocator
    import org.gradle.internal.service.Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. src/math/big/nat.go

    	z = z.setWord(1)
    	for ; i >= 0; i-- {
    		yi := y[i]
    		if i == mtop {
    			yi &= mmask
    		}
    		for j := 0; j < _W; j += n {
    			if advance {
    				// Account for use of 4 bits in previous iteration.
    				// Unrolled loop for significant performance
    				// gain. Use go test -bench=".*" in crypto/rsa
    				// to check performance before making changes.
    				zz = zz.sqr(z)
    				zz, z = z, zz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
Back to top