Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 554 for reachable (0.21 sec)

  1. 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)
  2. 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)
  3. pkg/proxy/serviceport.go

    	InternalPolicyLocal() bool
    	// HintsAnnotation returns the value of the v1.DeprecatedAnnotationTopologyAwareHints annotation.
    	HintsAnnotation() string
    	// ExternallyAccessible returns true if the service port is reachable via something
    	// other than ClusterIP (NodePort/ExternalIP/LoadBalancer)
    	ExternallyAccessible() bool
    	// UsesClusterEndpoints returns true if the service port ever sends traffic to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/html.go

    	return err
    }
    
    type htmlFuncPrinter struct {
    	w io.Writer
    }
    
    func (p htmlFuncPrinter) header(f *Func) {}
    
    func (p htmlFuncPrinter) startBlock(b *Block, reachable bool) {
    	var dead string
    	if !reachable {
    		dead = "dead-block"
    	}
    	fmt.Fprintf(p.w, "<ul class=\"%s ssa-print-func %s\">", b, dead)
    	fmt.Fprintf(p.w, "<li class=\"ssa-start-block\">%s:", b.HTML())
    	if len(b.Preds) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    // reading export data; the latter may have a smaller Scope since
    // export data trims objects that are not reachable from an exported
    // declaration. For example, the For function will return a path for
    // an exported method of an unexported type that is not reachable
    // from any public declaration; this path will cause the Object
    // function to fail if called on a package loaded from export data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/runtime/profbuf.go

    	// can overwrite gp.labels, the value of gp.labels is stable during
    	// this signal handler: it will still be reachable from gp when
    	// we finish executing. If a GC is in progress right now, it must
    	// keep gp.labels alive, because gp.labels is reachable from gp.
    	// If gp were to overwrite gp.labels, the deletion barrier would
    	// still shade that pointer, which would preserve it for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/go/doc/example.go

    	// referenced by the body.
    
    	unresolved := make(map[string]bool)
    	var depDecls []ast.Decl
    	usedDecls := make(map[ast.Decl]bool)   // set of top-level decls reachable from the body
    	usedObjs := make(map[*ast.Object]bool) // set of objects reachable from the body (each declared by a usedDecl)
    
    	var inspectFunc func(ast.Node) bool
    	inspectFunc = func(n ast.Node) bool {
    		switch e := n.(type) {
    		case *ast.Ident:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMaker.java

       * Specifies that each value (not key) stored in the map should be wrapped in a {@link
       * WeakReference} (by default, strong references are used).
       *
       * <p>Weak values will be garbage collected once they are weakly reachable. This makes them a poor
       * candidate for caching.
       *
       * <p><b>Warning:</b> when this method is used, the resulting map will use identity ({@code ==})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/go.go

    		return
    	}
    
    	// Add dynamic symbols.
    	for _, s := range ctxt.dynexp {
    		// Consistency check.
    		if !ctxt.loader.AttrReachable(s) {
    			panic("dynexp entry not reachable")
    		}
    
    		Adddynsym(ctxt.loader, &ctxt.Target, &ctxt.ArchSyms, s)
    	}
    
    	for _, lib := range dedupLibraries(ctxt, dynlib) {
    		adddynlib(ctxt, lib)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top