Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for circle (0.18 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    	"fixedbugs/issue7525b.go", // types2 reports init cycle error on different line - ok otherwise
    	"fixedbugs/issue7525c.go", // types2 reports init cycle error on different line - ok otherwise
    	"fixedbugs/issue7525d.go", // types2 reports init cycle error on different line - ok otherwise
    	"fixedbugs/issue7525e.go", // types2 reports init cycle error on different line - ok otherwise
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. src/time/time.go

    //	sec = t % 60
    //	if sec < 0 {
    //		sec += 60
    //	}
    //
    // everywhere.
    //
    // The calendar runs on an exact 400 year cycle: a 400-year calendar
    // printed for 1970-2369 will apply as well to 2370-2769. Even the days
    // of the week match up. It simplifies the computations to choose the
    // cycle boundaries so that the exceptional years are always delayed as
    // long as possible. That means choosing a year equal to 1 mod 400, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

        }
    
        def "reports direct cycle in configurations"() {
            def configuration = conf()
            def otherConf = conf("other")
            configuration.extendsFrom(otherConf)
    
            when:
            otherConf.extendsFrom(configuration)
    
            then:
            thrown InvalidUserDataException
        }
    
        def "reports indirect cycle in extended configurations"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	n.lock.Lock()
    	defer n.lock.Unlock()
    	n.nodeHealths[name] = data
    }
    
    type podUpdateItem struct {
    	namespace string
    	name      string
    }
    
    // Controller is the controller that manages node's life cycle.
    type Controller struct {
    	taintManager *tainteviction.Controller
    
    	podLister         corelisters.PodLister
    	podInformerSynced cache.InformerSynced
    	kubeClient        clientset.Interface
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      Cluster* GetClusterForCyclesGraphNode(int node_id) {
        // We have to check `graph_->FindNodeId(node) == nullptr` because we add all
        // nodes in [0, graph_->num_node_ids()) to the cycle detection graph but the
        // TF graph may be missing some node ids.
        if (node_id >= graph_->num_node_ids() ||
            graph_->FindNodeId(node_id) == nullptr) {
          return nullptr;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. src/internal/trace/order.go

    // can happen on completely different threads. We want an explicit
    // partial order edge between start and end here, otherwise we're
    // relying entirely on timestamps to make sure we don't advance a
    // GCEnd for a _different_ GC cycle if timestamps are wildly broken.
    func (o *ordering) advanceGCActive(ev *baseEvent, evt *evTable, m ThreadID, gen uint64, curCtx schedCtx) (schedCtx, bool, error) {
    	seq := ev.args[0]
    	if gen == o.initialGen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    		//   D <---- C
    
    		// To break the cycle, we pick an unused register, say R,
    		// and put a copy of B there.
    		//   A ----> B
    		//   ^       |
    		//   |       |
    		//   |       v
    		//   D <---- C <---- R=copyofB
    		// When we resume the outer loop, the A->B move can now proceed,
    		// and eventually the whole cycle completes.
    
    		// Copy any cycle location to a temp register. This duplicates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            while (src != null) {
                if (!sources.add(src)) {
                    String cycle = sources.stream().map(Configuration::getName).collect(Collectors.joining(" -> ")) + " -> " + getName();
                    throw new InvalidUserDataException("Cycle detected in consistent resolution sources: " + cycle);
                }
                src = src.getConsistentResolutionSource();
            }
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            e.cause.message == 'Cannot create service of type Integer using method DefaultServiceRegistryTest$ProviderWithCycle.createInteger() as there is a problem with parameter #1 of type String.'
            e.cause.cause.message == 'Cycle in dependencies of Service String at DefaultServiceRegistryTest$ProviderWithCycle.createString() detected'
    
            when:
            registry.getAll(Number)
    
            then:
            e = thrown()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    			if _, ok := states[h]; ok {
    				// We've found a cycle.
    				// To diagnose it, set debug to 2 and start again,
    				// so that we'll print all rules applied until we complete another cycle.
    				// If debug is already >= 2, we've already done that, so it's time to crash.
    				if debug < 2 {
    					debug = 2
    					states = make(map[string]bool)
    				} else {
    					f.Fatalf("rewrite cycle detected")
    				}
    			}
    			states[h] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top