Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 368 for alternate (0.14 sec)

  1. src/cmd/go/internal/work/build.go

    		instead of making them read-only.
    	-modfile file
    		in module aware mode, read (and possibly write) an alternate go.mod
    		file instead of the one in the module root directory. A file named
    		"go.mod" must still be present in order to determine the module root
    		directory, but it is not accessed. When -modfile is specified, an
    		alternate go.sum file is also used: its path is derived from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    	}
    	tr.mu.Unlock()
    }
    
    // useRegisteredProtocol reports whether an alternate protocol (as registered
    // with Transport.RegisterProtocol) should be respected for this request.
    func (t *Transport) useRegisteredProtocol(req *Request) bool {
    	if req.URL.Scheme == "https" && req.requiresHTTP1() {
    		// If this request requires HTTP/1, don't use the
    		// "https" alternate protocol, which is used by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. pkg/model/proxy.go

    	// of the workload instance (ex: k8s deployment for a k8s pod).
    	Owner string `json:"OWNER,omitempty"`
    
    	// PilotSAN is the list of subject alternate names for the xDS server.
    	PilotSubjectAltName []string `json:"PILOT_SAN,omitempty"`
    
    	// XDSRootCert defines the root cert to use for XDS connections
    	XDSRootCert string `json:"-"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    ====
    
    <1> Define a closure which takes a single `JvmTestSuite` parameter and configures it
    <2> Apply the closure to a test suite, using the default (`test`) test suite
    <3> Alternate means of applying a configuration closure to a test suite outside of its declaration, using the `integrationTest` test suite
    
    [[sec:differences_with_top_level_dependencies]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    ====
    
    <1> Add a repository to resolve the codec library - this can be a different repository than the one used to build the `CreateMD5` task class.
    <2> Add a _configuration_ to resolve our codec library version.
    <3> Configure an alternate, compatible version of https://commons.apache.org/proper/commons-codec/[Apache Commons Codec].
    <4> Configure the `md5` task to use the configuration as its classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            1 * transform.transform(_)
        }
    
        def "can alternate insert and put"() {
            when:
            property.insert("k1", "1")
            property.put("k2", "2")
            property.insert("k3", "3")
            property.put("k2", "4")
    
            then:
            assertValueIs(['k1': '1', 'k2': '4', 'k3': '3'])
        }
    
        def "can alternate put and insert"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  7. src/encoding/base32/base32.go

     * Encodings
     */
    
    // An Encoding is a radix 32 encoding/decoding scheme, defined by a
    // 32-character alphabet. The most common is the "base32" encoding
    // introduced for SASL GSSAPI and standardized in RFC 4648.
    // The alternate "base32hex" encoding is used in DNSSEC.
    type Encoding struct {
    	encode    [32]byte   // mapping of symbol index to symbol byte value
    	decodeMap [256]uint8 // mapping of symbol byte value to symbol index
    	padChar   rune
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apps/v1beta1/generated.proto

    // in this StatefulSet.
    message StatefulSetOrdinals {
      // start is the number representing the first replica's index. It may be used
      // to number replicas from an alternate index (eg: 1-indexed) over the default
      // 0-indexed names, or to orchestrate progressive movement of replicas from
      // one StatefulSet to another.
      // If set, replica indices will be in the range:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta1/generated.proto

    // in this StatefulSet.
    message StatefulSetOrdinals {
      // start is the number representing the first replica's index. It may be used
      // to number replicas from an alternate index (eg: 1-indexed) over the default
      // 0-indexed names, or to orchestrate progressive movement of replicas from
      // one StatefulSet to another.
      // If set, replica indices will be in the range:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

        override fun alternateService(
          streamId: Int,
          origin: String,
          protocol: ByteString,
          host: String,
          port: Int,
          maxAge: Long,
        ) {
          // TODO: register alternate service.
        }
      }
    
      /** Even, positive numbered streams are pushed streams in HTTP/2. */
      internal fun pushedStream(streamId: Int): Boolean = streamId != 0 && streamId and 1 == 0
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top