Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for subdir (0.19 sec)

  1. pkg/volume/util/subpath/subpath_windows.go

    func (sp *subpath) SafeMakeDir(subdir string, base string, perm os.FileMode) error {
    	realBase, err := evalSymlink(base)
    	if err != nil {
    		return fmt.Errorf("error resolving symlinks in %s: %s", base, err)
    	}
    
    	realFullPath := filepath.Join(realBase, subdir)
    	return doSafeMakeDir(realFullPath, realBase, perm)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 12:57:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/build.go

    // mergeOrigin returns nil.
    func mergeOrigin(m1, m2 *codehost.Origin) *codehost.Origin {
    	if m1 == nil || m2 == nil {
    		return nil
    	}
    
    	if m2.VCS != m1.VCS ||
    		m2.URL != m1.URL ||
    		m2.Subdir != m1.Subdir {
    		return nil
    	}
    
    	merged := *m1
    	if m2.Hash != "" {
    		if m1.Hash != "" && m1.Hash != m2.Hash {
    			return nil
    		}
    		merged.Hash = m2.Hash
    	}
    	if m2.TagSum != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

            def fileInDir = dir1.createFile("file1")
            def setWithDir1 = snapshot(dir1)
    
            when:
            def subDir = dir1.file("sub").createDir()
            def set = updateDir(setWithDir1, subDir)
            then:
            assertMissingFileSnapshot(set, subDir)
            assertFileSnapshot(set, fileInDir)
            set.findSnapshot(dir1.absolutePath).get() instanceof DirectorySnapshot
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  4. operator/pkg/component/component.go

    	metrics.CountManifestRender(cf.ComponentName())
    	return ret, nil
    }
    
    // createHelmRenderer creates a helm renderer for the component defined by c and returns a ptr to it.
    // If a helm subdir is not found in ComponentMap translations, it is assumed to be "addon/<component name>".
    func createHelmRenderer(c *CommonComponentFields) helm.TemplateRenderer {
    	iop := c.InstallSpec
    	cns := string(c.ComponentName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/coderepo_test.go

    	},
    	{
    		vcs:  "git",
    		path: "github.com/rsc/vgotest1/subdir",
    		err:  "github.com/rsc/vgotest1/subdir@v0.0.0-20180219223237-a08abb797a67: invalid version: missing github.com/rsc/vgotest1/subdir/go.mod at revision a08abb797a67",
    	},
    	{
    		vcs:     "git",
    		path:    "vcs-test.golang.org/git/commit-after-tag.git",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/TextResourceScriptSourceTest.java

        @Test
        public void filesWithSameNameAndDifferentPathHaveDifferentClassName() {
            ScriptSource source1 = forFile(new File(testDir, "build.gradle"));
            ScriptSource source2 = forFile(new File(testDir, "subdir/build.gradle"));
            assertThat(source1.getClassName(), not(equalTo(source2.getClassName())));
    
            ScriptSource source3 = forFile(new File(testDir, "build.gradle"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 01:04:05 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. common/config/.golangci.yml

        # XXX: if you enable this setting, unparam will report a lot of false-positives in text editors:
        # if it's called for subdir of a project it can't find external interfaces. All text editor integrations
        # with golangci-lint call it on a directory with the changed file.
        check-exported: false
      gci:
        sections:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            relativePaths as Set == [
                '',
                'a',
                'a/b', 'a/b/c.txt',
                'a/c', 'a/c/c.txt', 'a/b/c.html',
                'subdir1', 'subdir1/a', 'subdir1/a/b', 'subdir1/a/b/c.html',
                'a.txt'
            ] as Set
        }
    
        def "should snapshot file system root"() {
            given:
            def fileSystemRoot = fileSystemRoot()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport_test.go

    			output:       `<pre><a href="kubelet.log">kubelet.log</a><a href="/google.log">google.log</a></pre>`,
    			contentType:  "text/plain",
    			forwardedURI: "/proxy/node/node1:10250/logs/log.log",
    		},
    		"subdir": {
    			input:        `<a href="kubelet.log">kubelet.log</a><a href="/google.log">google.log</a>`,
    			sourceURL:    "http://mynode.com/whatever/apt/somelog.log",
    			transport:    testTransport2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

            addSnapshot(snapshotRegularFile(fileInside))
            return fileInside.parentFile
        }
    
        TestFile directoryContainingSnapshot(TestFile projectRootDirectory) {
            projectRootDirectory.file("some/subdir")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top