Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 193 for alternate (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/proxy/apis/config/validation/validation_test.go

    				config.BindAddress = "fd00:192:168:59::103"
    				config.HealthzBindAddress = ""
    				config.MetricsBindAddress = "[::1]:10249"
    				config.ClusterCIDR = "fd00:192:168:59::/64"
    			},
    		},
    		"alternate healthz port": {
    			mutateConfigFunc: func(config *kubeproxyconfig.KubeProxyConfiguration) {
    				config.HealthzBindAddress = "0.0.0.0:12345"
    			},
    		},
    		"ClusterCIDR is wrong IP family": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_builder.go

    	ec := newClusterWrapper(c)
    	cb.setUpstreamProtocol(ec, port)
    	addTelemetryMetadata(c, port, service, direction, inboundServices)
    	if direction == model.TrafficDirectionOutbound {
    		// If stat name is configured, build the alternate stats name.
    		if len(cb.req.Push.Mesh.OutboundClusterStatName) != 0 {
    			ec.cluster.AltStatName = telemetry.BuildStatPrefix(cb.req.Push.Mesh.OutboundClusterStatName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

        fi
      done
      sans="${sans}IP:${service_ip},DNS:kubernetes,DNS:kubernetes.default,DNS:kubernetes.default.svc,DNS:kubernetes.default.svc.${DNS_DOMAIN},DNS:${MASTER_NAME}"
    
      echo "Generating certs for alternate-names: ${sans}"
    
      setup-easyrsa
      PRIMARY_CN="${primary_cn}" SANS="${sans}" generate-certs
      AGGREGATOR_PRIMARY_CN="${primary_cn}" AGGREGATOR_SANS="${sans}" generate-aggregator-certs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. src/internal/bisect/bisect.go

    // The markers are elided when displaying the lines to the user.
    //
    // A match marker has the form “[bisect-match 0x1234]” where
    // 0x1234 is the change ID in hexadecimal.
    // An alternate form is “[bisect-match 010101]”, giving the change ID in binary.
    //
    // When [Matcher.Visible] returns false, the match reports are only
    // being processed by bisect to learn the set of enabled changes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"":      "StatefulSetOrdinals describes the policy used for replica ordinal assignment in this StatefulSet.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/decl.go

    		// method names.
    		for _, fld := range t.fields {
    			if fld.name != "_" {
    				if alt := mset.insert(fld); alt != nil {
    					// Struct fields should already be unique, so we should only
    					// encounter an alternate via collision with a method name.
    					_ = alt.(*Func)
    
    					// For historical consistency, we report the primary error on the
    					// method, and the alt decl on the field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top