Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 458 for dira (2.72 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/CrawlerWebServer.java

            for (int i = 1; i <= 10; i++) {
                final File file = new File(dir, "file" + count + "-" + i + ".html");
                file.deleteOnExit();
                FileUtil.writeBytes(file.getAbsolutePath(), content.getBytes("UTF-8"));
                final File childDir = new File(dir, "dir" + count + "-" + i);
                childDir.mkdirs();
                generateContents(childDir, count - 1);
            }
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    		// module. Verify that before we walk the filesystem: a filesystem
    		// walk in a directory like /var or /etc can be very expensive!
    		dir := filepath.Dir(filepath.Clean(m.Pattern()[:i+3]))
    		absDir := dir
    		if !filepath.IsAbs(dir) {
    			absDir = filepath.Join(base.Cwd(), dir)
    		}
    
    		modRoot := findModuleRoot(absDir)
    		found := false
    		for _, mainModuleRoot := range modRoots {
    			if mainModuleRoot == modRoot {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cache/default.go

    func initDefaultCache() {
    	dir, _ := DefaultDir()
    	if dir == "off" {
    		if defaultDirErr != nil {
    			base.Fatalf("build cache is required, but could not be located: %v", defaultDirErr)
    		}
    		base.Fatalf("build cache is disabled by GOCACHE=off, but required as of Go 1.12")
    	}
    	if err := os.MkdirAll(dir, 0777); err != nil {
    		base.Fatalf("failed to initialize build cache at %s: %s\n", dir, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_list.txt

    env GO111MODULE=on
    [short] skip
    
    # list {{.Dir}} shows main module and go.mod but not not-yet-downloaded dependency dir.
    go list -mod=mod -m -f '{{.Path}} {{.Main}} {{.GoMod}} {{.Dir}}' all
    stdout '^x true .*[\\/]src[\\/]go.mod .*[\\/]src$'
    stdout '^rsc.io/quote false .*[\\/]v1.5.2.mod $'
    
    # list {{.Dir}} shows dependency after download (and go list without -m downloads it)
    go list -mod=mod -f '{{.Dir}}' rsc.io/quote
    stdout '.*mod[\\/]rsc.io[\\/]quote@v1.5.2$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/java/org/apache/maven/model/path/DefaultUrlNormalizerTest.java

        }
    
        @Test
        void testTrailingSlash() {
            assertEquals("", normalize(""));
            assertEquals("http://server.org/dir", normalize("http://server.org/dir"));
            assertEquals("http://server.org/dir/", normalize("http://server.org/dir/"));
        }
    
        @Test
        void testRemovalOfParentRefs() {
            assertEquals("http://server.org/child", normalize("http://server.org/parent/../child"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/codehost/git.go

    		// This is a remote path.
    		var err error
    		r.dir, r.mu.Path, err = WorkDir(ctx, gitWorkDirType, r.remote)
    		if err != nil {
    			return nil, err
    		}
    
    		unlock, err := r.mu.Lock()
    		if err != nil {
    			return nil, err
    		}
    		defer unlock()
    
    		if _, err := os.Stat(filepath.Join(r.dir, "objects")); err != nil {
    			if _, err := Run(ctx, r.dir, "git", "init", "--bare"); err != nil {
    				os.RemoveAll(r.dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. src/packaging/common/env/fess

    ################################
    # Fess
    ################################
    
    # Fess Path
    FESS_TEMP_PATH=${packaging.fess.temp.dir}
    FESS_LOG_PATH=${packaging.fess.log.dir}
    FESS_CONF_PATH=${packaging.fess.conf.dir}
    FESS_VAR_PATH=${packaging.fess.var.dir}
    
    FESS_DICTIONARY_PATH=/var/lib/opensearch/config/
    
    # Port
    FESS_PORT=8080
    
    # Heap Memory
    FESS_HEAP_SIZE=512m
    
    # Elasticsearch Path
    SEARCH_ENGINE_HOME=/usr/share/opensearch/
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 489 bytes
    - Viewed (0)
  8. src/cmd/cover/cfg_test.go

    func TestCoverWithCfg(t *testing.T) {
    	testenv.MustHaveGoRun(t)
    
    	t.Parallel()
    
    	// Subdir in testdata that has our input files of interest.
    	tpath := filepath.Join("testdata", "pkgcfg")
    	dir := tempDir(t)
    	instdira := filepath.Join(dir, "insta")
    	if err := os.Mkdir(instdira, 0777); err != nil {
    		t.Fatal(err)
    	}
    
    	scenarios := []struct {
    		mode, gran string
    	}{
    		{
    			mode: "count",
    			gran: "perblock",
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/asm_test.go

    	}
    	testenv.MustHaveGoBuild(t)
    
    	dir, err := os.MkdirTemp("", "testlargebranch")
    	if err != nil {
    		t.Fatalf("Could not create directory: %v", err)
    	}
    	defer os.RemoveAll(dir)
    
    	// Generate a very large function.
    	buf := bytes.NewBuffer(make([]byte, 0, genBufSize))
    	genLargeBranch(buf)
    
    	tmpfile := filepath.Join(dir, "x.s")
    	if err := os.WriteFile(tmpfile, buf.Bytes(), 0644); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:39:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. README.md

     See the License for the specific language governing permissions and
     limitations under the License.
    -->
    Apache Maven
    ============
    
    [![ASF Jira](https://img.shields.io/endpoint?url=https%3A%2F%2Fmaven.apache.org%2Fbadges%2Fasf_jira-MNG.json)][jira]
    [![Apache License, Version 2.0, January 2004](https://img.shields.io/github/license/apache/maven.svg?label=License)][license]
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top