Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for reachable (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    }
    
    // describe returns a string describing the type typ contained within the type
    // set of inType. If non-empty, inName is used as the name of inType (this is
    // necessary so that we can use alias type names that may not be reachable from
    // inType itself).
    func describe(typ, inType types.Type, inName string) string {
    	name := inName
    	if typ != inType {
    		name = typeName(typ)
    	}
    	if name == "" {
    		return ""
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/deployment/builder.go

    //  2. Can call every other Instance in the group (i.e. have received Envoy config
    //     from Pilot).
    //
    // If a test needs to verify that one Instance is NOT reachable from another, there are
    // a couple of options:
    //
    //  1. Build a group while all Instances ARE reachable. Then apply a policy
    //     disallowing the communication.
    //  2. Build the source and destination Instances in separate groups and then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/runtime/gc_test.go

    		t.Fatalf("live object not in reachable set; want %b, got %b", want, got)
    	}
    	if bits.OnesCount64(got&^want) > 1 {
    		// Note: we can occasionally have a value that is retained even though
    		// it isn't live, due to conservative scanning of stack frames.
    		// See issue 67204. For now, we allow a "slop" of 1 unintentionally
    		// retained object.
    		t.Fatalf("dead object in reachable set; want %b, got %b", want, got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	"istio.io/istio/pkg/workloadapi"
    )
    
    type InboundBinding struct {
    	Port     uint32
    	Protocol workloadapi.ApplicationTunnel_Protocol
    }
    
    type Waypoint struct {
    	krt.Named
    
    	// Addresses this Waypoint is reachable by. For stock Istio waypoints, this
    	// is is usually the VIP. Tere will always be at least one address in this
    	// list.
    	Addresses []netip.Addr
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    	// Initialize matches to contain the variable types we are searching for.
    	matches := make(map[types.Type][]string)
    	for _, typ := range typs {
    		if typ == nil {
    			continue // TODO(adonovan): is this reachable?
    		}
    		matches[typ] = nil // create entry
    	}
    
    	seen := map[types.Object]struct{}{}
    	ast.Inspect(node, func(n ast.Node) bool {
    		if n == nil {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	// to the built-in super-user group, this will pass. In all other cases an error will be returned.
    	// The poll here is required to ensure the API server is reachable during "kubeadm init" workflows.
    	err = wait.PollUntilContextTimeout(
    		ctx,
    		retryInterval,
    		retryTimeout,
    		true, func(ctx context.Context) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top