Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 478 for Temp (0.03 sec)

  1. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/AntGroovydoc.java

        private String getGroovyVersion(List<File> combinedClasspath) {
            File temp;
            final String tempPath;
            try {
                temp = temporaryFileProvider.createTemporaryFile("temp", "");
                String p = temp.getCanonicalPath();
                tempPath = File.separatorChar == '/' ? p : p.replace(File.separatorChar, '/');
                temp.deleteOnExit();
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/conversion.go

    	temp := int64(*in)
    	*out = &temp
    	return nil
    }
    
    func Convert_Pointer_int64_To_int(in **int64, out *int, s conversion.Scope) error {
    	if *in == nil {
    		*out = 0
    		return nil
    	}
    	*out = int(**in)
    	return nil
    }
    
    func Convert_int_To_Pointer_int64(in *int, out **int64, s conversion.Scope) error {
    	temp := int64(*in)
    	*out = &temp
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 26 03:49:57 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/store/ResolutionResultsStoreFactory.java

         * @param maxSize - indicates the approx. maximum size of the binary store that will trigger rolling of the file
         */
        ResolutionResultsStoreFactory(TemporaryFileProvider temp, int maxSize) {
            this.temp = temp;
            this.maxSize = maxSize;
        }
    
        private final Map<String, DefaultBinaryStore> stores = new HashMap<>();
        private final CompositeStoppable cleanUpLater = new CompositeStoppable();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtlmUtil.java

            byte[] temp = new byte[28 + avPairsLength + 4];
    
            Encdec.enc_uint32le(0x00000101, temp, 0); // Header
            Encdec.enc_uint32le(0x00000000, temp, 4); // Reserved
            Encdec.enc_uint64le(nanos1601, temp, 8);
            System.arraycopy(clientChallenge, 0, temp, 16, 8);
            Encdec.enc_uint32le(0x00000000, temp, 24); // Unknown
            if ( avPairs != null )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 9.7K bytes
    - Viewed (0)
  5. test/typeparam/issue50642.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "fmt"
    
    type Temp[T any] struct {
    }
    
    var temp, temp1 any
    var ch any
    
    func (it Temp[T]) HasNext() bool {
    	var ok bool
    	temp1 = <-ch.(chan T)
    	// test conversion of T to interface{} during an OAS2RECV
    	temp, ok = <-ch.(chan T)
    	return ok
    }
    
    type MyInt int
    
    func (i MyInt) String() string {
    	return "a"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1013 bytes
    - Viewed (0)
  6. 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)
  7. testing/internal-testing/src/test/groovy/org/gradle/util/TempDirIsUniquePerTestSpec.groovy

        @Rule TestNameTestDirectoryProvider temp = new TestNameTestDirectoryProvider(getClass())
        static tests = new HashSet()
        static tmpDirs = new HashSet()
    
        def setup() {
            //it's very important we try to access the test dir in the setup()
            temp.testDirectory
        }
    
        def "testOne"() {
            when:
            tests << "testOne"
            tmpDirs << temp.testDirectory
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/file-temp/src/test/groovy/org/gradle/api/internal/file/temp/TempFilesTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.internal.file.temp
    
    import spock.lang.Specification
    import spock.lang.TempDir
    
    class TempFilesTest extends Specification {
    
        @TempDir
        File tempDir;
    
        def "can generate temp files for short prefixes"() {
            when:
            def file = TempFiles.createTempFile("ok", "", tempDir)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:50:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

        });
    
        $('.section-sign').click(function () {
            var $temp = $("<input>");
            $("body").append($temp);
            $temp.val(window.location.href.split('#')[0] + $(this).attr('href')).select();
            document.execCommand("copy");
            $temp.remove();
        });
    }
    
    function refreshCards(selectedTags) {
        $('.card').each(function (index, row) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                    File temp = File.createTempFile("maven-artifact", null);
                    temp.deleteOnExit();
                    byte[] bytes = sums.get(extension).getBytes(StandardCharsets.UTF_8);
                    Files.write(
                            Paths.get(temp.getAbsolutePath()), bytes, StandardOpenOption.APPEND, StandardOpenOption.CREATE);
    
                    temporaryFiles.add(temp);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 29.9K bytes
    - Viewed (0)
Back to top