Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,182 for reachable (0.15 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/FilteredConfigurationIntegrationTest.groovy

        }
    
        // Note: this captures existing behaviour (all files are built) rather than desired behaviour (only those files reachable from selected deps are built)
        def "can use filtered configuration as task input"() {
            createDirs("child1", "child2")
            settingsFile << """
    rootProject.name = "main"
    include "child1", "child2"
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/ProtocolToModelAdapterTest.groovy

            def model6 = converter.builder(TestModel.class).mixInTo(TestProject, "instance").build(protocolModel)
            model6.is(model5)
        }
    
        def "does not reuse views when some view reachable has different mix ins"() {
            TestProtocolModel protocolModel = Mock()
            TestProtocolProject protocolProject = Mock()
            _ * protocolModel.getProject() >> protocolProject
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  3. pilot/pkg/xds/xdsgen.go

    // Evaluate the controlPlane lazily in order to allow "POD_NAME" env var setting after running the process.
    var controlPlane = lazy.New(func() (*core.ControlPlane, error) {
    	// The Pod Name (instance identity) is in PilotArgs, but not reachable globally nor from DiscoveryServer
    	podName := env.Register("POD_NAME", "", "").Get()
    	byVersion, err := json.Marshal(IstioControlPlaneInstance{
    		Component: "istiod",
    		ID:        podName,
    		Info:      istioversion.Info,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    type Block struct {
    	Nodes []ast.Node // statements, expressions, and ValueSpecs
    	Succs []*Block   // successor nodes in the graph
    	Index int32      // index within CFG.Blocks
    	Live  bool       // block is reachable from entry
    	Kind  BlockKind  // block kind
    	Stmt  ast.Stmt   // statement that gave rise to this block (see BlockKind for details)
    
    	succs2 [2]*Block // underlying array for Succs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/labels.go

    	// If there are any forward jumps left, no label was found for
    	// the corresponding goto statements. Either those labels were
    	// never defined, or they are inside blocks and not reachable
    	// for the respective gotos.
    	for _, jmp := range fwdJumps {
    		var msg string
    		var code Code
    		name := jmp.Label.Value
    		if alt := all.Lookup(name); alt != nil {
    			msg = "goto %s jumps into block"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

                        def reachableClasses = gradleApiClasses.findAll { reachable(it) }
                        if (!reachableClasses.empty) {
                            throw new IllegalArgumentException("These classes should not be visible to the worker action: " + reachableClasses)
                        }
                    }
    
                    boolean reachable(String classname) {
                        try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_extended_nonce.go

    // Speaking on the cryptographic safety, the limit on the number of operations that can be preformed
    // with a single seed with derived keys and randomly generated nonces is not practically reachable.
    // Thus, the scheme does not impose any specific requirements on the seed rotation schedule.
    // Reusing the same seed is safe to do over time and across process restarts.  Whenever a new
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

        contains a subobject "self.bar" which itself has an exported function
        "baz", then the function will have an exported name "bar.baz".
        If an object in the object graph is reachable via multiple paths
        from the root of the object graph, then this array can have multiple
        entries.
        TODO(silvasean): This design should be reconsidered after
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/inittask.go

    	var h lexHeap
    
    	// m maps from an inittask symbol for package p to the number of
    	// p's direct imports that have not yet been scheduled.
    	m := map[loader.Sym]int{}
    
    	// Find all reachable inittask records from the roots.
    	// Keep track of the dependency edges between them in edges.
    	// Keep track of how many imports each package has in m.
    	// q is the list of found but not yet explored packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    	for i, s := range specials {
    		if !s.done {
    			printlock()
    			println("runtime: object", i, "was not swept")
    			throw("IsReachable failed")
    		}
    		if s.reachable {
    			mask |= 1 << i
    		}
    		lock(&mheap_.speciallock)
    		mheap_.specialReachableAlloc.free(unsafe.Pointer(s))
    		unlock(&mheap_.speciallock)
    	}
    
    	return mask
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top