Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 236 for 1000Mi (0.14 sec)

  1. cmd/kube-proxy/app/server_test.go

    					ClusterCIDR:       "10.0.0.0/8",
    					NodePortAddresses: []string{"192.168.0.0/24"},
    				},
    				PrimaryIPFamily: v1.IPv4Protocol,
    			},
    			err: false,
    		},
    		{
    			name: "dual-stack NodePortAddresses with dual-stack config",
    			proxy: &ProxyServer{
    				Config: &kubeproxyconfig.KubeProxyConfiguration{
    					ClusterCIDR:       "10.0.0.0/8,fd09::/64",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/3rd-party-lib/boost_1_55_0/boost/version.hpp

    //  will cause a recompile every time a new boost version is
    //  released.
    //
    //  BOOST_VERSION % 100 is the patch level
    //  BOOST_VERSION / 100 % 1000 is the minor version
    //  BOOST_VERSION / 100000 is the major version
    
    #define BOOST_VERSION 105500
    
    //
    //  BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
    //  but as a *string* in the form "x_y[_z]" where x is the major version
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/runtime/chanbarrier_test.go

    	t.Parallel()
    	testChanSendBarrier(false)
    }
    
    func testChanSendBarrier(useSelect bool) {
    	var wg sync.WaitGroup
    	outer := 100
    	inner := 100000
    	if testing.Short() || runtime.GOARCH == "wasm" {
    		outer = 10
    		inner = 1000
    	}
    	for i := 0; i < outer; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			var garbage []byte
    			for j := 0; j < inner; j++ {
    				_, err := doRequest(useSelect)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/locking/ExclusiveFileAccessManagerTest.groovy

    class ExclusiveFileAccessManagerTest extends Specification {
        @Rule
        public TestNameTestDirectoryProvider temporaryDirectory = new TestNameTestDirectoryProvider(getClass())
        private manager = new ExclusiveFileAccessManager(1000, 10)
    
        def 'If the directory for the lock file cannot be created then we get a good error message'() {
            given:
            def fileWithSameNameAsDirectory = temporaryDirectory.createFile('someDir')
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/ipnets.golden

    iptables -t nat -A ISTIO_OUTPUT -o lo -m owner ! --gid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -d 127.0.0.1/32 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -d 10.0.0.0/8 -j ISTIO_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/policy_static_test.go

    					"fakeContainer100": cpuset.New(1, 2, 3),
    				},
    			},
    			stDefaultCPUSet: cpuset.New(0, 4, 5, 6, 7, 8, 9, 10, 11),
    			pod:             makePod("fakePod", "fakeContainer5", "10000m", "10000m"),
    			expErr:          fmt.Errorf("not enough cpus available to satisfy request: requested=10, available=8"),
    			expCPUAlloc:     false,
    			expCSet:         cpuset.New(),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    			// CPU Score: ((4000 - 0) * MaxNodeScore) / 4000 = MaxNodeScore
    			// Memory Score: ((10000 - 0) * MaxNodeScore) / 10000 = MaxNodeScore
    			// Node1 Score: (100 + 100) / 2 = 100
    			// Node2 scores (remaining resources) on 0-MaxNodeScore scale
    			// CPU Score: ((4000 - 0) * MaxNodeScore) / 4000 = MaxNodeScore
    			// Memory Score: ((10000 - 0) * MaxNodeScore) / 10000 = MaxNodeScore
    			// Node2 Score: (MaxNodeScore + MaxNodeScore) / 2 = MaxNodeScore
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  8. src/runtime/testdata/testprogcgo/pprof.go

    package main
    
    // Run a slow C function saving a CPU profile.
    
    /*
    #include <stdint.h>
    
    int salt1;
    int salt2;
    
    void cpuHog() {
    	int foo = salt1;
    	int i;
    
    	for (i = 0; i < 100000; i++) {
    		if (foo > 0) {
    			foo *= foo;
    		} else {
    			foo *= foo + 1;
    		}
    	}
    	salt2 = foo;
    }
    
    void cpuHog2() {
    }
    
    struct cgoTracebackArg {
    	uintptr_t  context;
    	uintptr_t  sigContext;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 12 19:45:58 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top