Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 367 for alternate (0.19 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/cmd/vendor/golang.org/x/tools/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: Mon May 22 18:11:19 UTC 2023
    - 15.4K 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. staging/src/k8s.io/api/apps/v1beta1/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: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K 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. src/cmd/link/internal/amd64/asm.go

    		} else if size == 4 && op[0] == 0x44 {
    			op[0] = 0x41
    		}
    		if op[1] == 0x8b {
    			op[1] = 0xc7
    		} else {
    			op[1] = 0x81 // special case for SP
    		}
    		op[2] = 0xc0 | reg
    	} else {
    		// An alternate op is ADDQ. This is handled by GNU gold,
    		// but right now is not generated by the Go compiler:
    		//	ADDQ X(IP), REG  ->  ADDQ $Y, REG
    		// Consider adding support for it here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  10. 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)
Back to top