Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,140 for filedata (0.66 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractorTest.java

    import org.mortbay.jetty.handler.HandlerList;
    
    /**
     * @author shinsuke
     *
     */
    public class ApiExtractorTest extends PlainTestCase {
        final int port = 9876;
    
        final String ATTR_NAME = "filedata";
    
        private TestApiExtractorServer server;
    
        private ApiExtractor extractor;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java

            final HttpEntity postEntity = MultipartEntityBuilder.create().setMode(HttpMultipartMode.BROWSER_COMPATIBLE)
                    .setCharset(Charset.forName("UTF-8")).addBinaryBody("filedata", in).build();
            httpPost.setEntity(postEntity);
    
            try (CloseableHttpResponse response = httpClient.execute(httpPost)) {
                if (response.getStatusLine().getStatusCode() != Constants.OK_STATUS_CODE) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/webhook/webhook_test.go

    		"ca.pem":         caCert,
    		"client.pem":     clientCert,
    		"client-key.pem": clientKey,
    	}
    
    	// Write the certificate files to disk or fail
    	for fileName, fileData := range files {
    		if err := os.WriteFile(filepath.Join(dir, fileName), fileData, 0400); err != nil {
    			os.RemoveAll(dir)
    			t.Fatal(err)
    		}
    	}
    
    	return dir
    }
    
    func newKubeConfigFile(config v1.Config) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  4. configure.py

        return
      for filepath in APPLE_BAZEL_FILES:
        existing_filepath = os.path.join(_TF_WORKSPACE_ROOT, filepath + '.apple')
        renamed_filepath = os.path.join(_TF_WORKSPACE_ROOT, filepath)
        symlink_force(existing_filepath, renamed_filepath)
      for filepath in IOS_FILES:
        filename = os.path.basename(filepath)
        new_filepath = os.path.join(_TF_WORKSPACE_ROOT, filename)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/FilePath.java

     */
    package org.gradle.plugins.ide.idea.model;
    
    import java.io.File;
    
    /**
     * A Path that keeps the reference to the File
     */
    public class FilePath extends Path {
    
        private final File file;
    
        public FilePath(File file, String url, String canonicalUrl, String relPath) {
            super(url, canonicalUrl, relPath);
            this.file = file;
        }
    
        public File getFile() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1020 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

    // characters, malformed paths, etc.
    
    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: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

    // characters, malformed paths, etc.
    
    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)
  8. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

                    stream.filter(entry -> isLogFilename(entry.getFileName().toString())).forEach(filePath -> {
                        final ZipEntry entry = new ZipEntry(id + "/" + filePath.getFileName().toString());
                        try {
                            zos.putNextEntry(entry);
                            final long len = Files.copy(filePath, zos);
                            if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. src/path/filepath/example_unix_test.go

    	fmt.Println(filepath.Base("/foo/bar/baz.js"))
    	fmt.Println(filepath.Base("/foo/bar/baz"))
    	fmt.Println(filepath.Base("/foo/bar/baz/"))
    	fmt.Println(filepath.Base("dev.txt"))
    	fmt.Println(filepath.Base("../todo.txt"))
    	fmt.Println(filepath.Base(".."))
    	fmt.Println(filepath.Base("."))
    	fmt.Println(filepath.Base("/"))
    	fmt.Println(filepath.Base(""))
    
    	// Output:
    	// On Unix:
    	// baz.js
    	// baz
    	// baz
    	// dev.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/visitor_test.go

    	testDir := t.TempDir()
    	filePaths := []string{
    		filepath.Join(testDir, "0", "10.yaml"),
    		filepath.Join(testDir, "0", "a", "10.yaml"),
    		filepath.Join(testDir, "02.yaml"),
    		filepath.Join(testDir, "10.yaml"),
    		filepath.Join(testDir, "2.yaml"),
    		filepath.Join(testDir, "AB.yaml"),
    		filepath.Join(testDir, "a", "a.yaml"),
    		filepath.Join(testDir, "a", "b.json"),
    		filepath.Join(testDir, "a.yaml"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top