Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,405 for reachable (0.13 sec)

  1. src/runtime/testdata/testprogcgo/pprof_callback.go

    func CgoPprofCallback() {
    	// Issue 50936 was a crash in the SIGPROF handler when the signal
    	// arrived during the exitsyscall following a cgocall(back) in dropg or
    	// execute, when updating mp.curg.
    	//
    	// These are reachable only when exitsyscall finds no P available. Thus
    	// we make C calls from significantly more Gs than there are available
    	// Ps. Lots of runnable work combined with >20us spent in callGo makes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 15:44:05 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalGroup.java

     * limitations under the License.
     */
    
    package org.gradle.execution.plan;
    
    import javax.annotation.Nullable;
    import java.util.LinkedHashSet;
    import java.util.Set;
    
    /**
     * Represents a set of nodes reachable from a particular entry point node (a "requested task")
     */
    public class OrdinalGroup extends NodeGroup {
        private final int ordinal;
        @Nullable
        private final OrdinalGroup previous;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/tests/graph_pruning_preserve_ops.mlir

    // Verifies that specified ops, and ops reachable from those, are preserved.
    
    // CHECK-LABEL: func @preserve_unreachable_tpu_replicate_metadata
    func.func @preserve_unreachable_tpu_replicate_metadata() {
      tf_executor.graph {
        %0 = tf_executor.ControlTrigger {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ResolverResults.java

                 * Implementations are lazy, so that the selection happens only when the contents are queried.
                 *
                 * @param dependencySpec Select only those artifacts reachable from first level dependencies that match the given spec.
                 */
                SelectedArtifactSet select(Spec<? super Dependency> dependencySpec);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 03:03:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/DefaultClassPathProvider.java

            this.moduleRegistry = moduleRegistry;
        }
    
        @Override
        public ClassPath findClassPath(String name) {
            if (name.equals("GRADLE_RUNTIME")) {
                // Use everything reachable from the daemon implementation
                return moduleRegistry.getModule("gradle-daemon-server").getAllRequiredModulesClasspath();
            }
            if (name.equals("GRADLE_INSTALLATION_BEACON")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. 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)
Back to top