Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for waare (0.19 sec)

  1. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       proxy will be passed to the method. It's possible that the method body expects an
       *       instance method of the passed-in proxy to be of a certain value yet the proxy isn't aware
       *       of the assumption, in which case the equality check before and after serialization will
       *       fail.
       *   <li>If the constructor or factory method takes a parameter that {@link
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri May 12 19:22:18 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  2. maven-core/src/site/apt/offline-mode.apt

      NOTE: One side-effect of this design change is that all offline-mode code can
      be isolated to maven-core, maven-plugin-descriptor, and [possibly]
      maven-artifact. Usage of maven-wagon will be determined by an offline-aware
      manager.
    
    * Assumptions: What is Offline?
    
      For the purposes of determining the areas sensitive to offline status,
      it is definitely useful to define what the offline state really means.
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    Available JDKs on your machine are automatically detected and wired for the various compile and test tasks.
    Some tests require multiple JDKs to be installed on your computer, be aware of this if you make changes related to anything toolchains related.
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Feb 09 15:30:53 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Chars.java

     * either {@link Character} or {@link Arrays}.
     *
     * <p>All the operations in this class treat {@code char} values strictly numerically; they are
     * neither Unicode-aware nor locale-dependent.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>.
     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Cache.kt

       * up the necessary in-memory cache information.
       *
       * The initialization time may vary depending on the journal file size and the current actual
       * cache size. The application needs to be aware of calling this function during the
       * initialization phase and preferably in a background worker thread.
       *
       * Note that if the application chooses to not call this method to initialize the cache. By
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 26.8K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/popper.min.js.map

    a.order - b.order);\n\n    // modifiers have the ability to execute arbitrary code when Popper.js get inited\n    // such code is executed in the same order of its modifier\n    // they could add new properties to their options configuration\n    // BE AWARE: don't add options to `options.modifiers.name` but to `modifierOptions`!\n    this.modifiers.forEach(modifierOptions => {\n      if (modifierOptions.enabled && isFunction(modifierOptions.onLoad)) {\n        modifierOptions.onLoad(\n          this.reference,\n...
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 121K bytes
    - Viewed (2)
  7. android/guava/src/com/google/common/collect/Range.java

     *       not</b> allow the endpoint instances to mutate after the range is created!
     *   <li>Your value type's comparison method should be {@linkplain Comparable consistent with
     *       equals} if at all possible. Otherwise, be aware that concepts used throughout this
     *       documentation such as "equal", "same", "unique" and so on actually refer to whether {@link
     *       Comparable#compareTo compareTo} returns zero, not whether {@link Object#equals equals}
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 27.8K bytes
    - Viewed (0)
  8. src/archive/zip/reader.go

    	// The spec says: "Although not originally assigned a
    	// signature, the value 0x08074b50 has commonly been adopted
    	// as a signature value for the data descriptor record.
    	// Implementers should be aware that ZIP files may be
    	// encountered with or without this signature marking data
    	// descriptors and should account for either case when reading
    	// ZIP files to ensure compatibility."
    	//
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.4.md

    * **Other objects**: no changes unless you explicitly request orphaning.
    
    ## Action Required Before Upgrading
    
    - If you are using Kubernetes to manage `docker` containers, please be aware Kubernetes has been validated to work with docker 1.9.1, docker 1.11.2 (#23397), and docker 1.12.0 (#28698)
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
  10. docs/en/docs/async.md

    # This is not asynchronous
    def get_sequential_burgers(number: int):
        # Do some sequential stuff to create the burgers
        return burgers
    ```
    
    With `async def`, Python knows that, inside that function, it has to be aware of `await` expressions, and that it can "pause" ⏸ the execution of that function and go do something else 🔀 before coming back.
    
    When you want to call an `async def` function, you have to "await" it. So, this won't work:
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23K bytes
    - Viewed (0)
Back to top