Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 478 for Temp (0.03 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. pkg/registry/core/service/storage/transaction_test.go

    				commit: func() {
    					temp = temp + 1
    				},
    				revert: func() {
    					temp = temp - 1
    				},
    			},
    			callbackTransaction{
    				commit: func() {
    					temp = temp + 2
    				},
    				revert: func() {
    					temp = temp - 2
    				},
    			},
    			callbackTransaction{
    				commit: func() {
    					temp = temp + 3
    				},
    				revert: func() {
    					temp = temp - 3
    				},
    			},
    		},
    		want: 10,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 11 17:49:37 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/FilesTest.java

        assertTrue(Files.equal(i18nFile, temp));
      }
    
      public void testTouch() throws IOException {
        File temp = createTempFile();
        assertTrue(temp.exists());
        assertTrue(temp.delete());
        assertFalse(temp.exists());
        Files.touch(temp);
        assertTrue(temp.exists());
        Files.touch(temp);
        assertTrue(temp.exists());
    
        assertThrows(
            IOException.class,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. guava-tests/test/com/google/common/io/FilesTest.java

        assertTrue(Files.equal(i18nFile, temp));
      }
    
      public void testTouch() throws IOException {
        File temp = createTempFile();
        assertTrue(temp.exists());
        assertTrue(temp.delete());
        assertFalse(temp.exists());
        Files.touch(temp);
        assertTrue(temp.exists());
        Files.touch(temp);
        assertTrue(temp.exists());
    
        assertThrows(
            IOException.class,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  9. 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)
  10. src/math/asin.go

    	}
    	sign := false
    	if x < 0 {
    		x = -x
    		sign = true
    	}
    	if x > 1 {
    		return NaN() // special case
    	}
    
    	temp := Sqrt(1 - x*x)
    	if x > 0.7 {
    		temp = Pi/2 - satan(temp/x)
    	} else {
    		temp = satan(x / temp)
    	}
    
    	if sign {
    		temp = -temp
    	}
    	return temp
    }
    
    // Acos returns the arccosine, in radians, of x.
    //
    // Special case is:
    //
    //	Acos(x) = NaN if x < -1 or x > 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top