Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for subdir (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/test/framework/components/istio/kube.go

    		return err
    	}
    
    	root, err := ca.NewRoot(certsDir)
    	if err != nil {
    		return fmt.Errorf("failed creating the root CA: %v", err)
    	}
    
    	for _, c := range i.env.Clusters() {
    		// Create a subdir for the cluster certs.
    		clusterDir := filepath.Join(certsDir, c.Name())
    		if err := os.Mkdir(clusterDir, 0o700); err != nil {
    			return err
    		}
    
    		// Create the new extensions config for the CA
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

            createTar('test1.tar') {
                subdir1 {
                    file ('file.txt').text = 'original text 1'
                }
                subdir2 {
                    file('file2.txt').text = 'original text 2'
                    file ('file3.txt').text =  'original text 3'
                }
            }
            createTar('test2.tar') {
                subdir1 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top