Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 386 for circle (0.37 sec)

  1. tensorflow/compiler/jit/xla_cluster_util.cc

      // The clustering code must avoid adding cycles to the graph to prevent
      // deadlock. However, the graph may contain loops, which would trigger the
      // cycle detection code. To handle loops, we alter the structure of the cycle
      // detection graph, disconnecting each loop from the enclosing graph.
      // Specifically, we:
      // * add a new "frame" node for each loop.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    // program.
    func GC() {
    	// We consider a cycle to be: sweep termination, mark, mark
    	// termination, and sweep. This function shouldn't return
    	// until a full cycle has been completed, from beginning to
    	// end. Hence, we always want to finish up the current cycle
    	// and start a new one. That means:
    	//
    	// 1. In sweep termination, mark, or mark termination of cycle
    	// N, wait until mark termination N completes and transitions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. .teamcity/src/test/kotlin/PromotionProjectTests.kt

                model.buildTypes.map { it.name }
            )
        }
    
        @Test
        fun `promotion project has expected build types for other branches`() {
            val model = setupModelFor("release")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 14:18:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. SECURITY.md

    ## Supported Versions
    
    We support the past two Go releases (for example, Go 1.17.x and Go 1.18.x when Go 1.18.x is the latest stable release).
    
    See https://go.dev/wiki/Go-Release-Cycle and in particular the
    [Release Maintenance](https://go.dev/wiki/Go-Release-Cycle#release-maintenance)
    part of that page.
    
    ## Reporting a Vulnerability
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 21:17:24 UTC 2023
    - 426 bytes
    - Viewed (0)
  5. pkg/scheduler/framework/interface.go

    	//
    	// We regard the backoff as a penalty of wasting the scheduling cycle.
    	// In the case of returning Pending, we cannot say the scheduling cycle is wasted
    	// because the scheduling result is used to proceed the Pod's scheduling forward,
    	// that particular scheduling cycle is failed though.
    	// So, Pods rejected by such reasons don't need to suffer a penalty (backoff).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/TypeMetadataWalker.java

        }
    
        /**
         * A factory method for a walker that can visit property hierarchy declared by a type.
         *
         * Type walker can detect a nested property cycle and stop walking the path with a cycle, no exception is thrown.
         */
        static StaticMetadataWalker typeWalker(TypeMetadataStore typeMetadataStore, Class<? extends Annotation> nestedAnnotation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/promotion/StartReleaseCycle.kt

    object StartReleaseCycle : BasePromotionBuildType(vcsRootId = gradlePromotionMaster) {
        init {
            id("Promotion_StartReleaseCycle")
            name = "Start Release Cycle"
            description = "Promotes a successful build on master as the start of a new release cycle on the release branch"
    
            params {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/validtype.go

    package types2
    
    import "cmd/compile/internal/syntax"
    
    // validType verifies that the given type does not "expand" indefinitely
    // producing a cycle in the type graph.
    // (Cycles involving alias types, as in "type A = [10]A" are detected
    // earlier, via the objDecl cycle detection mechanism.)
    func (check *Checker) validType(typ *Named) {
    	check.validType0(nopos, typ, nil, nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/go/types/validtype.go

    package types
    
    import "go/token"
    
    // validType verifies that the given type does not "expand" indefinitely
    // producing a cycle in the type graph.
    // (Cycles involving alias types, as in "type A = [10]A" are detected
    // earlier, via the objDecl cycle detection mechanism.)
    func (check *Checker) validType(typ *Named) {
    	check.validType0(nopos, typ, nil, nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pilot/pkg/leaderelection/leaderelection.go

    	revision       string
    	perRevision    bool
    	remote         bool
    	defaultWatcher revisions.DefaultWatcher
    
    	// Records which "cycle" the election is on. This is incremented each time an election is won and then lost
    	// This is mostly just for testing
    	cycle      *atomic.Int32
    	electionID string
    
    	// Store as field for testing
    	le *k8sleaderelection.LeaderElector
    	mu sync.RWMutex
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top