Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for 4400 (0.04 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #if (GTEST_OS_LINUX || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS || \
         (GTEST_OS_MAC && !GTEST_OS_IOS) || GTEST_OS_IOS_SIMULATOR || \
         (GTEST_OS_WINDOWS_DESKTOP && _MSC_VER >= 1400) || \
         GTEST_OS_WINDOWS_MINGW || GTEST_OS_AIX || GTEST_OS_HPUX || \
         GTEST_OS_OPENBSD || GTEST_OS_QNX)
    # define GTEST_HAS_DEATH_TEST 1
    # include <vector>  // NOLINT
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("CHILD-4", pom.getValue(prefix + "listParam/listParam[8]"));
            assertNull(pom.getValue(prefix + "listParam/listParam[9]"));
        }
    
        /* MNG-4000 */
        @Test
        void testMultiplePluginExecutionsWithAndWithoutIdsWithoutPluginManagement() throws Exception {
            PomTestWrapper pom = buildPom("plugin-exec-w-and-wo-id/wo-plugin-mgmt");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    const (
    	CBR_110    = 110
    	CBR_300    = 300
    	CBR_600    = 600
    	CBR_1200   = 1200
    	CBR_2400   = 2400
    	CBR_4800   = 4800
    	CBR_9600   = 9600
    	CBR_14400  = 14400
    	CBR_19200  = 19200
    	CBR_38400  = 38400
    	CBR_57600  = 57600
    	CBR_115200 = 115200
    	CBR_128000 = 128000
    	CBR_256000 = 256000
    
    	DTR_CONTROL_DISABLE   = 0x00000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. src/time/time.go

    //	}
    //
    // everywhere.
    //
    // The calendar runs on an exact 400 year cycle: a 400-year calendar
    // printed for 1970-2369 will apply as well to 2370-2769. Even the days
    // of the week match up. It simplifies the computations to choose the
    // cycle boundaries so that the exceptional years are always delayed as
    // long as possible. That means choosing a year equal to 1 mod 400, so
    // that the first leap year is the 4th year, the first missed leap year
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. src/encoding/xml/marshal_test.go

    }
    
    func TestMarshalWriteErrors(t *testing.T) {
    	var buf bytes.Buffer
    	const writeCap = 1024
    	w := &limitedBytesWriter{&buf, writeCap}
    	enc := NewEncoder(w)
    	var err error
    	var i int
    	const n = 4000
    	for i = 1; i <= n; i++ {
    		err = enc.Encode(&Passenger{
    			Name:   []string{"Alice", "Bob"},
    			Weight: 5,
    		})
    		if err != nil {
    			break
    		}
    	}
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    	// if a particular iteration count is specified, run that many
    	// iterations, no more, no less.  A count is specified as the
    	// thousands digit of the location lists debug flag,
    	// e.g. -d=locationlists=4000
    	keepGoing := func(k int) bool {
    		if state.convergeCount == 0 {
    			return !converged
    		}
    		return k < state.convergeCount
    	}
    	for k := 0; keepGoing(k); k++ {
    		if state.loggingLevel > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. src/bytes/bytes_test.go

    		})
    	}
    }
    
    func TestClone(t *testing.T) {
    	var cloneTests = [][]byte{
    		[]byte(nil),
    		[]byte{},
    		Clone([]byte{}),
    		[]byte(strings.Repeat("a", 42))[:0],
    		[]byte(strings.Repeat("a", 42))[:0:0],
    		[]byte("short"),
    		[]byte(strings.Repeat("a", 42)),
    	}
    	for _, input := range cloneTests {
    		clone := Clone(input)
    		if !Equal(clone, input) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. cmd/object-api-listobjects_test.go

    		},
    		// ListObjectsResult-39 list with prefix match 1 level deep
    		39: {
    			IsTruncated: false,
    			Objects: []ObjectInfo{
    				{Name: "201910/foo/bar/xl.meta/1.txt"},
    			},
    		},
    		// ListObjectsResult-40
    		40: {
    			IsTruncated: false,
    			Objects: []ObjectInfo{
    				{Name: "aaa"},
    				{Name: "ccc"},
    			},
    			Prefixes: []string{"bbb_"},
    		},
    	}
    
    	testCases := []struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof_test.go

    		wantSamples: []*profile.Sample{
    			{Value: []int64{30, 30 * period}, Location: []*profile.Location{{ID: 1}, {ID: 1}, {ID: 2}}},
    			{Value: []int64{40, 40 * period}, Location: []*profile.Location{{ID: 1}, {ID: 2}}},
    		},
    	}, {
    		name: "recursion_chain_inline",
    		input: []uint64{
    			3, 0, 500, // hz = 500. Must match the period.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  10. src/runtime/zcallback_windows_arm.s

    	MOVW	$1396, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1397, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1398, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1399, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1400, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1401, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1402, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1403, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1404, R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 21:52:38 UTC 2021
    - 89.3K bytes
    - Viewed (0)
Back to top