Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 320 for reachable (0.14 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    // of type information in the compiler: during compilation of package P,
    // the compiler emits an export data file that describes the type of
    // every object (named thing) defined in package P, plus every object
    // indirectly reachable from one of those objects. Thus the downstream
    // compiler of package Q need only load one export data file per direct
    // import of Q, and it will learn everything about the API of package P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

                }
    
            val disableInline = effectiveConfiguration.getBoolean(CommonConfigurationKeys.DISABLE_INLINE)
    
            // The binding context needs to be built from all files with reachable inline functions, as such files may contain classes whose
            // descriptors must be available in the binding context for the IR backend. Note that the full bytecode is only generated for
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K 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/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)
  5. 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)
  6. 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)
  7. src/go/types/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.Name
    		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)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21325")
        def "finalizer can have dependencies that are not reachable from first discovered finalized task and reachable from second discovered finalized task"() {
            buildFile '''
                task classes(type: BreakingTask) {
                }
    
                task jar(type: BreakingTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. src/runtime/gc_test.go

    		t.Fatalf("live object not in reachable set; want %b, got %b", want, got)
    	}
    	if bits.OnesCount64(got&^want) > 1 {
    		// Note: we can occasionally have a value that is retained even though
    		// it isn't live, due to conservative scanning of stack frames.
    		// See issue 67204. For now, we allow a "slop" of 1 unintentionally
    		// retained object.
    		t.Fatalf("dead object in reachable set; want %b, got %b", want, got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	"istio.io/istio/pkg/workloadapi"
    )
    
    type InboundBinding struct {
    	Port     uint32
    	Protocol workloadapi.ApplicationTunnel_Protocol
    }
    
    type Waypoint struct {
    	krt.Named
    
    	// Addresses this Waypoint is reachable by. For stock Istio waypoints, this
    	// is is usually the VIP. Tere will always be at least one address in this
    	// list.
    	Addresses []netip.Addr
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top