Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 749 for reachable (0.18 sec)

  1. src/cmd/link/internal/loader/loader_test.go

    	}
    
    	// New symbols should not initially be reachable.
    	if ldr.AttrReachable(es1) || ldr.AttrReachable(es2) || ldr.AttrReachable(es3) {
    		t.Errorf("newly materialized symbols should not be reachable")
    	}
    
    	// ... however it should be possible to set/unset their reachability.
    	ldr.SetAttrReachable(es3, true)
    	if !ldr.AttrReachable(es3) {
    		t.Errorf("expected reachable symbol after update")
    	}
    	ldr.SetAttrReachable(es3, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/gradients.cc

                              const std::vector<Output>& grad_inputs,
                              std::vector<Output>* grad_outputs);
    
      // Returns a list mapping whether each node in the graph is reachable
      // from outputs_. Keyed by node id.
      std::vector<bool> GetReachableNodes();
    
      // Creates the gradient subgraph for a while loop (or just stores
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. src/crypto/tls/boring_test.go

    		}
    		for i := 0; i < 64; i++ {
    			reachable := map[string]bool{leaf.parentOrg: true}
    			reachableFIPS := map[string]bool{leaf.parentOrg: leaf.fipsOK}
    			list := [][]byte{leaf.der}
    			listName := leaf.name
    			addList := func(cond int, c *boringCertificate) {
    				if cond != 0 {
    					list = append(list, c.der)
    					listName += "," + c.name
    					if reachable[c.org] {
    						reachable[c.parentOrg] = true
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. tests/integration/pilot/gateway_test.go

    	// It should be added back
    	retry.UntilSuccessOrFail(t, check)
    }
    
    // Verify that the envoy readiness probes are reachable at
    // https://GatewaySvcIP:15021/healthz/ready . This is being explicitly done
    // to make sure, in dual-stack scenarios both v4 and v6 probes are reachable.
    func TestGatewayReadinessProbes(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleCluster().
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

            }
    
            boolean reachable = false;
            for (Node dependency : consumer.getAllSuccessors()) {
                if (!dependency.isComplete()) {
                    if (doesConsumerDependOnDestroyer(dependency, destroyer)) {
                        reachable = true;
                    }
                }
            }
    
            reachableCache.put(nodePair, reachable);
            return reachable;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/FastFallbackTest.kt

     * `::1` will reach the IPv6 server.
     *
     * By orchestrating two different servers with the same port but different IP addresses, we can
     * test what OkHttp does when both are reachable, or if only one is reachable.
     *
     * This test only runs on host machines that have both IPv4 and IPv6 addresses for localhost.
     */
    @Timeout(30)
    class FastFallbackTest {
      @RegisterExtension
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

      let description = [{
        This is a variation of DecomposeResourceOps pass. It operates on a module and
        only decomposes ops within a device cluster (tf_device.cluster op) and any
        functions reachable from the cluster.
      }];
    
      let constructor = "TFDevice::CreateDecomposeResourceOpsInClusterPass()";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. src/cmd/internal/objabi/reloctype.go

    	R_INITORDER
    
    	// R_WEAK marks the relocation as a weak reference.
    	// A weak relocation does not make the symbol it refers to reachable,
    	// and is only honored by the linker if the symbol is in some other way
    	// reachable.
    	R_WEAK = -1 << 15
    
    	R_WEAKADDR    = R_WEAK | R_ADDR
    	R_WEAKADDROFF = R_WEAK | R_ADDROFF
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    // Use in unitchecker.Run will gob.Register all fact types for the returned
    // graph of analyzers but of course not the ones only reachable from
    // dropped analyzers. To avoid inconsistency about which gob types are
    // registered from run to run, Parse itself gob.Registers all the facts
    // only reachable from dropped analyzers.
    // This is not a particularly elegant API, but this is an internal package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/DetermineExecutionPlanAction.java

     * So if the dependency is only required by a finalizer, then it should not start until the finalizer is ready to start
     * (ie the finalized task has completed). But if the dependency is also required by some node reachable from the
     * command-line tasks, then it should start as soon as its dependencies are ready.
     * Or if the dependency is required by multiple finalizers, then it should not start until one of those finalizer
     * is ready to start.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 17.7K bytes
    - Viewed (0)
Back to top