Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 117 for 100xi1 (0.11 sec)

  1. 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)
  2. pilot/pkg/networking/grpcgen/grpcgen_test.go

    func resolverForTest(t test.Failer, xdsPort int, ns string) resolver.Builder {
    	xdsresolver, err := xdsgrpc.NewXDSResolverWithConfigForTesting(
    		GRPCBootstrap("foo", ns, "10.0.0.1", xdsPort))
    	if err != nil {
    		t.Fatal(err)
    	}
    	return xdsresolver
    }
    
    func init() {
    	// Setup gRPC logging. Do it once in init to avoid races
    	o := log.DefaultOptions()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages_test.go

    	return reflect.ValueOf(m)
    }
    
    func (*clientKeyExchangeMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &clientKeyExchangeMsg{}
    	m.ciphertext = randomBytes(rand.Intn(1000)+1, rand)
    	return reflect.ValueOf(m)
    }
    
    func (*finishedMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &finishedMsg{}
    	m.verifyData = randomBytes(12, rand)
    	return reflect.ValueOf(m)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. pkg/registry/core/service/portallocator/allocator_test.go

    	}
    
    	if err := r.Release(released); err != nil {
    		t.Fatal(err)
    	}
    
    	err = r.Allocate(1)
    	if _, ok := err.(*ErrNotInRange); !ok {
    		t.Fatal(err)
    	}
    
    	if err := r.Allocate(10001); err != ErrAllocated {
    		t.Fatal(err)
    	}
    
    	err = r.Allocate(20000)
    	if _, ok := err.(*ErrNotInRange); !ok {
    		t.Fatal(err)
    	}
    
    	err = r.Allocate(10201)
    	if _, ok := err.(*ErrNotInRange); !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/copy_test.go

    //go:noinline
    func t2copy_ssa(y, x *[2]byte) {
    	*y = *x
    }
    func testCopy2(t *testing.T) {
    	a := T2{[8]byte{201, 202, 203, 204, 205, 206, 207, 208}, [2]byte{0, 1}, [8]byte{211, 212, 213, 214, 215, 216, 217, 218}}
    	x := [2]byte{100, 101}
    	t2copy_ssa(&a.mid, &x)
    	want := T2{[8]byte{201, 202, 203, 204, 205, 206, 207, 208}, [2]byte{100, 101}, [8]byte{211, 212, 213, 214, 215, 216, 217, 218}}
    	if a != want {
    		t.Errorf("t2copy got=%v, want %v\n", a, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 150.2K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/validation/validation_test.go

    		flowSchema: &flowcontrol.FlowSchema{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "system-foo",
    			},
    			Spec: flowcontrol.FlowSchemaSpec{
    				MatchingPrecedence: 10001,
    				PriorityLevelConfiguration: flowcontrol.PriorityLevelConfigurationReference{
    					Name: "system-bar",
    				},
    				Rules: []flowcontrol.PolicyRulesWithSubjects{{
    					Subjects: []flowcontrol.Subject{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  7. src/encoding/json/decode_test.go

    	tests := []struct {
    		CaseName
    		data        string
    		errMaxDepth bool
    	}{{
    		CaseName:    Name("ArrayUnderMaxNestingDepth"),
    		data:        `{"a":` + strings.Repeat(`[`, 10000-1) + strings.Repeat(`]`, 10000-1) + `}`,
    		errMaxDepth: false,
    	}, {
    		CaseName:    Name("ArrayOverMaxNestingDepth"),
    		data:        `{"a":` + strings.Repeat(`[`, 10000) + strings.Repeat(`]`, 10000) + `}`,
    		errMaxDepth: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. 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)
  9. pkg/proxy/ipvs/README.md

    ```
     # kubectl get svc --all-namespaces
    NAMESPACE     NAME         TYPE        CLUSTER-IP   EXTERNAL-IP   PORT(S)         AGE
    default       kubernetes   ClusterIP   10.0.0.1     <none>        443/TCP         1d
    kube-system   kube-dns     ClusterIP   10.0.0.10    <none>        53/UDP,53/TCP   1d
    ```
    We may get IPVS proxy rules like:
    
    ```shell
     # ipvsadm -ln
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/net/http_test.go

    	"io"
    	"net"
    	"net/http"
    	"net/url"
    	"reflect"
    	"strings"
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    	netutils "k8s.io/utils/net"
    )
    
    func TestGetClientIP(t *testing.T) {
    	ipString := "10.0.0.1"
    	ip := netutils.ParseIPSloppy(ipString)
    	invalidIPString := "invalidIPString"
    	testCases := []struct {
    		Request    http.Request
    		ExpectedIP net.IP
    	}{
    		{
    			Request: http.Request{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:21:56 UTC 2023
    - 24.5K bytes
    - Viewed (0)
Back to top