Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 713 for reachable (0.34 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util.h

    namespace tensorflow {
    
    // Checks if a graph or reachable functions in the library have any
    // StatefulPartitionedOps with _XlaMustCompile=true. The function library will
    // be skipped if nullptr is provided.
    bool IsSupportedByNonReplicatedBridge(
        const Graph& graph, const FunctionLibraryDefinition* function_library);
    
    // Checks if a graph or reachable functions in the library have any ops with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 16:33:22 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/deadcode.go

    //
    // There are three ways a method of a reachable type can be invoked:
    //
    //  1. direct call
    //  2. through a reachable interface type
    //  3. reflect.Value.Method (or MethodByName), or reflect.Type.Method
    //     (or MethodByName)
    //
    // The first case is handled by the flood fill, a directly called method
    // is marked as reachable.
    //
    // The second case is handled by decomposing all reachable interface
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/ingress.go

    func (c *ingressImpl) Cluster() cluster.Cluster {
    	return c.cluster
    }
    
    // HTTPAddresses returns the externally reachable HTTP hosts and port (80) of the component.
    func (c *ingressImpl) HTTPAddresses() ([]string, []int) {
    	return c.AddressesForPort(80)
    }
    
    // TCPAddresses returns the externally reachable TCP hosts and port (31400) of the component.
    func (c *ingressImpl) TCPAddresses() ([]string, []int) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/Graphs.java

        }
    
        return transitiveClosure.build();
      }
    
      /**
       * Returns the set of nodes that are reachable from {@code node}. Node B is defined as reachable
       * from node A if there exists a path (a sequence of adjacent outgoing edges) starting at node A
       * and ending at node B. Note that a node is always reachable from itself via a zero-length path.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/Graphs.java

        }
    
        return transitiveClosure.build();
      }
    
      /**
       * Returns the set of nodes that are reachable from {@code node}. Node B is defined as reachable
       * from node A if there exists a path (a sequence of adjacent outgoing edges) starting at node A
       * and ending at node B. Note that a node is always reachable from itself via a zero-length path.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top