Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 102 for 100xi1 (0.35 sec)

  1. pkg/registry/core/service/ipallocator/cidrallocator_test.go

    		allocator, err := r.getAllocator(netutils.ParseIPSloppy("10.0.0.11"))
    		if err != nil {
    			return false, nil
    		}
    		allocator.ipAddressSynced = func() bool { return true }
    		return allocator.ready.Load(), nil
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    	// allocate one IP from the new allocator
    	err = r.Allocate(netutils.ParseIPSloppy("10.0.0.11"))
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/addresses_test.go

    		},
    	}
    	internalAddressCIDRMap := []metav1.ServerAddressByClientCIDR{
    		publicAddressCIDRMap[0],
    		{
    			ClientCIDR:    "10.0.0.0/24",
    			ServerAddress: "serviceIP",
    		},
    	}
    	internalIP := "10.0.0.1"
    	publicIP := "1.1.1.1"
    	testCases := []struct {
    		Request     http.Request
    		ExpectedMap []metav1.ServerAddressByClientCIDR
    	}{
    		{
    			Request:     http.Request{},
    			ExpectedMap: publicAddressCIDRMap,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. src/io/fs/glob_test.go

    func TestCVE202230630(t *testing.T) {
    	// Prior to CVE-2022-30630, a stack exhaustion would occur given a large
    	// number of separators. There is now a limit of 10,000.
    	_, err := Glob(os.DirFS("."), "/*"+strings.Repeat("/", 10001))
    	if err != path.ErrBadPattern {
    		t.Fatalf("Glob returned err=%v, want %v", err, path.ErrBadPattern)
    	}
    }
    
    type globOnly struct{ GlobFS }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:36:52 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/ep_filters_test.go

    	{
    		name:  "from_network1_cluster1a",
    		proxy: makeProxy("network1", "cluster1a"),
    		want: []xdstest.LocLbEpInfo{
    			{
    				LbEps: []xdstest.LbEpInfo{
    					// 3 local endpoints on network1
    					{Address: "10.0.0.1", Weight: 6},
    					{Address: "10.0.0.2", Weight: 6},
    					{Address: "10.0.0.3", Weight: 6},
    					// 1 endpoint on network2, cluster2a
    					{Address: "2.2.2.2", Weight: 6},
    					// 2 endpoints on network2, cluster2b
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    			ServicePort: servicePort,
    			Endpoint: &model.IstioEndpoint{
    				Address:      "1.1.1.1",
    				EndpointPort: 10001,
    			},
    		},
    		{
    			Service:     service,
    			ServicePort: servicePort,
    			Endpoint: &model.IstioEndpoint{
    				Address:      "2001:1::1",
    				EndpointPort: 10001,
    			},
    		},
    	}
    	inboundFilter := func(c *cluster.Cluster) bool {
    		return strings.HasPrefix(c.Name, "inbound|")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. pkg/scheduler/util/pod_resources.go

    // As described in #11713, we use request instead of limit to deal with resource requirements.
    const (
    	// DefaultMilliCPURequest defines default milli cpu request number.
    	DefaultMilliCPURequest int64 = 100 // 0.1 core
    	// DefaultMemoryRequest defines default memory request size.
    	DefaultMemoryRequest int64 = 200 * 1024 * 1024 // 200 MB
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 01 06:25:30 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/encoder_with_allocator_test.go

    	name string
    	obj  runtime.Object
    }
    
    func benchTestCases() []benchTestCase {
    	return []benchTestCase{
    		{
    			name: "an obj with 1kB payload",
    			obj: func() runtime.Object {
    				carpPayload := make([]byte, 1000) // 1 kB
    				if _, err := rand.Read(carpPayload); err != nil {
    					panic(err)
    				}
    				return carpWithPayload(carpPayload)
    			}(),
    		},
    		{
    			name: "an obj with 10kB payload",
    			obj: func() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. src/runtime/sigtab_linux_mipsx.go

    	/*  96 */ {_SigNotify, "signal 96"},
    	/*  97 */ {_SigNotify, "signal 97"},
    	/*  98 */ {_SigNotify, "signal 98"},
    	/*  99 */ {_SigNotify, "signal 99"},
    	/* 100 */ {_SigNotify, "signal 100"},
    	/* 101 */ {_SigNotify, "signal 101"},
    	/* 102 */ {_SigNotify, "signal 102"},
    	/* 103 */ {_SigNotify, "signal 103"},
    	/* 104 */ {_SigNotify, "signal 104"},
    	/* 105 */ {_SigNotify, "signal 105"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    			name: "kubeadmConfig is nil",
    			args: args{
    				kubeConfigDir: tmpDir,
    				kubeadmConfig: nil,
    				name:          "foo",
    				spec: &kubeConfigSpec{
    					CACert:         caCert,
    					APIServer:      "10.0.0.1",
    					ClientName:     "foo",
    					TokenAuth:      &tokenAuth{Token: "test"},
    					ClientCertAuth: &clientCertAuth{CAKey: caKey},
    				},
    			},
    			expectedError: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

        }
    
        @Test
        void testConsecutiveDelimiters() {
            assertOrder(X_EQ_Y, "1.0.1", "1..1");
            assertOrder(X_EQ_Y, "1.0.0.1", "1...1");
            assertOrder(X_EQ_Y, "1.0.1", "1--1");
            assertOrder(X_EQ_Y, "1.0.0.1", "1---1");
        }
    
        @Test
        void testUnlimitedNumberOfVersionComponents() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top