Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 441 for newsize (0.14 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestScenarioDefinitionVerifier.groovy

        static void main(String[] args) {
            File oldFile = new File(args[0])
            File newFile = new File(args[1])
            PerformanceTestScenarioDefinition oldJson = new ObjectMapper().readValue(oldFile, PerformanceTestScenarioDefinition).sort()
            PerformanceTestScenarioDefinition newJson = new ObjectMapper().readValue(newFile, PerformanceTestScenarioDefinition).sort()
            if (oldJson != newJson) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

            protected File newFile;
    
            protected Writer writer;
    
            protected SynonymItem item;
    
            protected SynonymUpdater(final SynonymItem newItem) {
                try {
                    newFile = ComponentUtil.getSystemHelper().createTempFile(SYNONYM, ".txt");
                    writer = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(newFile), Constants.UTF_8));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. src/os/file_unix.go

    	}
    
    	return uintptr(f.pfd.Sysfd)
    }
    
    // NewFile returns a new File with the given file descriptor and
    // name. The returned value will be nil if fd is not a valid file
    // descriptor. On Unix systems, if the file descriptor is in
    // non-blocking mode, NewFile will attempt to return a pollable File
    // (one for which the SetDeadline methods work).
    //
    // After passing it to NewFile, fd may become invalid under the same
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/test/kotlin/com/myorg/ServicePluginTest.kt

                plugins {
                    id("com.myorg.service-conventions")
                }
            """)
        }
    
        @Test
        fun `integrationTest and readmeCheck tasks run with check task`() {
            testProjectDir.newFile("README.md").writeText("""
                ## Service API
    
            """.trimIndent())
    
            val result = runTask("check")
    
            assertEquals(TaskOutcome.NO_SOURCE, result.task(":test")?.outcome)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/os/pipe2_unix.go

    func Pipe() (r *File, w *File, err error) {
    	var p [2]int
    
    	e := syscall.Pipe2(p[0:], syscall.O_CLOEXEC)
    	if e != nil {
    		return nil, nil, NewSyscallError("pipe2", e)
    	}
    
    	return newFile(p[0], "|0", kindPipe, false), newFile(p[1], "|1", kindPipe, false), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:47:23 UTC 2024
    - 654 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/test/kotlin/com/myorg/PluginTest.kt

        protected lateinit var buildFile: File
    
        @Before
        fun setup() {
            settingsFile = testProjectDir.newFile("settings.gradle.kts")
            settingsFile.appendText("""
                rootProject.name = "test"
            """)
            buildFile = testProjectDir.newFile("build.gradle.kts")
        }
    
        fun runTask(task: String): BuildResult {
            return GradleRunner.create()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/test/kotlin/com/myorg/PluginTest.kt

        protected lateinit var buildFile: File
    
        @Before
        fun setup() {
            settingsFile = testProjectDir.newFile("settings.gradle.kts")
            settingsFile.appendText("""
                rootProject.name = "test"
            """)
            buildFile = testProjectDir.newFile("build.gradle.kts")
        }
    
        fun runTask(task: String): BuildResult {
            return GradleRunner.create()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/testdata/issue23434.go

    // parser after missing type. There should be exactly
    // one error each time, with now follow errors.
    
    package p
    
    type T /* ERROR unexpected newline */
    
    type Map map[int] /* ERROR unexpected newline */
    
    // Examples from go.dev/issue/23434:
    
    func g() {
    	m := make(map[string] /* ERROR unexpected ! */ !)
    	for {
    		x := 1
    		print(x)
    	}
    }
    
    func f() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 12:49:49 UTC 2023
    - 653 bytes
    - Viewed (0)
  9. src/internal/poll/splice_linux_test.go

    			if err != nil {
    				continue
    			}
    			poll.PutPipe(p)
    		}
    	})
    	b.Run("SplicePipeWithoutPool", func(b *testing.B) {
    		for i := 0; i < b.N; i++ {
    			p := poll.NewPipe()
    			if p == nil {
    				b.Skip("newPipe returned nil")
    			}
    			poll.DestroyPipe(p)
    		}
    	})
    }
    
    func BenchmarkSplicePipePoolParallel(b *testing.B) {
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. src/crypto/x509/pem_decrypt.go

    	cipherFunc: des.NewTripleDESCipher,
    	keySize:    24,
    	blockSize:  des.BlockSize,
    }, {
    	cipher:     PEMCipherAES128,
    	name:       "AES-128-CBC",
    	cipherFunc: aes.NewCipher,
    	keySize:    16,
    	blockSize:  aes.BlockSize,
    }, {
    	cipher:     PEMCipherAES192,
    	name:       "AES-192-CBC",
    	cipherFunc: aes.NewCipher,
    	keySize:    24,
    	blockSize:  aes.BlockSize,
    }, {
    	cipher:     PEMCipherAES256,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top