Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 215 for filename (0.23 sec)

  1. src/time/genzabbrs.go

    //
    
    package main
    
    import (
    	"bytes"
    	"encoding/xml"
    	"flag"
    	"go/format"
    	"io"
    	"log"
    	"net/http"
    	"os"
    	"slices"
    	"strings"
    	"text/template"
    	"time"
    )
    
    var filename = flag.String("output", "zoneinfo_abbrs_windows.go", "output file name")
    
    // getAbbrs finds timezone abbreviations (standard and daylight saving time)
    // for location l.
    func getAbbrs(l *time.Location) (st, dt string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/configuration/ScriptPluginFactorySelector.java

        }
    
        private ScriptPluginFactory scriptPluginFactoryFor(String fileName) {
            for (ScriptingLanguage scriptingLanguage : ScriptingLanguages.all()) {
                if (fileName.endsWith(scriptingLanguage.getExtension())) {
                    String provider = scriptingLanguage.getProvider();
                    if (provider != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 07:44:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/design/FileAccessForm.java

     */
    package org.codelibs.fess.app.web.admin.design;
    
    import org.lastaflute.web.validation.Required;
    
    public class FileAccessForm {
    
        @Required
        public String fileName;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 793 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.cc

        if (!pass_to_dump_file_map.contains(pass)) {
          std::string filename = llvm::formatv(
              "{0}_{1,0+4}_{2}_{3}.mlir", dump_file_prefix_, GetPassNumber(pass),
              pass->getName().str(), is_before ? "before" : "after");
          absl::StatusOr<std::unique_ptr<llvm::raw_ostream>> dump_file =
              CreateMlirDumpFile(filename);
          if (!dump_file.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:38:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MimeTypeHelper.java

    package org.codelibs.fess.crawler.helper;
    
    import java.io.InputStream;
    import java.util.Map;
    
    /**
     * @author shinsuke
     *
     */
    public interface MimeTypeHelper {
        String getContentType(InputStream is, String filename);
    
        String getContentType(InputStream is, Map<String, String> params);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 914 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/design/EditForm.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.design;
    
    /**
     * @author codelibs
     * @author jflute
     */
    public class EditForm {
    
        public String fileName;
    
        public String content;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 799 bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

         * @param fileName the file name
         * @param extension candidate extension including leading dot
         * @return true if the file name ends with extension, ignoring case
         */
        public static boolean hasExtensionIgnoresCase(String fileName, String extension) {
            return endsWithIgnoreCase(fileName, extension);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/BuildLogicChangeFixture.groovy

        }
    
        private void writeResource(String text) {
            writeSourceFile "resources", "resource.txt", text
        }
    
        private void writeSourceFile(String sourceSet, String fileName, String text) {
            file("src/main/" + sourceSet + "/" + fileName).text = text
        }
    
        private TestFile file(String path) {
            projectDir.file(path)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/debugger.h

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    
    namespace stablehlo::quantization {
    
    // Disables debugging on `DumpTensor` ops.
    void DisableDebugging(mlir::ModuleOp module_op);
    
    // Changes the filename from `unquantized_tensor_data.pb` to
    // `quantized_tensor_data.pb`.
    void ChangeToQuantizedFilename(mlir::ModuleOp module_op);
    
    }  // namespace stablehlo::quantization
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 00:17:12 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

        components {
            withModule<CodeNarcRule>("org.codenarc:CodeNarc") {
                params(groovyVersion)
            }
        }
    }
    
    fun configFile(fileName: String) = resources.text.fromFile(rules.asFileTree.filter { it.name == fileName })
    
    checkstyle {
        toolVersion = "8.12"
        config = configFile("checkstyle.xml")
        val projectDirectory = layout.projectDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top