Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 215 for Temp (0.14 sec)

  1. src/cmd/compile/internal/walk/temp.go

    Than McIntosh <******@****.***> 1712159502 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/initialization/LayoutCommandLineConverterTest.groovy

            def root = temp.createDir('root')
            def other = temp.createDir('other')
            def target = new BuildLayoutParameters().setProjectDir(root)
    
            when:
            converter.convert(['-p', other.file('projectDir').absolutePath, '-g', other.file('gradleDir').absolutePath], target)
    
            then:
            target.gradleUserHomeDir == temp.file("other/gradleDir")
            target.projectDir == temp.file("other/projectDir")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/initialization/buildsrc/BuildSrcDetectorTest.groovy

        @Rule
        TestNameTestDirectoryProvider temp = new TestNameTestDirectoryProvider(getClass())
    
        def "ignores buildSrc file that is not a directory"() {
            expect:
            !isValidBuildSrcBuild(temp.file("buildSrc"))
            !isValidBuildSrcBuild(temp.createFile("buildSrc"))
        }
    
        def "ignores empty buildSrc directory"() {
            expect:
            !isValidBuildSrcBuild(temp.createDir("buildSrc"))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/CompilationSourceDirsTest.groovy

        @Rule
        TestNameTestDirectoryProvider temp = new TestNameTestDirectoryProvider(getClass())
    
        def compilationSourceDirs = new CompilationSourceDirs(["src/main/java", "src/main/java2"].collect { temp.file(it) })
    
        def "relativizes source paths"() {
            expect:
            compilationSourceDirs.relativize(temp.file("src/main/java/Foo.java")) == Optional.of("Foo.java")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. tools/gen_istio_image_list.sh

            REPO=${branch##name:}
            curl --silent "${ISTIO_GITHUB}/${1}/install/kubernetes/helm/istio/charts/${REPO}/values.yaml" -o temp.file
            
            HUB=$(grep -E 'hub: |repository: ' temp.file | awk '{print $2 $4}')
            IMAGE=$(grep "image: " temp.file | awk '{print $2 $4}')
            TAG=$(grep "tag: " temp.file | awk '{print $2 $4}')
    
            hubs=()
            images=()
            tags=()
    
            for hub in ${HUB}; do
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 04:04:35 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. src/math/asinh.go

    	if x < 0 {
    		x = -x
    		sign = true
    	}
    	var temp float64
    	switch {
    	case x > Large:
    		temp = Log(x) + Ln2 // |x| > 2**28
    	case x > 2:
    		temp = Log(2*x + 1/(Sqrt(x*x+1)+x)) // 2**28 > |x| > 2.0
    	case x < NearZero:
    		temp = x // |x| < 2**-28
    	default:
    		temp = Log1p(x + x*x/(1+Sqrt(1+x*x))) // 2.0 > |x| > 2**-28
    	}
    	if sign {
    		temp = -temp
    	}
    	return temp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 20:02:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GFileUtilsTest.groovy

            given:
            def f = temp.file("a/b/c/d")
    
            expect:
            !f.parentFile.exists()
    
            when:
            def p = parentMkdirs(f)
    
            then:
            p.isDirectory()
            f.parentFile == p
        }
    
        def "mkdirs fails if can't make parent"() {
            given:
            def e = temp.file("a/b/c/d/e")
            def b = temp.createFile("a/b")
            def c = temp.file("a/b/c")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/ClusterException.java

            exceptions.iterator().next());
        ArrayList<? extends Throwable> temp = new ArrayList<>(exceptions);
        this.exceptions = Collections.unmodifiableCollection(temp);
      }
    
      /** See {@link #create(Collection)}. */
      static RuntimeException create(Throwable... exceptions) {
        ArrayList<Throwable> temp = new ArrayList<>(Arrays.asList(exceptions));
        return create(temp);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/FilesCreateTempDirTest.java

          assertThrows(IllegalStateException.class, Files::createTempDir);
          return;
        }
        File temp = Files.createTempDir();
        try {
          assertThat(temp.exists()).isTrue();
          assertThat(temp.isDirectory()).isTrue();
          assertThat(temp.listFiles()).isEmpty();
          File child = new File(temp, "child");
          assertThat(child.createNewFile()).isTrue();
          assertThat(child.delete()).isTrue();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/maven/MavenProjectsCreatorSpec.groovy

            given:
            Directory target = Mock() {
                _ * getAsFile() >> temp.testDirectory
                _ * file(_) >> { String path ->
                    Mock(RegularFile) {
                        _ * getAsFile() >> temp.file(path)
                    }
                }
            }
    
            def parentPom = temp.file("pom.xml")
            parentPom.text = """\
    <project>
      <modelVersion>4.0.0</modelVersion>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top