Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 204 for circle (0.15 sec)

  1. guava-tests/test/com/google/common/graph/TraverserTest.java

       *
       * {@code <>} indicates a self-loop
       */
      private static final SuccessorsFunction<Character> MULTI_GRAPH =
          createDirectedGraph("aa", "dd", "ab", "ac", "ca", "cd", "bd");
    
      /** A directed graph with a single cycle: a -> b -> c -> d -> a. */
      private static final SuccessorsFunction<Character> CYCLE_GRAPH =
          createDirectedGraph("ab", "bc", "cd", "da");
    
      /**
       * Same as {@link #CYCLE_GRAPH}, but with an extra a->c edge.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/AbstractTypeMetadataWalker.java

            protected void onNestedNodeCycle(@Nullable String firstOccurrenceQualifiedName, String secondOccurrenceQualifiedName) {
                throw new IllegalStateException(String.format("Cycles between nested beans are not allowed. Cycle detected between: '%s' and '%s'.", firstOccurrenceQualifiedName, secondOccurrenceQualifiedName));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. src/cmd/go/internal/list/list.go

    		// provides the guarantee. In the case of an import cycle, the last package
    		// visited in the cycle, importing the first encountered package in the cycle,
    		// is visited first. The cycle import error will be bubbled up in the traversal
    		// order up to the first package in the cycle, covering all the packages
    		// in the cycle.
    		if !*listDeps {
    			all = load.PackageList(pkgs)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. src/encoding/json/encode.go

    		// We're a large number of nested ptrEncoder.encode calls deep;
    		// start checking if we've run into a pointer cycle.
    		ptr := v.UnsafePointer()
    		if _, ok := e.ptrSeen[ptr]; ok {
    			e.error(&UnsupportedValueError{v, fmt.Sprintf("encountered a cycle via %s", v.Type())})
    		}
    		e.ptrSeen[ptr] = struct{}{}
    		defer delete(e.ptrSeen, ptr)
    	}
    	e.WriteByte('{')
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            declaredReplacements 'a->b', 'b->c', 'c->a'
            expect:
            def failure = fails()
            failure.assertHasCause("Cannot declare module replacement org:c->org:a because it introduces a cycle: org:c->org:a->org:b->org:c")
        }
    
        def "replacement target unresolved"() {
            publishedMavenModules('a')
            buildFile << "dependencies { conf 'org:a:1', 'org:b:1' }\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

                    conf 'org:foo:1.0'
                    other 'org:foo:1.1'
                }
            """
    
            when:
            fails ':checkDeps'
    
            then:
            failure.assertHasCause 'Cycle detected in consistent resolution sources: conf -> other -> another -> conf'
        }
    
        def "resolution rules have higher priority than consistency"() {
            repository {
                'org:foo:1.0'()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. pkg/scheduler/scheduler_test.go

    		name                       string
    		podUpdatedDuringScheduling bool // pod is updated during a scheduling cycle
    		podDeletedDuringScheduling bool // pod is deleted during a scheduling cycle
    		expect                     *v1.Pod
    	}{
    		{
    			name:                       "pod is updated during a scheduling cycle",
    			podUpdatedDuringScheduling: true,
    			expect:                     testPodUpdated,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity.go

    	logger.V(4).Info("node was created or updated, but it doesn't make this pod schedulable", "pod", klog.KObj(pod), "node", klog.KObj(modifiedNode))
    	return framework.QueueSkip, nil
    }
    
    // PreFilter builds and writes cycle state used by Filter.
    func (pl *NodeAffinity) PreFilter(ctx context.Context, cycleState *framework.CycleState, pod *v1.Pod) (*framework.PreFilterResult, *framework.Status) {
    	affinity := pod.Spec.Affinity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ModuleDependencyExcludeResolveIntegrationTest.groovy

        }
    
        /**
         * Exclude of transitive dependency involved in a dependency cycle.
         *
         * Dependency graph:
         * a -> b -> c -> d -> c
         *
         * 'c' is excluded on dependency a->b
         */
        def "can excluded module involved in dependency cycle"() {
            given:
            repository {
                'a:a:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. src/runtime/pinner.go

    		return true
    	}
    	pinnerBits := span.getPinnerBits()
    	// these pinnerBits might get unlinked by a concurrently running sweep, but
    	// that's OK because gcBits don't get cleared until the following GC cycle
    	// (nextMarkBitArenaEpoch)
    	if pinnerBits == nil {
    		return false
    	}
    	objIndex := span.objIndex(uintptr(ptr))
    	pinState := pinnerBits.ofObject(objIndex)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top