Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for Interpret (0.42 sec)

  1. src/crypto/tls/tls.go

    // then initiates a TLS handshake, returning the resulting TLS connection. Any
    // timeout or deadline given in the dialer apply to connection and TLS
    // handshake as a whole.
    //
    // DialWithDialer interprets a nil configuration as equivalent to the zero
    // configuration; see the documentation of [Config] for the defaults.
    //
    // DialWithDialer uses context.Background internally; to specify the context,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

        override fun coordinatorNotify(taskRunner: TaskRunner) {
          taskRunner.condition.signal()
        }
    
        /**
         * Wait a duration in nanoseconds. Unlike [java.lang.Object.wait] this interprets 0 as
         * "don't wait" instead of "wait forever".
         */
        @Throws(InterruptedException::class)
        @Suppress("PLATFORM_CLASS_MAPPED_TO_KOTLIN")
        override fun coordinatorWait(
          taskRunner: TaskRunner,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// propagate SRV DNS records for its Pods for the purpose of peer discovery.
    	// The Kubernetes controllers that generate Endpoints and EndpointSlice resources for
    	// Services interpret this to mean that all endpoints are considered "ready" even if the
    	// Pods themselves are not. Agents which consume only Kubernetes generated endpoints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"se...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. src/strconv/atoi.go

    			return maxVal, rangeError(fnParseUint, s0)
    		}
    		n = n1
    	}
    
    	if underscores && !underscoreOK(s0) {
    		return 0, syntaxError(fnParseUint, s0)
    	}
    
    	return n, nil
    }
    
    // ParseInt interprets a string s in the given base (0, 2 to 36) and
    // bit size (0 to 64) and returns the corresponding value i.
    //
    // The string may begin with a leading sign: "+" or "-".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    // happens to scan that argument frame before it is discarded, it will scan the *Inner
    // memory as if it were an *Outer. If the two have different memory layouts, the
    // collection will interpret the memory incorrectly.
    //
    // One such possible incorrect interpretation is to treat two arbitrary memory words
    // (Inner.P1 and Inner.P2 below) as an interface (Outer.R below). Because interpreting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. src/cmd/go/main.go

    	if cfg.CmdName != "tool" {
    		telemetry.Inc("go/subcommand:" + strings.ReplaceAll(cfg.CmdName, " ", "-"))
    	}
    	telemetrystats.Increment()
    	invoke(cmd, args[used-1:])
    	base.Exit()
    }
    
    // lookupCmd interprets the initial elements of args
    // to find a command to run (cmd.Runnable() == true)
    // or else a command group that ran out of arguments
    // or had an unknown subcommand (len(cmd.Commands) > 0).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // propagate SRV DNS records for its Pods for the purpose of peer discovery.
      // The Kubernetes controllers that generate Endpoints and EndpointSlice resources for
      // Services interpret this to mean that all endpoints are considered "ready" even if the
      // Pods themselves are not. Agents which consume only Kubernetes generated endpoints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    			...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// propagate SRV DNS records for its Pods for the purpose of peer discovery.
    	// The Kubernetes controllers that generate Endpoints and EndpointSlice resources for
    	// Services interpret this to mean that all endpoints are considered "ready" even if the
    	// Pods themselves are not. Agents which consume only Kubernetes generated endpoints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top