Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 485 for filename (0.27 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

            protected String getBaseFileName(final String filePath) {
                final String fileName = new File(filePath).getName();
                int colonIndex = fileName.indexOf(':');
                if (colonIndex == -1) {
                    colonIndex = fileName.indexOf("\\\\"); // Windows SMB
                }
                final int backslashIndex = fileName.lastIndexOf('\\');
                if (colonIndex > -1 && backslashIndex > -1) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

                    builder.put(fileMarker.fileName, fileMarker);
                }
                FILE_MARKER_MAP = builder.build();
            }
    
            private final String fileName;
    
            FileMarker(String fileName) {
                this.fileName = fileName;
            }
    
            public String getFileName() {
                return fileName;
            }
    
            public static FileMarker of(String fileName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

            given:
            // Two with same filename, mind the directory names
            file("res", "a", "same.txt") << "Base filename"
            file("res", "b", "same.txt") << "Base filename, different directory"
            // Third, different filename, different base directory case
            file("res", "c", "different.txt") << "Different filename"
    
            buildFile << """
                apply plugin: 'maven-publish'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         */
        private static final Attributes.Name AUTO_MODULE_NAME = new Attributes.Name("Automatic-Module-Name");
    
        /**
         * Filename of the path specified at construction time.
         */
        private final String filename;
    
        /**
         * Module information for the path specified at construction time.
         * This map is usually either empty if no module was found, or a singleton map.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/vet/vet_test.go

    		// expectations.
    		//
    		// So, we munge the file.
    		stderr = strings.ReplaceAll(stderr, filepath.FromSlash("./rangeloop.go"), filename)
    
    		if err := errorCheck(stderr, false, filename, filepath.Base(filename)); err != nil {
    			t.Errorf("error check failed: %s", err)
    			t.Log("vet stderr:\n", cmd.Stderr)
    		}
    	})
    
    	// The stdversion analyzer requires a lower-than-tip go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export_test.cc

    }
    
    TEST(CreateExportedModelTest, CreateExportedModelWithAddedAssetFileDefs) {
      AssetFileDef asset1;
      ASSERT_TRUE(
          TextFormat::ParseFromString(R"pb(filename: "fname1")pb", &asset1));
    
      AssetFileDef asset2;
      ASSERT_TRUE(
          TextFormat::ParseFromString(R"pb(filename: "fname2")pb", &asset2));
    
      const ExportedModel exported_model = CreateExportedModelFromGraphDef(
          GraphDef(), /*init_node_name=*/"", /*checkpoint_dir=*/"",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. pkg/config/mesh/mesh.go

    func ReadMeshNetworks(filename string) (*meshconfig.MeshNetworks, error) {
    	yaml, err := os.ReadFile(filename)
    	if err != nil {
    		return nil, multierror.Prefix(err, "cannot read networks config file")
    	}
    	return ParseMeshNetworks(string(yaml))
    }
    
    // ReadMeshConfig gets mesh configuration from a config file
    func ReadMeshConfig(filename string) (*meshconfig.MeshConfig, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/MultipartBody.kt

          fun createFormData(
            name: String,
            filename: String?,
            body: RequestBody,
          ): Part {
            val disposition =
              buildString {
                append("form-data; name=")
                appendQuotedString(name)
    
                if (filename != null) {
                  append("; filename=")
                  appendQuotedString(filename)
                }
              }
    
            val headers =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/go/scanner/scanner.go

    		return
    	}
    
    	// If we have a column (//line filename:line:col form),
    	// an empty filename means to use the previous filename.
    	filename := string(text[:i-1]) // lop off ":line", and trim white space
    	if filename == "" && ok2 {
    		filename = s.file.Position(s.file.Pos(offs)).Filename
    	} else if filename != "" {
    		// Put a relative filename in the current directory.
    		// This is for compatibility with earlier releases.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/html.go

    		}
    	}
    	fmt.Fprint(&buf, "</div><div style=\"width: 92%\"><pre>")
    	filename = ""
    	for _, fl := range all {
    		fmt.Fprint(&buf, "<div>&nbsp;</div>")
    		if filename != fl.Filename {
    			fmt.Fprintf(&buf, "<div><strong>%v</strong></div>", fl.Filename)
    			filename = fl.Filename
    		}
    		for i, line := range fl.Lines {
    			ln := int(fl.StartLineno) + i
    			var escaped string
    			if strings.TrimSpace(line) == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
Back to top