Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for _Graph (0.13 sec)

  1. src/cmd/compile/internal/ssa/prove.go

    		state: descend,
    	})
    
    	idom := f.Idom()
    	sdom := f.Sdom()
    
    	// DFS on the dominator tree.
    	//
    	// For efficiency, we consider only the dominator tree rather
    	// than the entire flow graph. On the way down, we consider
    	// incoming branches and accumulate conditions that uniquely
    	// dominate the current block. If we discover a contradiction,
    	// we can eliminate the entire block and all of its children.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Verifying this ensures the maximum level of security: metadata files typically tell what transitive dependencies will be included, so a compromised metadata file may cause the introduction of undesired dependencies in the graph.
    However, because all artifacts are verified, such artifacts would in general easily be discovered by you, because they would cause a checksum verification failure (checksums would be _missing_ from verification metadata).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/Futures.java

     * article on <a href="https://github.com/google/guava/wiki/ListenableFutureExplained">{@code
     * ListenableFuture}</a>.
     *
     * <p>The main purpose of {@code ListenableFuture} is to help you chain together a graph of
     * asynchronous operations. You can chain them together manually with calls to methods like {@link
     * Futures#transform(ListenableFuture, Function, Executor) Futures.transform}, but you will often
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            def node4 = selectNextTaskNode()
    
            then:
            assertNoMoreWorkToStartButNotAllComplete()
            node4.task == mustRunAfter
        }
    
        def "handles an exception while walking the task graph when an enforced task is present"() {
            given:
            Task finalizer = task("finalizer", type: BrokenTask)
            _ * finalizer.outputFiles >> { throw new RuntimeException("broken") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    			"c = 0", "d = 0", "b = d + c", "e = 0", "a = e + c",
    		}},
    		// emit an initializer for n:1 initializations only once (not for each node
    		// on the lhs which may appear in different order in the dependency graph)
    		{`package p12; var (a = x; b = 0; x, y = m[0]; m map[int]int)`, []string{
    			"b = 0", "x, y = m[0]", "a = x",
    		}},
    		// test case from spec section on package initialization
    		{`package p12
    
    		var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. src/reflect/type.go

    	// process that next depth level.
    	var nextCount map[*structType]int
    
    	// visited records the structs that have been considered already.
    	// Embedded pointer fields can create cycles in the graph of
    	// reachable embedded types; visited avoids following those cycles.
    	// It also avoids duplicated effort: if we didn't find the field in an
    	// embedded type T at level 2, we won't find it in one at level 4 either.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    			"c = 0", "d = 0", "b = d + c", "e = 0", "a = e + c",
    		}},
    		// emit an initializer for n:1 initializations only once (not for each node
    		// on the lhs which may appear in different order in the dependency graph)
    		{`package p12; var (a = x; b = 0; x, y = m[0]; m map[int]int)`, []string{
    			"b = 0", "x, y = m[0]", "a = x",
    		}},
    		// test case from spec section on package initialization
    		{`package p12
    
    		var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    func (c *typeConv) Type(dtype dwarf.Type, pos token.Pos) *Type {
    	return c.loadType(dtype, pos, "")
    }
    
    // loadType recursively loads the requested dtype and its dependency graph.
    func (c *typeConv) loadType(dtype dwarf.Type, pos token.Pos, parent string) *Type {
    	// Always recompute bad pointer typedefs, as the set of such
    	// typedefs changes as we see more types.
    	checkCache := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top