Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for subdir2 (0.18 sec)

  1. cmd/kubeadm/app/phases/controlplane/volumes_test.go

    			cert:     "/etc/ssl/certs/my-etcd.crt",
    			key:      "/etc/ssl/certs/my-etcd.key",
    			vol:      []v1.Volume{},
    			volMount: []v1.VolumeMount{},
    		},
    		{
    			name:     "Should ignore files in subdirs of /etc/ssl/certs",
    			ca:       "/etc/ssl/certs/etcd/my-etcd-ca.crt",
    			cert:     "/etc/ssl/certs/etcd/my-etcd.crt",
    			key:      "/etc/ssl/certs/etcd/my-etcd.key",
    			vol:      []v1.Volume{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

            when:
            librarySourceModified("hello", path)
    
            then:
            args("--info")
            succeeds "helloSharedLibrary"
            pchNotCompiled()
    
            where:
            path << [ "", "subdir/to/header/" ]
        }
    
        @ToBeFixedForConfigurationCache
        def "can set a precompiled header on a source set for a header colocated with the source" () {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K 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. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

                virtualFileSystem
            )
        }
    
        def "outputs are created"() {
            def unitOfWork = builder.withOutputDirs(
                dir1: file("outDir1"),
                dir2: file("outDir2")
            ).withOutputFiles(
                "file1": file("parent1/outFile"),
                "file2": file("parent2/outFile")
            ).withWork { ->
                UnitOfWork.WorkResult.DID_WORK
            }.build()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K 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. 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)
  9. src/internal/coverage/cfile/emitdata_test.go

    	nonAtomicMode := testing.CoverMode()
    	if testing.CoverMode() == "atomic" {
    		nonAtomicMode = "set"
    	}
    	bdir2 := mkdir(t, filepath.Join(dir, "build2"))
    	hargs2 := []string{"-coverpkg=all", "-covermode=" + nonAtomicMode}
    	nonAtomicHarnessPath := buildHarness(t, bdir2, hargs2)
    
    	t.Logf("atomic harness path is %s", atomicHarnessPath)
    	t.Logf("non-atomic harness path is %s", nonAtomicHarnessPath)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K 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