Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 169 for reachable (0.28 sec)

  1. src/internal/reflectlite/value.go

    func (f flag) ro() flag {
    	if f&flagRO != 0 {
    		return flagStickyRO
    	}
    	return 0
    }
    
    func (v Value) typ() *abi.Type {
    	// Types are either static (for compiler-created types) or
    	// heap-allocated but always reachable (for reflection-created
    	// types, held in the central map). So there is no need to
    	// escape types. noescape here help avoid unnecessary escape
    	// of v.
    	return (*abi.Type)(abi.NoEscape(unsafe.Pointer(v.typ_)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/config.go

    	// StatefulSet indicates that the pod should be backed by a StatefulSet. This implies Headless=true
    	// as well.
    	StatefulSet bool
    
    	// StaticAddress for some echo implementations is an address locally reachable within
    	// the test framework and from the echo Cluster's network.
    	StaticAddresses []string
    
    	// ServiceAccount (k8s only) indicates that a service account should be created
    	// for the deployment.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. README.md

    | Dashboard                                                                                   | Creating a bucket                                                                           |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/ep_filters_test.go

    			{Network: "network2", Address: "20.0.0.3"},
    		},
    
    		// network3 has no endpoints.
    
    		// network4 has a single endpoint, but not gateway so it will always
    		// be considered directly reachable.
    		{Cluster: "cluster4"}: {
    			{Network: "network4", Address: "40.0.0.1"},
    		},
    	}}
    	// apply common properties
    	for sk, shard := range shards.Shards {
    		for i, ep := range shard {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

          if (!callee) continue;
          if (funcs_for_cluster->second.count(callee)) return true;
        }
        return false;
      };
    
      // Populates skip set with functions reachable from TPUPartionedCall ops.
      const auto functions_to_skip =
          FindTPUPartitionedCallReachableFunctions(getOperation());
      for (func::FuncOp func_op : getOperation().getOps<func::FuncOp>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/emit.go

    	ml := rtcov.Meta.List
    
    	// In the normal case (go build -o prog.exe ... ; ./prog.exe)
    	// len(ml) will always be non-zero, but we check here since at
    	// some point this function will be reachable via user-callable
    	// APIs (for example, to write out coverage data from a server
    	// program that doesn't ever call os.Exit).
    	if len(ml) == 0 {
    		return nil, nil
    	}
    
    	s := &emitState{
    		metalist: ml,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. src/runtime/extern.go

    	never recycled.
    
    	gccheckmark: setting gccheckmark=1 enables verification of the
    	garbage collector's concurrent mark phase by performing a
    	second mark pass while the world is stopped.  If the second
    	pass finds a reachable object that was not found by concurrent
    	mark, the garbage collector will panic.
    
    	gcpacertrace: setting gcpacertrace=1 causes the garbage collector to
    	print information about the internal state of the concurrent pacer.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. 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)
  9. src/syscall/syscall_linux_test.go

    		n, err := syscall.Read(int(rd.Fd()), data)
    		if !(n == 0 && err == nil) {
    			t.Errorf("expected read to return 0, got %d, %s", n, err)
    		}
    
    		// Clean up rd and also ensure rd stays reachable so
    		// it doesn't get closed by GC.
    		rd.Close()
    		wg.Done()
    	}()
    	<-ready
    
    	// Loop here to give the goroutine more time to block in read.
    	// Generally this will trigger on the first iteration anyway.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. src/internal/abi/type.go

    }
    
    // TypeOf returns the abi.Type of some value.
    func TypeOf(a any) *Type {
    	eface := *(*EmptyInterface)(unsafe.Pointer(&a))
    	// Types are either static (for compiler-created types) or
    	// heap-allocated but always reachable (for reflection-created
    	// types, held in the central map). So there is no need to
    	// escape types. noescape here help avoid unnecessary escape
    	// of v.
    	return (*Type)(NoEscape(unsafe.Pointer(eface.Type)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top