Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,643 for too (0.02 sec)

  1. src/cmd/go/internal/mmap/mmap_unix.go

    	st, err := f.Stat()
    	if err != nil {
    		return Data{}, err
    	}
    	size := st.Size()
    	pagesize := int64(os.Getpagesize())
    	if int64(int(size+(pagesize-1))) != size+(pagesize-1) {
    		return Data{}, fmt.Errorf("%s: too large for mmap", f.Name())
    	}
    	n := int(size)
    	if n == 0 {
    		return Data{f, nil}, nil
    	}
    	mmapLength := int(((size + pagesize - 1) / pagesize) * pagesize) // round up to page size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 886 bytes
    - Viewed (0)
  2. internal/config/storageclass/storage-class_test.go

    		},
    		{
    			"EC:4:5",
    			StorageClass{
    				Parity: 4,
    			},
    			errors.New("Too many sections in EC:4:5"),
    		},
    		{
    			"EC:A",
    			StorageClass{
    				Parity: 4,
    			},
    			errors.New(`strconv.Atoi: parsing "A": invalid syntax`),
    		},
    		{
    			"AB",
    			StorageClass{
    				Parity: 4,
    			},
    			errors.New("Too few sections in AB"),
    		},
    	}
    	for i, tt := range tests {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcshared/testdata/main5.c

    	}
    
    	// Wait until the signal has been delivered.
    	i = 0;
    	while (!sigioSeen) {
    		ts.tv_sec = 0;
    		ts.tv_nsec = 1000000;
    		nanosleep(&ts, NULL);
    		i++;
    		if (i > 5000) {
    			fprintf(stderr, "looping too long waiting for signal\n");
    			exit(EXIT_FAILURE);
    		}
    	}
    
    	sigioSeen = 0;
    
    	// Tell the Go code to catch SIGIO.
    
    	if (verbose) {
    		fprintf(stderr, "calling dlsym\n");
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/runtime/semasleep_test.go

    	// stdout to close. Wait closes the read/parent end of stdout, so
    	// starting this goroutine prior to io.ReadAll introduces a race
    	// condition where ReadAll may get fs.ErrClosed if the child exits too
    	// quickly.
    	waiting = true
    	go func() {
    		doneCh <- cmd.Wait()
    		close(doneCh)
    	}()
    
    	// Wait for an arbitrary timeout longer than one second. The subprocess itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:48:24 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. src/strconv/atof_test.go

    	{"0x.1fffffffffffff8p1027", "+Inf", ErrRange},
    	{"-0x.1fffffffffffff9p1027", "-Inf", ErrRange},
    
    	// a little too large
    	{"1e308", "1e+308", nil},
    	{"2e308", "+Inf", ErrRange},
    	{"1e309", "+Inf", ErrRange},
    	{"0x1p1025", "+Inf", ErrRange},
    
    	// way too large
    	{"1e310", "+Inf", ErrRange},
    	{"-1e310", "-Inf", ErrRange},
    	{"1e400", "+Inf", ErrRange},
    	{"-1e400", "-Inf", ErrRange},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  6. ci/official/envs/enable_pycpp_build

    #
    # Changes the behavior in pycpp.sh from "run all tests" to "verify that all
    # tests can compile." Used in some CI jobs (macOS and Linux Arm64) where test
    # execution is too expensive.
    TFCI_PYCPP_SWAP_TO_BUILD_ENABLE=1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 21:57:40 UTC 2024
    - 976 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fail_fast.txt

    package failfast
    
    import "testing"
    
    func TestA(t *testing.T) {
    	// Edge-case testing, mixing unparallel tests too
    	t.Logf("LOG: %s", t.Name())
    }
    
    func TestFailingA(t *testing.T) {
    	t.Errorf("FAIL - %s", t.Name())
    }
    
    func TestB(t *testing.T) {
    	// Edge-case testing, mixing unparallel tests too
    	t.Logf("LOG: %s", t.Name())
    }
    
    func TestParallelFailingA(t *testing.T) {
    	t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. test/fixedbugs/bug255.go

    // var f [e]int  // ok with Go 1.17 because an error was reported for e; leads to an error for Go 1.18
    var f [ee]int      // ERROR "undefined|undeclared"
    var g [1 << 65]int // ERROR "array bound is too large|overflows|invalid array length"
    var h [len(a)]int  // ok
    
    func ff() string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 27 18:59:51 UTC 2023
    - 852 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    This means that your build cannot benefit from file system watching for one of the following reasons:
    
    * the Daemon received an unknown file system event
    * too many changes happened, and the watching API couldn't handle it
    
    Too many open files on macOS::
    If you receive the `java.io.IOException: Too many open files` error on macOS, raise your open files limit.
    See https://superuser.com/a/443168/8117[this post] for more details.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnPluginTooNewFailureDescriberIntegrationTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    
    class TargetJVMVersionOnPluginTooNewFailureDescriberIntegrationTest extends AbstractIntegrationSpec implements JavaToolchainFixture {
        def 'JVM version too low uses custom error message for plugin'() {
            given:
            def currentJdk = Jvm.current()
            def otherJdk = AvailableJavaHomes.differentVersion
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 20:48:53 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top