Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 219 for directory1 (0.14 sec)

  1. cmd/object-api-listobjects_test.go

    		// Test listing an empty directory in recursive mode (62)
    		{"test-bucket-empty-dir", "", "", "", 10, resultCases[31], nil, true},
    		// Test listing an empty directory in a non recursive mode (63)
    		{"test-bucket-empty-dir", "", "", SlashSeparator, 10, resultCases[32], nil, true},
    		// Test listing a directory which contains an empty directory (64)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    					if err != nil {
    						base.Fatalf("go: reading modules.txt for vendor directory: %v", err)
    					}
    					if vendoredWorkspace != (versionSource == "go.work") {
    						if vendoredWorkspace {
    							cfg.BuildModReason = "Outside workspace mode, but vendor directory is for a workspace."
    						} else {
    							cfg.BuildModReason = "In workspace mode, but vendor directory is not for a workspace"
    						}
    					} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    	"src/cmd/objwriter",
    	"src/debug/goobj",
    	"src/old",
    }
    
    // setup sets up the tree for the initial build.
    func setup() {
    	// Create bin directory.
    	if p := pathf("%s/bin", goroot); !isdir(p) {
    		xmkdir(p)
    	}
    
    	// Create package directory.
    	if p := pathf("%s/pkg", goroot); !isdir(p) {
    		xmkdir(p)
    	}
    
    	goosGoarch := pathf("%s/pkg/%s_%s", goroot, gohostos, gohostarch)
    	if rebuildall {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    					}
    					matchLocalDirs(ctx, matchModRoots, m, rs)
    				}
    
    				// Make a copy of the directory list and translate to import paths.
    				// Note that whether a directory corresponds to an import path
    				// changes as the build list is updated, and a directory can change
    				// from not being in the build list to being in it and back as
    				// the exact version of a particular module increases during
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    	    Writes test binary as -c would.
    
    	-mutexprofilefraction n
    	    Sample 1 in n stack traces of goroutines holding a
    	    contended mutex.
    
    	-outputdir directory
    	    Place output files from profiling in the specified directory,
    	    by default the directory in which "go test" is running.
    
    	-trace trace.out
    	    Write an execution trace to the specified file before exiting.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		},
    		{
    			directory: filepath.Join(dir, "kustomization.yaml"),
    			expectErr: true,
    			errMsg:    "must build at directory",
    		},
    		{
    			directory: "../../artifacts/kustomization/should-not-load.yaml",
    			expectErr: true,
    			errMsg:    "must build at directory",
    		},
    	}
    	for _, tt := range tests {
    		b := newDefaultBuilder().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  7. src/net/http/httputil/reverseproxy_test.go

    	req.RemoteAddr = "1.2.3.4:56789"
    	rp := &ReverseProxy{
    		Director: func(req *http.Request) {
    			req.Header.Set("From-Director", "1")
    		},
    		Transport: roundTripperFunc(func(req *http.Request) (*http.Response, error) {
    			if v := req.Header.Get("From-Director"); v != "1" {
    				t.Errorf("From-Directory value = %q; want 1", v)
    			}
    			return nil, io.EOF
    		}),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. cmd/xl-storage.go

    	if err = checkPathLength(dstFilePath); err != nil {
    		return err
    	}
    	if srcIsDir {
    		// If source is a directory, we expect the destination to be non-existent but we
    		// we still need to allow overwriting an empty directory since it represents
    		// an object empty directory.
    		dirInfo, err := Lstat(dstFilePath)
    		if isSysErrIO(err) {
    			return errFaultyDisk
    		}
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            "@PathSensitive(PathSensitivity.NONE)"      | "@PathSensitive(PathSensitivity.NONE)"
        }
    
        def "can attach #normalization to input artifact property with #type transformed artifact directory but it has no effect when not caching"() {
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
            setupBuildWithColorTransform {
                produceDirs()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/ldap/LdapManager.java

    import javax.naming.NamingException;
    import javax.naming.directory.Attribute;
    import javax.naming.directory.Attributes;
    import javax.naming.directory.BasicAttribute;
    import javax.naming.directory.BasicAttributes;
    import javax.naming.directory.DirContext;
    import javax.naming.directory.InitialDirContext;
    import javax.naming.directory.ModificationItem;
    import javax.naming.directory.SearchControls;
    import javax.naming.directory.SearchResult;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top