Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 134 for denormalize (0.15 sec)

  1. platforms/core-runtime/file-temp/src/main/java/org/gradle/api/internal/file/temp/DefaultTemporaryFileProvider.java

                if (i > 0) {
                    pathBuilder.append("/");
                }
                pathBuilder.append(path[i]);
            }
            return new File(baseDirFactory.create(), pathBuilder.toString()).toPath().normalize().toFile();
        }
    
        @Override
        public File newTemporaryDirectory(String... path) {
            File dir = newTemporaryFile(path);
            forceMkdir(dir);
            return dir;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 21:16:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

                    return javaPath.resolve("../../../bin/jstack").normalize().toString();
                } else {
                    return javaPath.resolve("../../bin/jstack").normalize().toString();
                }
            }
    
            String jstack() {
                try {
                    ExecResult result = run(getJstackCommand(), pid);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true
        },
        "node_modules/@types/normalize-package-data": {
          "version": "2.4.1",
          "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz",
          "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==",
          "dev": true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

         */
        public LogContent getPostBuildContent() {
            return postBuild;
        }
    
        @Override
        public String getNormalizedOutput() {
            return normalize(output);
        }
    
        @Override
        public String getFormattedOutput() {
            return output.ansiCharsToColorText().withNormalizedEol();
        }
    
        @Override
        public String getPlainTextOutput() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/AbstractModule.groovy

            if (content) {
                tmpFile.bytes = content
            } else if (isJarFile(file)) {
                writeZipped(tmpFile, cl)
            } else {
                writeContents(tmpFile, cl)
                // normalize line endings
                tmpFile.setText(TextUtil.normaliseLineSeparators(tmpFile.getText("utf-8")), "utf-8")
            }
    
            def hashAfter = Hashing.sha1().hashFile(tmpFile)
            if (hashAfter == hashBefore) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

    class GTEST_API_ FilePath {
     public:
      FilePath() : pathname_("") { }
      FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
    
      explicit FilePath(const std::string& pathname) : pathname_(pathname) {
        Normalize();
      }
    
      FilePath& operator=(const FilePath& rhs) {
        Set(rhs);
        return *this;
      }
    
      void Set(const FilePath& rhs) {
        pathname_ = rhs.pathname_;
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/embedded_protocol_buffers.cc

    }
    
    static absl::StatusOr<std::unique_ptr<llvm::TargetMachine>>
    GetTargetMachineFromTriple(absl::string_view target_triple) {
      std::string error;
      std::string normalized_triple =
          llvm::Triple::normalize(AsStringRef(absl::string_view(target_triple)));
      const llvm::Target* target =
          llvm::TargetRegistry::lookupTarget(normalized_triple, error);
      if (target == nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:48:41 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKana.java

        private static final char HANKAKU_KATAKANA_FIRST_CHAR = HANKAKU_KATAKANA[0];
    
        private static final char HANKAKU_KATAKANA_LAST_CHAR = HANKAKU_KATAKANA[HANKAKU_KATAKANA.length - 1];
    
        @Override
        public String normalize(final String s, final String field, final String... langs) {
            if (s.length() == 0) {
                return s;
            }
            if (s.length() == 1) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

                    if (isExcludeSearchword(words[i], fields != null && fields.length > 0 ? fields[0] : "", langs, analyzer)) {
                        continue;
                    }
    
                    final String word = normalizer.normalize(words[i], fields != null && fields.length > 0 ? fields[0] : "", langs);
                    final List<String> l = readingConverter.convert(word, fields != null && fields.length > 0 ? fields[0] : "", langs);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/clientinput/DaemonClientInputForwarder.java

                        }
                        if (input == null) {
                            maybeClosed();
                            break;
                        } else {
                            String normalized = normalizer.normalize(input);
                            if (normalized != null) {
                                dispatch.dispatch(new UserResponse(normalized));
                                break;
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top