Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 475 for alternate (0.24 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

        }
    
        @Requires(UnitTestPreconditions.NotWindows)
        @ToBeFixedForConfigurationCache
        def "can configure setTargets with alternate toolchain"() {
            def binDir = testDirectory.createDir("bin")
            wrapperTool(binDir, "french-c-compiler", toolChain.CCompiler, "-DFRENCH")
            wrapperTool(binDir, "static-lib", toolChain.staticLibArchiver)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

          ImmutableSet.of(
              "com",
              "co.uk",
              "foo.bd",
              "xxxxxx.bd",
              "org.mK",
              "us",
              "co.uk.", // Trailing dot
              "co\uFF61uk", // Alternate dot character
              "\u7f51\u7edc.Cn", // "网络.Cn"
              "j\u00f8rpeland.no", // "jorpeland.no" (first o slashed)
              "xn--jrpeland-54a.no"); // IDNA (punycode) encoding of above
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. src/regexp/syntax/doc.go

    # Syntax
    
    The regular expression syntax understood by this package when parsing with the [Perl] flag is as follows.
    Parts of the syntax can be disabled by passing alternate flags to [Parse].
    
    Single characters:
    
    	.              any character, possibly including newline (flag s=true)
    	[xyz]          character class
    	[^xyz]         negated character class
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse.go

    	if len(subs) == 0 {
    		return p.push(p.newRegexp(OpEmptyMatch))
    	}
    
    	return p.push(p.collapse(subs, OpConcat))
    }
    
    // alternate replaces the top of the stack (above the topmost '(') with its alternation.
    func (p *parser) alternate() *Regexp {
    	// Scan down to find pseudo-operator (.
    	// There are no | above (.
    	i := len(p.stack)
    	for i > 0 && p.stack[i-1].Op < opPseudo {
    		i--
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. README.md

    OkHttp perseveres when the network is troublesome: it will silently recover from common connection
    problems. If your service has multiple IP addresses, OkHttp will attempt alternate addresses if the
    first connect fails. This is necessary for IPv4+IPv6 and services hosted in redundant data
    centers. OkHttp supports modern TLS features (TLS 1.3, ALPN, certificate pinning). It can be
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. src/encoding/base64/base64.go

    // 64-character alphabet. The most common encoding is the "base64"
    // encoding defined in RFC 4648 and used in MIME (RFC 2045) and PEM
    // (RFC 1421).  RFC 4648 also defines an alternate encoding, which is
    // the standard encoding with - and _ substituted for + and /.
    type Encoding struct {
    	encode    [64]byte   // mapping of symbol index to symbol byte value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  7. tests/integration/security/ca_custom_root/main_test.go

    		Setup(func(ctx resource.Context) error {
    			return createCustomInstances(&apps)
    		}).
    		Run()
    }
    
    func setupConfig(_ resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    	// Add alternate root certificate to list of trusted anchors
    	script := path.Join(env.IstioSrc, "samples/certs", "root-cert-alt.pem")
    	rootPEM, err := cert.LoadCert(script)
    	if err != nil {
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. operator/pkg/util/progress/progress.go

    		prefix = `{{ yellow "-" }} `
    	}
    	// reduce by 2 to allow for the "- " that will be added below
    	maxWidth -= 2
    	if maxWidth > 0 && len(msg) > maxWidth {
    		return prefix + msg[:maxWidth-3] + "..."
    	}
    	// cycle will alternate between "-" and " ". "-" is given multiple times to avoid quick flashing back and forth
    	return prefix + msg
    }
    
    // For testing only
    var testWriter *io.Writer
    
    func createBar() *pb.ProgressBar {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // a request and the last virtual finish time of a queue are not
    // represented directly but instead computed from queue length,
    // request position in the queue, and an alternate state variable that
    // holds the queue’s virtual start time. While the queue is empty and
    // has no requests executing: the value of its virtual start time
    // variable is ignored and its last virtual finish time is considered
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. src/fmt/doc.go

    Other flags:
    
    	'+'	always print a sign for numeric values;
    		guarantee ASCII-only output for %q (%+q)
    	'-'	pad with spaces on the right rather than the left (left-justify the field)
    	'#'	alternate format: add leading 0b for binary (%#b), 0 for octal (%#o),
    		0x or 0X for hex (%#x or %#X); suppress 0x for %p (%#p);
    		for %q, print a raw (backquoted) string if [strconv.CanBackquote]
    		returns true;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top