Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for iterations (0.24 sec)

  1. src/iter/pull_test.go

    			c = 0
    			ng = nng
    		}
    		if c >= 100 {
    			// The same value 100 times in a row is good enough.
    			return ng
    		}
    		runtime.Gosched()
    	}
    	panic("failed to stabilize NumGoroutine after 1000 iterations")
    }
    
    func TestPullDoubleNext(t *testing.T) {
    	next, _ := Pull(doDoubleNext())
    	nextSlot = next
    	next()
    	if nextSlot != nil {
    		t.Fatal("double next did not fail")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    	// Walk blocks in postorder ordering. This improves convergence.
    	po := lv.f.Postorder()
    
    	// Iterate through the blocks in reverse round-robin fashion. A work
    	// queue might be slightly faster. As is, the number of iterations is
    	// so low that it hardly seems to be worth the complexity.
    
    	for change := true; change; {
    		change = false
    		for _, b := range po {
    			be := lv.blockEffects(b)
    
    			newliveout.Clear()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. src/os/exec/exec_test.go

    		go runCommand(cb, bres)
    		if got, want := <-ares, fmt.Sprintf("fd3: listener %s\n", la.Addr()); got != want {
    			t.Errorf("iteration %d, process A got:\n%s\nwant:\n%s\n", i, got, want)
    		}
    		if got, want := <-bres, fmt.Sprintf("fd3: listener %s\n", lb.Addr()); got != want {
    			t.Errorf("iteration %d, process B got:\n%s\nwant:\n%s\n", i, got, want)
    		}
    		la.Close()
    		lb.Close()
    		for _, f := range ca.ExtraFiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  4. src/os/exec/exec.go

    		p = p[overage:]
    		w.skipped += int64(overage)
    	}
    	p = w.fill(&w.suffix, p)
    
    	// w.suffix is full now if p is non-empty. Overwrite it in a circle.
    	for len(p) > 0 { // 0, 1, or 2 iterations.
    		n := copy(w.suffix[w.suffixOff:], p)
    		p = p[n:]
    		w.skipped += int64(n)
    		w.suffixOff += n
    		if w.suffixOff == w.N {
    			w.suffixOff = 0
    		}
    	}
    	return lenp, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

            operations.none(LoadBuildBuildOperationType)
            operations.none(LoadProjectsBuildOperationType)
            operations.none(EvaluateSettingsBuildOperationType)
            operations.none(ConfigureBuildBuildOperationType)
            operations.none(ConfigureProjectBuildOperationType)
    
            operations.only(CalculateTreeTaskGraphBuildOperationType)
            operations.only(CalculateTaskGraphBuildOperationType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateStripNoinlineAttributePass();
    
    // Converts tensor list operations into operations on buffers and sizes. Needs
    // static shapes and known max element count.
    std::unique_ptr<OperationPass<ModuleOp>> CreateTensorListOpsDecompositionPass();
    
    // Converts tensor array ops into operations on local variables, which can later
    // be removed by resource lifting. Requires known sizes and known element shapes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

    import org.gradle.internal.hash.Hashing;
    import org.gradle.internal.operations.BuildOperationContext;
    import org.gradle.internal.operations.BuildOperationDescriptor;
    import org.gradle.internal.operations.BuildOperationProgressEventEmitter;
    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.internal.operations.CallableBuildOperation;
    import org.gradle.internal.operations.UncategorizedBuildOperations;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

    import org.gradle.integtests.fixtures.configurationcache.ConfigurationCacheFixture.HasBuildActions
    import org.gradle.integtests.fixtures.configurationcache.ConfigurationCacheFixture.HasInvalidationReason
    import org.gradle.internal.operations.trace.BuildOperationRecord
    import org.gradle.tooling.provider.model.internal.QueryToolingModelBuildOperationType
    
    class IsolatedProjectsFixture {
        private final AbstractConfigurationCacheOptInFeatureIntegrationTest spec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. subprojects/core/build.gradle.kts

        api(project(":build-cache-packaging"))
        api(project(":build-cache-spi"))
        api(project(":build-operations"))
        api(project(":build-option"))
        api(project(":cli"))
        api(project(":core-api"))
        api(project(":declarative-dsl-api"))
        api(project(":enterprise-logging"))
        api(project(":enterprise-operations"))
        api(project(":execution"))
        api(project(":file-collections"))
        api(project(":file-temp"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_waypoint.go

    	}
    	authority := ""
    	if in.Headers != nil {
    		operations := istio_route.TranslateHeadersOperations(in.Headers)
    		out.RequestHeadersToAdd = operations.RequestHeadersToAdd
    		out.ResponseHeadersToAdd = operations.ResponseHeadersToAdd
    		out.RequestHeadersToRemove = operations.RequestHeadersToRemove
    		out.ResponseHeadersToRemove = operations.ResponseHeadersToRemove
    		authority = operations.Authority
    	}
    
    	if in.Redirect != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top