Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 223 for 1000Mi (0.27 sec)

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

    ! stderr '(compile|gccgo)( |\.exe).*empty.go'
    
    # Fuzzing indicates that one new interesting value was found with an empty
    # corpus, and the total size of the cache is now 1.
    go clean -fuzzcache
    go test -fuzz=FuzzEmpty -fuzztime=10000x .
    stdout 'new interesting: 1'
    stdout 'total: 1'
    
    # Fuzzing again with a small fuzztime does not find any other interesting
    # values but still indicates that the cache size is 1.
    go test -fuzz=FuzzEmpty -fuzztime=2x .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/pgo/inline/inline_hot.go

    	x = x + 1
    	for x < len(b.s) {
    		if b.s[x] != 0 {
    			return uint(x)*wSize + T(b.s[x]), true
    		}
    		x = x + 1
    
    	}
    	return 0, false
    }
    
    func A() {
    	s := N(100000)
    	for i := 0; i < 1000; i += 30 {
    		s.S(uint(i))
    	}
    	for j := 0; j < 1000; j++ {
    		c := uint(0)
    		for i, e := s.NS(0); e; i, e = s.NS(i + 1) {
    			c++
    		}
    	}
    }
    
    func main() {
    	time.Sleep(time.Second)
    	A()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 21:20:22 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. 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)
  7. 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)
  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. platforms/documentation/docs/src/docs/userguide/img/publishing-process.graffle

    1-30 10:54:30 +0000CreatorPeter LedbrookGraphDocumen-05-21 06:55:19 +0000ModifierPeter LedbrookMovementHand{595, 842}NSPrintReverseOrient{{0, 0}, {559, 783}}ClassGraffleShapes.CanvasBackgroundGrap{0, 0}CanvasOrigin{0, 0}CanvasSizingMode1Col in = 1.00000 inGraphicsListAllowL.5956531230075185ID15{375.79999533295631, 160.81999668478966}{272.734375, 65.519998535513878}StylefillDrawsNOshad.0g0.0r0.0space9eaea0911d89d6{{208.79999533295631, 148.31999668478966}, {334, 25}}ClassShapedGraphicFi-RegularSiz...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 21.1K 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