Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for subdir2 (0.13 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocatorTest.groovy

            result.component.baseDir == sdkDir1
    
            when:
            result = windowsSdkLocator.locateComponent(sdkDir2)
    
            then:
            result.available
            result.component.name == "User-provided Windows SDK"
            result.component.version == VersionNumber.UNKNOWN
            result.component.baseDir == sdkDir2
        }
    
        def "SDK not available when specified install dir does not look like an SDK"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. pkg/volume/configmap/configmap_test.go

    					"bar": "bar",
    				},
    			},
    			mode: 0644,
    			payload: map[string]util.FileProjection{
    				"path/to/foo.txt": {Data: []byte("foo"), Mode: 0644},
    			},
    			success: true,
    		},
    		{
    			name: "subdirs",
    			mappings: []v1.KeyToPath{
    				{
    					Key:  "foo",
    					Path: "path/to/1/2/3/foo.txt",
    				},
    			},
    			configMap: &v1.ConfigMap{
    				Data: map[string]string{
    					"foo": "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  3. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            }
    
            void taskCreatedOutputs() {
                assert outputFile.text == "This is the text"
                assert outputDir.allDescendants().containsAll('subDir/inputFile1.txt', 'subDir/inputFile2.txt')
            }
    
            File getOverlappingOutputFile() {
                file("${getOverlappingOutputDir()}/new-output.txt")
            }
    
            void overlappingOutputsAreStillPresent() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/probe_test.go

    	// Assert
    	assert.Equal(t, 0, len(events))
    	assert.NoError(t, err)
    
    	// Call probe after a subdirectory is added in a driver directory. should return 1 event.
    	subdirPath := filepath.Join(driverPath, "subdir")
    	fs.Create(subdirPath)
    	watcher.TriggerEvent(fsnotify.Create, subdirPath)
    
    	// Act
    	events, err = prober.Probe()
    
    	// Assert
    	assert.Equal(t, 1, len(events))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/BaseDirFileResolverTest.groovy

            assertEquals(nested.path, baseDirConverter.resolveForDisplay(nested))
        }
    
        @Test public void testCreateFileResolver() {
            File newBaseDir = new File(baseDir, 'subdir')
            assertEquals(new File(newBaseDir, 'file'), baseDirConverter.withBaseDir('subdir').resolve('file'))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 17:15:52 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  6. pkg/volume/secret/secret_test.go

    					"bar": []byte("bar"),
    				},
    			},
    			mode: 0644,
    			payload: map[string]util.FileProjection{
    				"path/to/foo.txt": {Data: []byte("foo"), Mode: 0644},
    			},
    			success: true,
    		},
    		{
    			name: "subdirs",
    			mappings: []v1.KeyToPath{
    				{
    					Key:  "foo",
    					Path: "path/to/1/2/3/foo.txt",
    				},
    			},
    			secret: &v1.Secret{
    				Data: map[string][]byte{
    					"foo": []byte("foo"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  7. pkg/volume/util/atomic_writer_test.go

    			},
    			payload2: map[string]FileProjection{
    				"foo.txt": {Mode: 0644, Data: []byte("foo")},
    			},
    			expected: sets.New[string]("zip/bar.txt", "zip"),
    		},
    		{
    			name: "subdirs 1",
    			payload1: map[string]FileProjection{
    				"foo.txt":         {Mode: 0644, Data: []byte("foo")},
    				"zip/zap/bar.txt": {Mode: 0644, Data: []byte("zip/bar")},
    			},
    			payload2: map[string]FileProjection{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. pkg/volume/iscsi/iscsi_util_test.go

    			}
    		})
    	}
    }
    
    func createFakePluginDirs() (string, error) {
    	dir, err := ioutil.TempDir("", "refcounter")
    	if err != nil {
    		return "", err
    	}
    
    	subdirs := []string{
    		"iface-127.0.0.1:3260:pv1/127.0.0.1:3260-iqn.2003-01.io.k8s:e2e.volume-1-lun-3",
    		"iface-127.0.0.1:3260:pv2/127.0.0.1:3260-iqn.2003-01.io.k8s:e2e.volume-1-lun-2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 09:43:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top