Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 947 for reachable (0.14 sec)

  1. src/internal/weak/pointer.go

    weakly-pointed-to object becomes eligible for reclamation by the garbage
    collector.
    More specifically, weak pointers become nil as soon as the garbage collector
    identifies that the object is unreachable, before it is made reachable
    again by a finalizer.
    In terms of the C# language, these semantics are roughly equivalent to the
    the semantics of "short" weak references.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:13:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/runtime/debug.go

    	}
    	// Force stack movement, unless the stack is already poisoned.
    	if gp.stackguard0 < stackPoisonMin {
    		gp.stackguard0 = stackForceMove
    	}
    }
    
    // debugPinnerKeepUnpin is used to make runtime.(*Pinner).Unpin reachable.
    var debugPinnerKeepUnpin bool = false
    
    // debugPinnerV1 returns a new Pinner that pins itself. This function can be
    // used by debuggers to easily obtain a Pinner that will not be garbage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/CompositeNodeGroup.java

     */
    
    package org.gradle.execution.plan;
    
    import com.google.common.collect.ImmutableSet;
    
    import javax.annotation.Nullable;
    import java.util.Set;
    
    /**
     * Represents a group of nodes that are reachable from more than one root node.
     */
    public class CompositeNodeGroup extends HasFinalizers {
        private final NodeGroup ordinalGroup;
        private final Set<FinalizerGroup> finalizerGroups;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loadpe/seh.go

    	unwCodeSize        = 2 // Bytes per unwind code.
    )
    
    // processSEH walks all pdata relocations looking for exception handler function symbols.
    // We want to mark these as reachable if the function that they protect is reachable
    // in the final binary.
    func processSEH(ldr *loader.Loader, arch *sys.Arch, pdata sym.LoaderSym, xdata sym.LoaderSym) error {
    	switch arch.Family {
    	case sys.AMD64:
    		ldr.SetAttrReachable(pdata, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 16:20:28 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. security/pkg/k8s/chiron/utils_test.go

    		t.Fatalf("error to get the server 2 port: %v", err)
    	}
    
    	// Server 1 should be reachable, since it is not closed.
    	if !isTCPReachable(host, port1) {
    		t.Fatal("server 1 is unreachable")
    	}
    
    	// After closing server 2, server 2 should not be reachable
    	server2.httpServer.Close()
    	if isTCPReachable(host, port2) {
    		t.Fatal("server 2 is reachable")
    	}
    }
    
    func TestSubmitCSR(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. src/runtime/mfinal.go

    //
    // A finalizer may run as soon as an object becomes unreachable.
    // In order to use finalizers correctly, the program must ensure that
    // the object is reachable until it is no longer required.
    // Objects stored in global variables, or that can be found by tracing
    // pointers from a global variable, are reachable. A function argument or
    // receiver may become unreachable at the last point where the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/echotest/filters.go

    	}).GetMatches(to)
    }
    
    // ReachableDestinations filters out known-unreachable destinations given a source.
    // - from a naked pod, we can't reach cross-network endpoints or VMs
    // - we can't reach cross-cluster headless endpoints
    // - from an injected Pod, only non-naked cross-network endpoints are reachable
    var ReachableDestinations CombinationFilter = func(from echo.Instance, to echo.Instances) echo.Instances {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. pilot/pkg/xds/endpoints/ep_filters.go

    			// Check if the endpoint is directly reachable. It's considered directly reachable if
    			// the endpoint is either on the local network or on a remote network that can be reached
    			// directly from the local network.
    			if b.proxy.InNetwork(epNetwork) || len(gateways) == 0 {
    				// The endpoint is directly reachable - just add it.
    				// If there is no gateway, the address must not be empty
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. pkg/proxy/topology.go

    //
    //   - The combined list of all endpoints reachable from this node (which is the union of the
    //     previous two lists, but in the case where it is identical to one or the other, we avoid
    //     allocating a separate list).
    //
    //   - An indication of whether the service has any endpoints reachable from anywhere in the
    //     cluster. (This may be true even if allReachableEndpoints is empty.)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util.cc

        const Graph& graph, const FunctionLibraryDefinition* function_library,
        const std::function<bool(const Graph& graph)>& predicate) {
      if (predicate(graph)) {
        return success();
      }
    
      // Check if any reachable functions from the graph has the target attribute.
      GraphDef graph_def;
      graph.ToGraphDef(&graph_def);
      if (!function_library) return failure();
      for (const std::string& func_name :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 12:22:33 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top