Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 571 - 580 of 1,319 for currency (0.17 seconds)

  1. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

            }
    
        }
    
        /**
         * Calculates the document expiration date based on crawling configuration.
         * If the config has a timeToLive value, calculates expiration from current time.
         * Otherwise, returns the stored document expiration time.
         *
         * @param config the crawling configuration containing time-to-live settings
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 15.2K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/cache/Striped64.java

        return UNSAFE.compareAndSwapInt(this, BUSY_OFFSET, 0, 1);
      }
    
      /**
       * Computes the function of current and new value. Subclasses should open-code this update
       * function for most uses, but the virtualized form is needed within retryUpdate.
       *
       * @param currentValue the current value (of either base or a cell)
       * @param newValue the argument from a user update call
       * @return result of the update function
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jan 15 22:17:15 GMT 2025
    - 11.4K bytes
    - Click Count (0)
  3. architecture/standards/0010-gradle-properties-naming.md

    # ADR-0010 - Gradle properties naming
    
    ## Status
    
    - ACCEPTED on 2026-03-05
    - PROPOSED on 2026-02-26
    
    ## Context
    
    [Gradle properties](https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties)
    are flags that allow build engineers to opt into and out of features of Gradle Runtime or Core Plugins.
    Practically every Gradle feature is behind a flag, and additional sub-flags or options provide further control.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 06 09:25:54 GMT 2026
    - 8K bytes
    - Click Count (0)
  4. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixTrie.java

        int nodeIndex = 0; // Root node.
        int bestResult = -1;
    
        // Iterate over the labels in reverse order (from top level domain to the left).
        for (int i = partsSize - 1; i >= 0; i--) {
          // Decode the current node.
          int firstChild = trieData.charAt(nodeIndex * NODE_SIZE + 1);
          int numChildren = trieData.charAt(nodeIndex * NODE_SIZE + 2) & CHILDREN_MASK;
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 21:21:59 GMT 2026
    - 9.1K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/GenerateReleaseNotesTask.java

         * of the changelog directory changed over time.
         *
         * @param gitWrapper used to call `git`
         * @param versionString the "current" version. Does not require a tag in git.
         * @param allFilesInCheckout the files to partition
         * @return a mapping from version to the files added in that version.
         */
        @VisibleForTesting
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 12.9K bytes
    - Click Count (0)
  6. android/guava-tests/test/com/google/common/hash/HashFunctionEnum.java

      SHA256(sha256()),
      SHA384(sha384()),
      SHA512(sha512()),
      SIP_HASH24(sipHash24()),
      FARMHASH_FINGERPRINT_64(farmHashFingerprint64()),
    
      // Hash functions found in //javatests for comparing against current implementation of CityHash.
      // These can probably be removed sooner or later.
      ;
    
      private final HashFunction hashFunction;
    
      HashFunctionEnum(HashFunction hashFunction) {
        this.hashFunction = hashFunction;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ThirdPartyAuditPrecommitPlugin.java

            TaskProvider<ThirdPartyAuditTask> audit = project.getTasks().register("thirdPartyAudit", ThirdPartyAuditTask.class);
            audit.configure(t -> {
                t.dependsOn(resourcesTask);
                t.setJavaHome(Jvm.current().getJavaHome().getPath());
                t.getTargetCompatibility().set(project.provider(BuildParams::getRuntimeJavaVersion));
                t.setSignatureFile(resourcesDir.resolve("forbidden/third-party-audit.txt").toFile());
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 3.1K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/GradleDistroTestTask.java

    import static org.elasticsearch.gradle.internal.vagrant.VagrantMachine.convertLinuxPath;
    import static org.elasticsearch.gradle.internal.vagrant.VagrantMachine.convertWindowsPath;
    
    /**
     * Run a gradle task of the current build, within the configured vagrant VM.
     */
    public class GradleDistroTestTask extends VagrantShellTask {
    
        private String taskName;
        private String testClass;
        private List<String> extraArgs = new ArrayList<>();
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.6K bytes
    - Click Count (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocScanner.java

            if (m.find()) {
                pos = m.start();
            } else {
                pos = input.length();
            }
        }
    
        /**
         * Moves the position over the given pattern if currently looking at the pattern. Does nothing if not.
         */
        public void skip(Pattern pattern) {
            Matcher m = pattern.matcher(input);
            m.region(pos, input.length());
            if (m.lookingAt()) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.3K bytes
    - Click Count (0)
  10. docs/ko/docs/tutorial/debugging.md

    코드에서 직접 Uvicorn 서버를 실행하고 있기 때문에 디버거에서 직접 Python 프로그램(FastAPI 애플리케이션)을 호출할 수 있습니다.
    
    ---
    
    예를 들어 Visual Studio Code에서 다음을 수행할 수 있습니다.
    
    * "Debug" 패널로 이동합니다.
    * "Add configuration...".
    * "Python"을 선택합니다.
    * "`Python: Current File (Integrated Terminal)`" 옵션으로 디버거를 실행합니다.
    
    그런 다음 **FastAPI** 코드로 서버를 시작하고 중단점 등에서 중지합니다.
    
    다음과 같이 표시됩니다.
    
    <img src="/img/tutorial/debugging/image01.png">
    
    ---
    
    Pycharm을 사용하는 경우 다음을 수행할 수 있습니다
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 2.8K bytes
    - Click Count (0)
Back to Top