Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 947 for reachable (0.18 sec)

  1. pkg/test/util/assert/assert.go

    func ChannelHasItem[T any](t test.Failer, c <-chan T) T {
    	t.Helper()
    	select {
    	case r := <-c:
    		return r
    	case <-time.After(time.Second * 5):
    		t.Fatalf("failed to receive event after 5s")
    	}
    	// Not reachable
    	return ptr.Empty[T]()
    }
    
    // ChannelIsEmpty asserts a channel is empty for at least 20ms
    func ChannelIsEmpty[T any](t test.Failer, c <-chan T) {
    	t.Helper()
    	select {
    	case r := <-c:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Address.kt

      protocols: List<Protocol>,
      connectionSpecs: List<ConnectionSpec>,
      /**
       * Returns this address's proxy selector. Only used if the proxy is null. If none of this
       * selector's proxies are reachable, a direct connection will be attempted.
       */
      @get:JvmName("proxySelector") val proxySelector: ProxySelector,
    ) {
      /**
       * Returns a URL with the hostname and port of the origin server. The path, query, and fragment of
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. cmd/erasure-common.go

    			defer wg.Done()
    			if disks[i] == nil {
    				return
    			}
    			di, err := disks[i].DiskInfo(context.Background(), DiskInfoOptions{})
    			if err != nil || di.Healing {
    				// - Do not consume disks which are not reachable
    				//   unformatted or simply not accessible for some reason.
    				//
    				// - Do not consume disks which are being healed
    				//
    				// - Future: skip busy disks
    				return
    			}
    
    			mu.Lock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. cmd/bootstrap-peer-server.go

    			retries++
    			// after 20 retries start logging that servers are not reachable yet
    			if retries >= 20 {
    				logger.Info(fmt.Sprintf("Waiting for at least %d remote servers with valid configuration to be online", len(clnts)/2))
    				if len(offlineEndpoints) > 0 {
    					logger.Info(fmt.Sprintf("Following servers are currently offline or unreachable %s", offlineEndpoints))
    				}
    				if len(incorrectConfigs) > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/interleaved/interleaved.go

    	for _, fn := range pkg.Funcs {
    		DevirtualizeAndInlineFunc(fn, inlProfile)
    	}
    
    	if base.Flag.LowerL != 0 {
    		// Perform a garbage collection of hidden closures functions that
    		// are no longer reachable from top-level functions following
    		// inlining. See #59404 and #59638 for more context.
    		inline.GarbageCollectUnreferencedHiddenClosures()
    
    		if base.Debug.DumpInlFuncProps != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         * project directory.
         *
         * @return The model resolver or {@code null} if not set.
         */
        ModelResolver getModelResolver();
    
        /**
         * Sets the model resolver to use for resolution of mixins or parents that are not locally reachable from the
         * project directory.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. 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)
Back to top