Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 342 for B1000000 (0.3 sec)

  1. src/cmd/cgo/internal/testcarchive/testdata/main3.c

    		die("raise");
    	}
    
    	if (verbose) {
    		printf("waiting for sigioSeen\n");
    	}
    
    	// 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;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/slice_test.go

    // This test makes sure that t.s = t.s[0:x] doesn't write
    // either the slice pointer or the capacity.
    // See issue #14855.
    
    package main
    
    import "testing"
    
    const N = 1000000
    
    type X struct {
    	s []int
    }
    
    func TestSlice(t *testing.T) {
    	done := make(chan struct{})
    	a := make([]int, N+10)
    
    	x := &X{a}
    
    	go func() {
    		for i := 0; i < N; i++ {
    			x.s = x.s[1:9]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 850 bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/taglib/FessFunctionsTest.java

            assertEquals("1,000,000", FessFunctions.formatNumber(1000000, "###,###"));
        }
    
        public void test_formatFileSize() {
            assertEquals("0", FessFunctions.formatFileSize(0));
            assertEquals("1000", FessFunctions.formatFileSize(1000));
            assertEquals("976.6K", FessFunctions.formatFileSize(1000000));
            assertEquals("953.7M", FessFunctions.formatFileSize(1000000000));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/crypto/x509/x509_test_import.go

    	template := x509.Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject: pkix.Name{
    			CommonName:   "test",
    			Organization: []string{"Σ Acme Co"},
    		},
    		NotBefore: time.Unix(1000, 0),
    		NotAfter:  time.Unix(100000, 0),
    		KeyUsage:  x509.KeyUsageCertSign,
    	}
    
    	if _, err = x509.CreateCertificate(rand.Reader, &template, &template, &rsaPriv.PublicKey, rsaPriv); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/after/v1beta1.yaml

    logging:
      flushFrequency: 5s
      format: text
      options:
        json:
          infoBufferSize: "0"
        text:
          infoBufferSize: "0"
      verbosity: 0
    makeIPTablesUtilChains: true
    maxOpenFiles: 1000000
    maxPods: 110
    memoryManagerPolicy: None
    memorySwap: {}
    memoryThrottlingFactor: 0.9
    nodeLeaseDurationSeconds: 40
    nodeStatusMaxImages: 50
    nodeStatusReportFrequency: 5m0s
    nodeStatusUpdateFrequency: 10s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. test/ken/chan.go

    // Test communication operations including select.
    
    package main
    
    import "os"
    import "runtime"
    import "sync"
    
    var randx int
    
    func nrand(n int) int {
    	randx += 10007
    	if randx >= 1000000 {
    		randx -= 1000000
    	}
    	return randx % n
    }
    
    type Chan struct {
    	sc, rc chan int // send and recv chan
    	sv, rv int      // send and recv seq
    }
    
    var (
    	nproc      int
    	nprocLock  sync.Mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batching_fallback.mlir

      %result_1 = tfrt_fallback_async.batch_function device("/device:CPU:0") @matmul_cpu (%a1, %b) {
          num_batch_threads = 1,
          max_batch_size = 4,
          allowed_batch_sizes = [4],
          batch_timeout_micros = 1000000,
          container = "container",
          shared_name = "shared_name",
          batching_queue = "batching_queue",
          enable_large_batch_splitting = false,
          Tin = [i32],
          Tcaptured = [i32],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 18 22:58:56 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/interval/impl/HostIntervalControllerTest.java

            } catch (final InterruptedException e) {
                // no thing to do
            } catch (final ExecutionException e) {
                // no thing to do
            }
    
            long elapsed = (System.nanoTime() - time) / 1000000;
            long wait = waittime * (numTasks - 1);
            assertTrue(elapsed + " >= " + wait, elapsed + 1L >= wait);
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/math/rand/regress_test.go

    	[]int{1, 0, 2, 5, 7, 6, 9, 8, 3, 4}, // Perm(10)
    	[]byte{0x1},                         // Read([0])
    	[]byte{0x94, 0xfd, 0xc2, 0xfa, 0x2f, 0xfc, 0xc0},                 // Read([0 0 0 0 0 0 0])
    	[]byte{0x41, 0xd3, 0xff, 0x12, 0x4, 0x5b, 0x73, 0xc8},            // Read([0 0 0 0 0 0 0 0])
    	[]byte{0x6e, 0x4f, 0xf9, 0x5f, 0xf6, 0x62, 0xa5, 0xee, 0xe8},     // Read([0 0 0 0 0 0 0 0 0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  10. test/literal2.go

    	assert(0_1_2i == complex(0, 12)) // decimal digits despite leading 0 for backward-compatibility
    	assert(00089i == complex(0, 89)) // decimal digits despite leading 0 for backward-compatibility
    
    	// decimals
    	assert(1_000_000 == 1000000)
    	assert(1_000i == complex(0, 1000))
    
    	// hexadecimals
    	assert(0x_1 == 0x1)
    	assert(0x1_2 == 0x12)
    	assert(0x_cafe_f00d == 0xcafef00d)
    	assert(0x_cafei == complex(0, 0xcafe))
    
    	// octals
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 22:45:09 UTC 2019
    - 2.2K bytes
    - Viewed (0)
Back to top