Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 406 for reachable (0.12 sec)

  1. 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)
  2. 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)
  3. src/cmd/cgo/internal/testplugin/testdata/method3/main.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // An unexported method can be reachable from the plugin via interface
    // when a package is shared. So it need to be live.
    
    package main
    
    import (
    	"plugin"
    
    	"testplugin/method3/p"
    )
    
    var i p.I
    
    func main() {
    	pl, err := plugin.Open("method3.so")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 533 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_hash.txt

    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    [!net:golang.org] skip
    [!git] skip
    
    # fetch commit hash reachable from refs/heads/* and refs/tags/* is OK
    go list -m golang.org/x/time@8be79e1e0910c292df4e79c241bb7e8f7e725959 # on master branch
    
    # fetch other commit hash, even with a non-standard ref, is not OK
    ! go list -m golang.org/x/time@334d83c35137ac2b376c1dc3e4c7733791855a3a # refs/changes/24/41624/3
    stderr 'unknown revision'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 626 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tpu_identity_pruning.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    namespace mlir {
    namespace TFTPU {
    
    namespace {
    
    // This pass removes Identity/IdentityN ops from the TPU computation and
    // reachable functions.
    // TODO(lyandy): Remove this pass once resource op lifting is migrated to use
    // resource alias analysis and support region based control flow. Removing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  6. 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)
  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. subprojects/core/src/test/groovy/org/gradle/initialization/GradleApiSpecAggregatorTest.groovy

    import spock.lang.Specification
    
    import static java.util.Collections.enumeration
    
    class GradleApiSpecAggregatorTest extends Specification {
    
        def "will aggregate specs from all reachable GradleApiSpecProviders"() {
            given:
            def classLoader = Mock(ClassLoader)
            1 * classLoader.getResources("META-INF/services/${GradleApiSpecProvider.class.name}") >>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/well_known_taints.go

    	TaintNodeNotReady = "node.kubernetes.io/not-ready"
    
    	// TaintNodeUnreachable will be added when node becomes unreachable
    	// (corresponding to NodeReady status ConditionUnknown)
    	// and removed when node becomes reachable (NodeReady status ConditionTrue).
    	TaintNodeUnreachable = "node.kubernetes.io/unreachable"
    
    	// TaintNodeUnschedulable will be added when node becomes unschedulable
    	// and removed when node becomes schedulable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 16:23:21 UTC 2022
    - 2K bytes
    - Viewed (0)
Back to top