Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for putNext (0.03 seconds)

  1. guava/src/com/google/common/util/concurrent/AbstractFutureState.java

        ATOMIC_HELPER.putThread(waiter, newValue);
      }
    
      /** Non-volatile write of the waiter to the {@link Waiter#next} field. */
      private static void putNext(Waiter waiter, @Nullable Waiter newValue) {
        ATOMIC_HELPER.putNext(waiter, newValue);
      }
    
      /**
       * Performs a {@linkplain java.lang.invoke.VarHandle#compareAndSet compare-and-set} operation
       * {@link #waitersField}.
       */
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 34.8K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

        ATOMIC_HELPER.putThread(waiter, newValue);
      }
    
      /** Non-volatile write of the waiter to the {@link Waiter#next} field. */
      private static void putNext(Waiter waiter, @Nullable Waiter newValue) {
        ATOMIC_HELPER.putNext(waiter, newValue);
      }
    
      /**
       * Performs a {@linkplain java.lang.invoke.VarHandle#compareAndSet compare-and-set} operation
       * {@link #waitersField}.
       */
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 33.2K bytes
    - Click Count (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java

         *
         * @param inExt the input file extension
         * @param outExt the output file extension
         */
        public void addConversionRule(final String inExt, final String outExt) {
            extensionMap.put(inExt, outExt);
        }
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.extractor.Extractor#getText(java.io.InputStream,
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sun Nov 23 12:19:14 GMT 2025
    - 10.4K bytes
    - Click Count (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

        // Simply putting PATH there isn't enough. Windows has case-insensitive env vars but something else fails if the Path variable is published as PATH for test tasks.
        OperatingSystem.current().pathVar,
        "PATHEXT",
        // Used by KotlinMultiplatformPluginSmokeTest, see https://github.com/gradle/gradle-private/issues/4223
        "CHROME_BIN"
    )
    
    
    val credentialsKeywords = listOf(
        "api_key",
        "access_key",
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Oct 15 18:27:39 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  5. .bazelrc

    common:win_clang_base --host_copt=/clang:-Weverything
    common:win_clang_base --compiler=clang-cl
    common:win_clang_base --linkopt=/FORCE:MULTIPLE
    common:win_clang_base --host_linkopt=/FORCE:MULTIPLE
    common:win_clang_base --action_env=PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW
    test:win_clang_base --linkopt=/FORCE:MULTIPLE
    test:win_clang_base --host_linkopt=/FORCE:MULTIPLE
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Fri Dec 26 23:20:26 GMT 2025
    - 56.8K bytes
    - Click Count (0)
Back to Top