Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 933 for 4000 (0.04 sec)

  1. tools/istio-iptables/pkg/capture/testdata/ipv6-uid-gid.golden

    iptables -t nat -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    iptables -t nat -A PREROUTING -p tcp -j ISTIO_INBOUND
    iptables -t nat -A ISTIO_INBOUND -p tcp --dport 4000 -j ISTIO_IN_REDIRECT
    iptables -t nat -A ISTIO_INBOUND -p tcp --dport 5000 -j ISTIO_IN_REDIRECT
    iptables -t nat -A OUTPUT -p tcp -j ISTIO_OUTPUT
    iptables -t nat -A ISTIO_OUTPUT -o lo -s 127.0.0.6/32 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    		seedKubelet           = 200
    		seedMisc              = 300
    		seedPod0Infra         = 1000
    		seedPod0Container0    = 2000
    		seedPod0Container1    = 2001
    		seedPod1Infra         = 3000
    		seedPod1Container     = 4000
    		seedPod2Infra         = 5000
    		seedPod2Container     = 6000
    		seedPod3Infra         = 7000
    		seedPod3Container0    = 8000
    		seedPod3Container1    = 8001
    		seedEphemeralVolume1  = 10000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

        public void test_abbreviateLongText() {
            assertEquals("", systemHelper.abbreviateLongText(""));
            assertEquals(4000, systemHelper.abbreviateLongText(Stream.generate(() -> "a").limit(4000).collect(Collectors.joining())).length());
            assertEquals(4000, systemHelper.abbreviateLongText(Stream.generate(() -> "a").limit(4001).collect(Collectors.joining())).length());
        }
    
        public void test_getLanguageItems() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. testing/soak/src/integTest/groovy/org/gradle/launcher/daemon/DaemonPerformanceMonitoringSoakTest.groovy

                }
                try {
                    State.x++
    
                    //simulate normal collectible objects
                    5000.times {
                        State.map.put(it, "foo" * ${leakRate})
                    }
    
                    //simulate the leak
                    1000.times {
                        State.map.put(UUID.randomUUID(), "foo" * ${leakRate})
                    }
    
                    println "Build: " + State.x
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/ExclusiveCacheAccessingWorker.java

            this.cacheAccess = cacheAccess;
            this.batchWindowMillis = 200;
            this.maximumLockingTimeMillis = 5000;
            HeapProportionalCacheSizer heapProportionalCacheSizer = new HeapProportionalCacheSizer();
            int queueCapacity = Math.min(4000, heapProportionalCacheSizer.scaleCacheSize(40000));
            workQueue = new ArrayBlockingQueue<Runnable>(queueCapacity, true);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go

    package unix
    
    const (
    	SYS_SYSCALL                      = 4000
    	SYS_EXIT                         = 4001
    	SYS_FORK                         = 4002
    	SYS_READ                         = 4003
    	SYS_WRITE                        = 4004
    	SYS_OPEN                         = 4005
    	SYS_CLOSE                        = 4006
    	SYS_WAITPID                      = 4007
    	SYS_CREAT                        = 4008
    	SYS_LINK                         = 4009
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go

    package unix
    
    const (
    	SYS_SYSCALL                      = 4000
    	SYS_EXIT                         = 4001
    	SYS_FORK                         = 4002
    	SYS_READ                         = 4003
    	SYS_WRITE                        = 4004
    	SYS_OPEN                         = 4005
    	SYS_CLOSE                        = 4006
    	SYS_WAITPID                      = 4007
    	SYS_CREAT                        = 4008
    	SYS_LINK                         = 4009
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/types_test.go

    				v1.ResourceMemory:           *resource.NewQuantity(2000, resource.BinarySI),
    				v1.ResourceEphemeralStorage: *resource.NewQuantity(5000, resource.BinarySI),
    			},
    			expected: &Resource{
    				MilliCPU:         4,
    				Memory:           2000,
    				EphemeralStorage: 5000,
    			},
    		},
    		{
    			resource: &Resource{
    				MilliCPU:         4,
    				Memory:           4000,
    				EphemeralStorage: 5000,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/cri_stats_provider_test.go

    	// This offset offsetCRI is to distinguish it from Cadvisor stats
    	offsetCRI = 1000
    )
    
    const (
    	seedRoot       = 0
    	seedKubelet    = 200
    	seedMisc       = 300
    	seedSandbox0   = 1000
    	seedContainer0 = 2000
    	seedSandbox1   = 3000
    	seedContainer1 = 4000
    	seedContainer2 = 5000
    	seedSandbox2   = 6000
    	seedContainer3 = 7000
    	seedSandbox3   = 8000
    )
    
    const (
    	pName0 = "pod0"
    	pName1 = "pod1"
    	pName2 = "pod2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. src/text/tabwriter/tabwriter_test.go

    	},
    
    	{
    		"15a",
    		4, 0, 0, '.', 0,
    		"a\t\tb",
    		"a.......b",
    	},
    
    	{
    		"15b",
    		4, 0, 0, '.', DiscardEmptyColumns,
    		"a\t\tb", // htabs - do not discard column
    		"a.......b",
    	},
    
    	{
    		"15c",
    		4, 0, 0, '.', DiscardEmptyColumns,
    		"a\v\vb",
    		"a...b",
    	},
    
    	{
    		"15d",
    		4, 0, 0, '.', AlignRight | DiscardEmptyColumns,
    		"a\v\vb",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top