Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 645 for reachable (0.16 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            assertTaskReadyAndNoMoreToStart(finalizerD)
            assertAllWorkComplete()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21000")
        def "finalizer dependencies reachable from entry task and finalized by the finalizer can run in parallel"() {
            TaskInternal finalizer = createTask("finalizer", project, Async)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  2. doc/go_mem.html

    <h3 id="finalizer">Finalizers</h3>
    
    <p>
    The <a href="/pkg/runtime/"><code>runtime</code></a> package provides
    a <code>SetFinalizer</code> function that adds a finalizer to be called when
    a particular object is no longer reachable by the program.
    A call to <code>SetFinalizer(x, f)</code> is synchronized before the finalization call <code>f(x)</code>.
    </p>
    
    <h3 id="more">Additional Mechanisms</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.19
    
    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    type Ingress struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/pcln.go

    	// get a dummy function inserted between because the external linker can place
    	// functions in those areas. We mark those areas as not covered by the Go
    	// runtime.
    	//
    	// On most platforms this is the number of reachable functions.
    	nfunc int32
    
    	// The number of filenames in runtime.filetab.
    	nfiles uint32
    }
    
    // addGeneratedSym adds a generator symbol to pclntab, returning the new Sym.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/controller.go

    // address field if the hostname is not a wildcard, or when resolution
    // is not NONE. The IPs are allocated from the reserved Class E subnet
    // (240.240.0.0/16) that is not reachable outside the pod or reserved
    // Benchmarking IP range (2001:2::/48) in RFC5180. When DNS
    // capture is enabled, Envoy will resolve the DNS to these IPs. The
    // listeners for TCP services will also be set up on these IPs. The
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho.go

    	// So we sort them here and pre-allocate dynid for them
    	// See https://golang.org/issue/4029
    	for _, s := range ctxt.dynexp {
    		if !ldr.AttrReachable(s) {
    			panic("dynexp symbol is not reachable")
    		}
    	}
    	collectmachosyms(ctxt)
    	sort.Slice(sortsym[:nsortsym], func(i, j int) bool {
    		s1 := sortsym[i]
    		s2 := sortsym[j]
    		k1 := symkind(ldr, s1)
    		k2 := symkind(ldr, s2)
    		if k1 != k2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  7. src/internal/types/errors/codes.go

    	// selector, rather than a field selector, or when the field is embedded via
    	// a pointer.
    	//
    	// Per the spec:
    	//
    	//  "If f is an embedded field, it must be reachable without pointer
    	//  indirections through fields of the struct. "
    	//
    	// Example:
    	//  import "unsafe"
    	//
    	//  type T struct { f int }
    	//  type S struct { *T }
    	//  var s S
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // Since we might have inserted and removed nodes from the graph, fix
      // source/sink edges and reconstruct the RPO ordering of nodes
      FixupSourceAndSinkEdges(graph_.get());
    
      // Prune nodes in the graph that are not reachable from the output.
      if (specs_.prune_unused_nodes) {
        std::unordered_set<const Node*> prune_start;
        TF_RETURN_IF_ERROR(GetInputOutputNodes(*node_name_map, &prune_start));
        if (!prune_start.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    	// the -strictdups checks fail.
    	if checkStrictDups > 1 && len(flagVariants) > 1 {
    		checkStrictDups = 1
    	}
    
    	// Make a pass through all data symbols, looking for those
    	// corresponding to reachable, Go-generated, user-visible
    	// global variables. For each global of this sort, locate
    	// the corresponding compiler-generated DIE symbol and tack
    	// it onto the list associated with the unit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. src/encoding/json/encode.go

    }
    
    // typeFields returns a list of fields that JSON should recognize for the given type.
    // The algorithm is breadth-first search over the set of structs to include - the top struct
    // and then any reachable anonymous structs.
    //
    // typeFields should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
Back to top