Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 386 for circle (0.36 sec)

  1. doc/README.md

    Release notes should be added to `next` by editing existing files or creating
    new files. **Do not add RELNOTE=yes comments in CLs.** Instead, add a file to
    the CL (or ask the author to do so).
    
    At the end of the development cycle, the files will be merged by being
    concatenated in sorted order by pathname. Files in the directory matching the
    glob "*stdlib/*minor" are treated specially. They should be in subdirectories
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. cmd/data-scanner.go

    	minSleep time.Duration
    
    	// cycle will be closed
    	cycle chan struct{}
    
    	// isScanner should be set when this is used by the scanner
    	// to record metrics.
    	isScanner bool
    }
    
    // newDynamicSleeper
    func newDynamicSleeper(factor float64, maxWait time.Duration, isScanner bool) *dynamicSleeper {
    	return &dynamicSleeper{
    		factor:    factor,
    		cycle:     make(chan struct{}),
    		maxSleep:  maxWait,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/graph/CachingDirectedGraphWalker.java

                        NodeDetails<N, T> connectedNodeDetails = seenNodes.get(connectedNode);
                        if (!connectedNodeDetails.finished) {
                            // part of a cycle : use the 'minimum' component as the root of the cycle
                            int minSeen = Math.min(details.minSeen, connectedNodeDetails.minSeen);
                            details.minSeen = minSeen;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/substitutorProvider/FirIdeNormalAnalysisSourceModuleCreateInheritanceTypeSubstitutorTestGenerated.java

        runTest("analysis/analysis-api/testData/components/substitutorProvider/createInheritanceTypeSubstitutor/chain.kt");
      }
    
      @Test
      @TestMetadata("cycle.kt")
      public void testCycle() {
        runTest("analysis/analysis-api/testData/components/substitutorProvider/createInheritanceTypeSubstitutor/cycle.kt");
      }
    
      @Test
      @TestMetadata("diamond.kt")
      public void testDiamond() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tasks/shouldRunAfterWithCycle/kotlin/settings.gradle.kts

    rootProject.name = "should-run-after-cycle"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 44 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConfigurationBuildDependenciesIntegrationTest.groovy

            "copy"                 | _
            "filteredTree"         | _
        }
    
        def "builds correct artifacts when there is a project cycle in dependency graph - fluid: #fluid"() {
            makeFluid(fluid)
    
            // A graph from root compile -> child default -> root default, so not an actual cycle here
            // Graph includes artifact and file dependencies on each node, should build all of them
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. internal/config/heal/heal.go

    	DriveWorkers int `json:"drive_workers"`
    
    	// Cached value from Bitrot field
    	cache struct {
    		// -1: bitrot enabled, 0: bitrot disabled, > 0: bitrot cycle
    		bitrotCycle time.Duration
    	}
    }
    
    // BitrotScanCycle returns the configured cycle for the scanner healing
    // -1 for not enabled
    //
    //	0 for contiunous bitrot scanning
    //
    // >0 interval duration between cycles
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

            }
    
            /**
             * Returns the evaluation cycle.
             * The list represents a "stack" of owners currently being evaluated, and is at least two elements long.
             * The first and last elements of the list are the same owner.
             *
             * @return the evaluation cycle as a list
             */
            public List<EvaluationOwner> getEvaluationCycle() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ComponentModuleMetadataContainerTest.groovy

            when: replacements.module("o:b").replacedBy("o:a")
    
            then:
            def ex = thrown(InvalidUserDataException)
            ex.message == "Cannot declare module replacement o:b->o:a because it introduces a cycle: o:b->o:a->o:b"
        }
    
        def "detects transitive cycles early"() {
            replacements.module("o:o").replacedBy("o:x")
            //a->b->c->a
            replacements.module("o:a").replacedBy("o:b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ConfigurationCycleException.java

     * limitations under the License.
     */
    
    package org.gradle.model;
    
    import org.gradle.api.GradleException;
    import org.gradle.api.Incubating;
    
    /**
     * Thrown when a cycle is encountered while configuring a model element.
     */
    @Incubating
    public class ConfigurationCycleException extends GradleException {
        public ConfigurationCycleException(String message) {
            super(message);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 967 bytes
    - Viewed (0)
Back to top