Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 236 for 1000Mi (0.1 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. 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)
  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. 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)
  6. 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)
  7. 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)
  8. src/runtime/testdata/testprogcgo/threadpprof.go

    /*
    #include <stdint.h>
    #include <time.h>
    #include <pthread.h>
    
    int threadSalt1;
    int threadSalt2;
    
    static pthread_t tid;
    
    void cpuHogThread() {
    	int foo = threadSalt1;
    	int i;
    
    	for (i = 0; i < 100000; i++) {
    		if (foo > 0) {
    			foo *= foo;
    		} else {
    			foo *= foo + 1;
    		}
    	}
    	threadSalt2 = foo;
    }
    
    void cpuHogThread2() {
    }
    
    struct cgoTracebackArg {
    	uintptr_t  context;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 22:59:31 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. 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)
  10. pkg/proxy/nftables/helpers_test.go

    		{
    			name:     "no match",
    			sourceIP: "10.0.0.2",
    			destIP:   "10.0.0.3",
    			destPort: 80,
    			output:   "",
    		},
    		{
    			name:     "single endpoint",
    			sourceIP: "10.0.0.2",
    			destIP:   "172.30.0.41",
    			destPort: 80,
    			output:   "10.180.0.1:80",
    		},
    		{
    			name:     "multiple endpoints",
    			sourceIP: "10.0.0.2",
    			destIP:   "172.30.0.44",
    			destPort: 80,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top