Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

        }
    
        static final String DEFAULT_PCH_MESSAGE="<==== compiling hello.h ====>"
        static final String FRENCH_PCH_MESSAGE="<==== compiling bonjour.h ====>"
        static final String ALTERNATE_PCH_MESSAGE="<==== compiling alternate hello.h ====>"
    
        def preCompiledHeaderComponent(String path="", String pch="common.h") {
            """
                model {
                    components {
                        hello(NativeLibrarySpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. 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)
  3. android/guava/src/com/google/common/collect/BiMap.java

       *     #forcePut} instead.
       */
      @CanIgnoreReturnValue
      @Override
      @CheckForNull
      V put(@ParametricNullness K key, @ParametricNullness V value);
    
      /**
       * An alternate form of {@code put} that silently removes any existing entry with the value {@code
       * value} before proceeding with the {@link #put} operation. If the bimap previously contained the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Ascii.java

       * agreement between sender and recipient of data.
       *
       * @since 8.0
       */
      public static final byte LF = 10;
    
      /**
       * Alternate name for {@link #LF}. ({@code LF} is preferred.)
       *
       * @since 8.0
       */
      public static final byte NL = 10;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/jcifs/netbios/UniAddress.java

         * method is used exclusively by the <tt>jcifs.smb</tt> package.
         * 
         * @param tc
         *            context to use
         * 
         * @return guessed alternate name
         */
        @Override
        public String nextCalledName ( CIFSContext tc ) {
            if ( this.addr instanceof NbtAddress ) {
                return ( (NbtAddress) this.addr ).nextCalledName(tc);
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. docs/features/connections.md

    With fast fallback, OkHttp attempts to connect to multiple web servers concurrently. It keeps whichever route connects first and cancels all of the others. Its rules are:
    
     * Prefer to alternate IP addresses from different address families, (IPv6 / IPv4), starting with IPv6.
     * Don't start a new attempt until 250 ms after the most recent attempt was started.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Feb 21 03:33:59 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top