Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 444 for sometimes (0.35 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftBothLibraryLinkageWithXCTestProjectIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.SwiftSourceElement
    import org.gradle.test.fixtures.file.DoesNotSupportNonAsciiPaths
    
    @DoesNotSupportNonAsciiPaths(reason = "Swift sometimes fails when executed from non-ASCII directory")
    class XcodeSwiftBothLibraryLinkageWithXCTestProjectIntegrationTest extends AbstractXcodeSwiftWithXCTestProjectIntegrationTest {
        @Override
        void makeSingleProject() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/log/slog/internal/benchmarks/benchmarks.go

    //     better simulate a real server (the most common environment for structured
    //     logs).
    //
    //   - Some handlers are optimistic versions of real handlers, doing real-world
    //     tasks as fast as possible (and sometimes faster, in that an
    //     implementation may not be concurrency-safe). This gives us an upper bound
    //     on handler performance, so we can evaluate the (handler-independent) core
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 25 12:14:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. test/fixedbugs/issue13799.go

    func main() {
    	// Just run test over and over again. This main func is just for
    	// convenience; if test were the main func, we could also trigger
    	// the panic just by running the program over and over again
    	// (sometimes it takes 1 time, sometimes it takes ~4,000+).
    	for iter := 0; ; iter++ {
    		if iter%50 == 0 {
    			fmt.Println(iter) // ERROR "iter escapes to heap$" "... argument does not escape$"
    		}
    		test1(iter)
    		test2(iter)
    		test3(iter)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptClassPathIntegrationTest.groovy

            runtimeClasspath.files.each { println it }
        }
    }
    """
    
            expect:
            succeeds("show")
        }
    
        @Issue("gradle/gradle#742")
        @NotYetImplemented
        @Ignore("Apparently sometimes the test passes on CI")
        def "doesn't cache the metaclass from previous execution if build script changes"() {
            buildFile '''
    void bar() {
       println 'Original bar'
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 11:48:31 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. src/os/error.go

    // to report that a timeout occurred.
    //
    // This function predates [errors.Is], and the notion of whether an
    // error indicates a timeout can be ambiguous. For example, the Unix
    // error EWOULDBLOCK sometimes indicates a timeout and sometimes does not.
    // New code should use errors.Is with a value appropriate to the call
    // returning the error, such as [os.ErrDeadlineExceeded].
    func IsTimeout(err error) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/internal/types/testdata/examples/methods.go

    // anymore as expected.
    // This is no different from locally re-declaring a predeclared identifier
    // and usually should be avoided. There are some notable exceptions; e.g.,
    // sometimes it makes sense to use the identifier "copy" which happens to
    // also be the name of a predeclared built-in function.
    func (t T1[int]) m3() { var _ int = 42 /* ERRORx `cannot use 42 .* as int` */ }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. src/syscall/getdirentries_test.go

    		if err != nil {
    			t.Fatalf("Getdirentries: %v", err)
    		}
    		if n == 0 {
    			break
    		}
    		data := buf[:n]
    		for len(data) > 0 {
    			// If multiple Dirents are written into buf, sometimes when we reach the final one,
    			// we have cap(buf) < Sizeof(Dirent). So use an appropriate slice to copy from data.
    			var dirent syscall.Dirent
    			copy((*[unsafe.Sizeof(dirent)]byte)(unsafe.Pointer(&dirent))[:], data)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftDependenciesCppInteroperabilityIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.SwiftAppWithCppLibrary
    import org.gradle.test.fixtures.file.DoesNotSupportNonAsciiPaths
    import org.gradle.vcs.fixtures.GitFileRepository
    
    @DoesNotSupportNonAsciiPaths(reason = "Swift sometimes fails when executed from non-ASCII directory")
    class SwiftDependenciesCppInteroperabilityIntegrationTest extends AbstractSwiftMixedLanguageIntegrationTest {
        def app = new SwiftAppWithCppLibrary()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testsanitizers/msan_test.go

    		{src: "msan4.go"},
    		{src: "msan5.go"},
    		{src: "msan6.go"},
    		{src: "msan7.go"},
    		{src: "msan8.go"},
    		{src: "msan_fail.go", wantErr: true},
    		// This may not always fail specifically due to MSAN. It may sometimes
    		// fail because of a fault. However, we don't care what kind of error we
    		// get here, just that we get an error. This is an MSAN test because without
    		// MSAN it would not fail deterministically.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/net/tcpsock_posix.go

    	//	https://golang.org/issue/2690
    	//	https://stackoverflow.com/questions/4949858/
    	//
    	// The opposite can also happen: if we ask the kernel to pick an appropriate
    	// originating local address, sometimes it picks one that is already in use.
    	// So if the error is EADDRNOTAVAIL, we have to try again too, just for
    	// a different reason.
    	//
    	// The kernel socket code is no doubt enjoying watching us squirm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top