Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 100xi1 (0.14 sec)

  1. pkg/controller/endpointslice/endpointslice_controller_test.go

    					Spec: v1.PodSpec{
    						Containers: []v1.Container{{
    							Name: "container-1",
    						}},
    						NodeName: "node-1",
    					},
    					Status: v1.PodStatus{
    						PodIP: "10.0.0.1",
    						PodIPs: []v1.PodIP{{
    							IP: "10.0.0.1",
    						}},
    						Conditions: []v1.PodCondition{
    							{
    								Type:   v1.PodReady,
    								Status: v1.ConditionTrue,
    							},
    						},
    					},
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	expected := model.ServiceTarget{
    		Service: &model.Service{
    			Hostname: "svc1.nsa.svc.company.com",
    			ClusterVIPs: model.AddressMap{
    				Addresses: map[cluster.ID][]string{clusterID: {"10.0.0.1"}},
    			},
    			DefaultAddress:  "10.0.0.1",
    			Ports:           []*model.Port{{Name: "tcp-port", Port: 8080, Protocol: protocol.TCP}},
    			ServiceAccounts: []string{"******@****.***", "spiffe://cluster.local/ns/nsa/sa/acct4"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. src/net/netip/netip_test.go

    			}
    		})
    	}
    }
    
    func TestAddrFromSlice(t *testing.T) {
    	tests := []struct {
    		ip       []byte
    		wantAddr Addr
    		wantOK   bool
    	}{
    		{
    			ip:       []byte{10, 0, 0, 1},
    			wantAddr: mustIP("10.0.0.1"),
    			wantOK:   true,
    		},
    		{
    			ip:       []byte{0xfe, 0x80, 15: 0x01},
    			wantAddr: mustIP("fe80::01"),
    			wantOK:   true,
    		},
    		{
    			ip:       []byte{0, 1, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/options_test.go

    	"--terminated-pod-gc-threshold=12000",
    	"--unhealthy-zone-threshold=0.6",
    	"--use-service-account-credentials=true",
    	"--cert-dir=/a/b/c",
    	"--bind-address=192.168.4.21",
    	"--secure-port=10001",
    	"--concurrent-ttl-after-finished-syncs=8",
    }
    
    func TestAddFlags(t *testing.T) {
    	fs := pflag.NewFlagSet("addflagstest", pflag.ContinueOnError)
    	s, _ := NewKubeControllerManagerOptions()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            when:
            succeeds 'named'
    
            then:
            outputDoesNotContain "'Task#usesService'"
            outputContains """
    service: created with value = 10000
    service: value is 10001
    service: closed with value 10001
            """
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "injection by name works at configuration time"() {
            given:
            serviceImplementation()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  6. hack/local-up-cluster.sh

        echo "${gate}" | ${SED} -e 's/\(.*\)=\(.*\)/  \1: \2/'
      done
    }
    
    function parse_eviction {
      # Convert from memory.available<100Mi,nodefs.available<10%,nodefs.inodesFree<5% to
      #   memory.available: "100Mi"
      #   nodefs.available: "10%"
      #   nodefs.inodesFree: "5%"
      for eviction in $(echo "$1" | tr ',' ' '); do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top