Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,059 for createfing (0.29 sec)

  1. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/filesystem/services/UnsupportedFilePermissionsTest.groovy

            when:
            permissions.getUnixMode(tmpDir.createFile("file"))
            permissions.getUnixMode(tmpDir.createDir("dir"))
    
            then:
            outputEventListener.toString() == WARN_MESSAGE
        }
    
        def "warns on first attempt to chmod a file"() {
            when:
            permissions.chmod(tmpDir.createFile("file"), 0644)
            permissions.chmod(tmpDir.createDir("dir"), 0644)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/internal/BuildDashboardGeneratorSpec.groovy

            given:
            def htmlFolder = tmpDir.createDir('htmlContent');
            htmlFolder.createFile("index.html")
    
            when:
            generator.render([
                            mockReport('a', tmpDir.createFile('report.html')),
                            mockReport('b', tmpDir.createDir('inner').createFile('otherReport.html')),
                            mockReport('c', tmpDir.file('idonotexist.html')),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1alpha1/zz_generated.deepcopy.go

    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSIStorageCapacity.
    func (in *CSIStorageCapacity) DeepCopy() *CSIStorageCapacity {
    	if in == nil {
    		return nil
    	}
    	out := new(CSIStorageCapacity)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. pkg/apis/authentication/zz_generated.deepcopy.go

    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SelfSubjectReview.
    func (in *SelfSubjectReview) DeepCopy() *SelfSubjectReview {
    	if in == nil {
    		return nil
    	}
    	out := new(SelfSubjectReview)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_GOTMPDIR.txt

    ! go build -x .
    stderr '^go: creating work dir: \w+ '$GOTMPDIR
    
    # 'go list' should only fail if it needs to build something.
    go list -x .
    ! stderr 'creating work dir'
    stdout m
    go list -m all
    stdout m
    ! go list -x -export .
    stderr '^go: creating work dir: \w+ '$GOTMPDIR
    
    # 'go clean -cache' and 'go clean -modcache' should not fail.
    go clean -x -cache
    ! stderr 'creating work dir'
    go clean -x -modcache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCleanupIntegrationTest.groovy

        }
    
        private TestFile createCacheEntryDir(String entry) {
            TestFile dir = cacheDir.createDir(entry)
            dir.createFile("state.bin")
            dir.createFile("fingerprint.bin")
            return dir
        }
    
        private TestFile getGcFile() {
            return cacheDir.file("gc.properties")
        }
    
        private TestFile getCacheDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            def jdkHome = temporaryFolder.createDir("jdk")
            def binDir = jdkHome.createDir("bin")
            binDir.createFile(OperatingSystem.LINUX.getExecutableName("java"))
    
            // Make it look like a macOS installation
            def macOsJdkHomeBinDir = jdkHome.createDir("Contents/Home/bin")
            macOsJdkHomeBinDir.createFile(OperatingSystem.LINUX.getExecutableName("java"))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r24/BuildInvocationsCrossVersionSpec.groovy

        def "set task selector description taken from task with path that has lowest ordering"() {
            temporaryFolder.createFile('settings.gradle') << '''
              rootProject.name = 'TestProject'
              include 'sub'
            '''
    
            temporaryFolder.createFile('build.gradle') << '''
              task alpha {
                description = 'ALPHA from root project'
              }
              task beta {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VswhereSpec.groovy

            x64Registry()
            vswhere = localRoot.createFile("vswhere.exe")
        }
    
        void vswhereInProgramFiles() {
            x86Registry()
            vswhere = programFiles.createDir("Microsoft Visual Studio/Installer").createFile("vswhere.exe")
        }
    
        void vswhereInProgramFilesX86() {
            x64Registry()
            vswhere = programFilesX86.createDir("Microsoft Visual Studio/Installer").createFile("vswhere.exe")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/output/v1alpha3/zz_generated.deepcopy.go

    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AvailableUpgrade.
    func (in *AvailableUpgrade) DeepCopy() *AvailableUpgrade {
    	if in == nil {
    		return nil
    	}
    	out := new(AvailableUpgrade)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *AvailableUpgrade) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 07:05:29 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top