Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 283 for 1000Mi (0.27 sec)

  1. src/cmd/go/testdata/script/test_fuzz_minimize_interesting.txt

    ! exec ./fuzz.test$GOEXE -test.fuzzcachedir=$GOCACHE/fuzz -test.fuzz=FuzzMinimizerCrashInMinimization -test.run=^$ -test.fuzztime=10000x -test.parallel=1
    ! stdout '^ok'
    stdout -count=1 'got the minimum size!'
    stdout -count=1 'bad input'
    stdout FAIL
    # Check that the input written to testdata will reproduce the error, and is the
    # smallest possible.
    go run check_testdata/check_testdata.go FuzzMinimizerCrashInMinimization 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    		add rule ip kube-proxy service-42NFTM6N-ns2/svc2/tcp/p80 numgen random mod 1 vmap { 0 : goto endpoint-SGOXE6O3-ns2/svc2/tcp/p80__10.180.0.2/80 }
    		add chain ip kube-proxy external-42NFTM6N-ns2/svc2/tcp/p80
    		add rule ip kube-proxy external-42NFTM6N-ns2/svc2/tcp/p80 ip saddr 10.0.0.0/8 goto service-42NFTM6N-ns2/svc2/tcp/p80 comment "short-circuit pod traffic"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/primitives/UnsignedBytesBenchmark.java

          }
        }
      }
    
      /*
      try {
        UnsignedBytesBenchmark bench = new UnsignedBytesBenchmark();
        bench.length = 1024;
        bench.setUp();
        bench.timeUnsafe(100000);
      } catch (Exception e) {
      }*/
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/DefaultOutputFilesRepositoryTest.groovy

            createIndexedCache(_) >> outputFiles
        }
        def cacheDecorator = Mock(CacheDecorator)
        def inMemoryCacheDecoratorFactory = Stub(DefaultInMemoryCacheDecoratorFactory) {
            decorator(100000, true) >> cacheDecorator
        }
        def repository = new DefaultOutputFilesRepository(cacheAccess, inMemoryCacheDecoratorFactory)
        def fileSystemAccess = TestFiles.fileSystemAccess()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/nnapi_hardware.cc

    namespace TFL {
    namespace tac {
    
    // The copy can be non-consectutive copy. This is just fake data.
    constexpr float kNNAPICopyUnitCost = 0.2;
    
    // Default values.
    constexpr float kNNAPIDefaultFixedValuedCost = 10000.0;
    
    constexpr char NNAPIHardware::kId[];  // Define kId.
    
    mlir::RewritePatternSet NNAPIHardware::GetTransformations(
        MLIRContext* context) const {
      mlir::RewritePatternSet patterns(context);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/run_test.go

    			},
    		},
    		{
    			"ipnets",
    			func(cfg *config.Config) {
    				cfg.OutboundIPRangesInclude = "10.0.0.0/8"
    			},
    		},
    		{
    			"ipnets-with-kube-virt-interfaces",
    			func(cfg *config.Config) {
    				cfg.KubeVirtInterfaces = "eth1,eth2"
    				cfg.OutboundIPRangesInclude = "10.0.0.0/8"
    			},
    		},
    		{
    			"inbound-ports-include",
    			func(cfg *config.Config) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. test/chan/doubleselect.go

    // Test the situation in which two cases of a select can
    // both end up running. See http://codereview.appspot.com/180068.
    
    package main
    
    import (
    	"flag"
    	"runtime"
    )
    
    var iterations *int = flag.Int("n", 100000, "number of iterations")
    
    // sender sends a counter to one of four different channels. If two
    // cases both end up running in the same iteration, the same value will be sent
    // to two different channels.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 01:34:14 UTC 2017
    - 2K bytes
    - Viewed (0)
  8. internal/logger/config.go

    			Value: "",
    		},
    		config.KV{
    			Key:   Proxy,
    			Value: "",
    		},
    		config.KV{
    			Key:   BatchSize,
    			Value: "1",
    		},
    		config.KV{
    			Key:   QueueSize,
    			Value: "100000",
    		},
    		config.KV{
    			Key:   QueueDir,
    			Value: "",
    		},
    	}
    
    	DefaultAuditWebhookKVS = config.KVS{
    		config.KV{
    			Key:   config.Enable,
    			Value: config.EnableOff,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. test/recover.go

    	defer big(false)
    	defer big(true)
    	panic(6)
    }
    
    func test6WithClosures() {
    	defer func() {
    		var x [100000]int
    		x[0] = 1
    		x[99999] = 1
    		_ = x
    		if recover() != nil {
    			println("spurious big closure recover")
    			die()
    		}
    	}()
    	defer func() {
    		var x [100000]int
    		x[0] = 1
    		x[99999] = 1
    		_ = x
    		if recover() == nil {
    			println("missing big closure recover")
    			die()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/amount_test.go

    	for _, test := range []struct {
    		a  int64Amount
    		b  int64
    		c  int64Amount
    		ok bool
    	}{
    		{int64Amount{value: 100, scale: 1}, 1000, int64Amount{value: 100000, scale: 1}, true},
    		{int64Amount{value: 100, scale: -1}, 1000, int64Amount{value: 100000, scale: -1}, true},
    		{int64Amount{value: 1, scale: 100}, 10, int64Amount{value: 1, scale: 100}, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 20:54:15 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top