Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 117 for 100xi1 (0.13 sec)

  1. pkg/util/net/ip_test.go

    	type args struct {
    		ip string
    	}
    	tests := []struct {
    		name string
    		args args
    		want bool
    	}{
    		{
    			name: "test is a ipv4 address",
    			args: args{
    				ip: "10.0.0.1",
    			},
    			want: true,
    		},
    		{
    			name: "test not a ipv4 address",
    			args: args{
    				ip: "188.188.188.1888",
    			},
    			want: false,
    		},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/http/extended-single-policy-out.yaml

                        addressPrefix: 172.16.10.10
                        prefixLen: 32
                - orIds:
                    ids:
                    - directRemoteIp:
                        addressPrefix: 10.0.0.1
                        prefixLen: 32
                    - directRemoteIp:
                        addressPrefix: 10.0.0.2
                        prefixLen: 32
                - orIds:
                    ids:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. internal/config/dns/etcd_dns.go

    		}
    		srvRecord.Key = strings.TrimPrefix(string(n.Key), key)
    		srvRecord.Key = strings.TrimSuffix(srvRecord.Key, srvRecord.Host)
    
    		// Skip non-bucket entry like for a key
    		// /skydns/net/miniocloud/10.0.0.1 that may exist as
    		// dns entry for the server (rather than the bucket
    		// itself).
    		if srvRecord.Key == "" {
    			continue
    		}
    
    		srvRecord.Key = msgUnPath(srvRecord.Key)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

      selfLink: /api/v1/nodes/node-default-pool-something
      uid: 0c24d0e1-a265-11e9-abe4-42010a80026b
    spec:
      podCIDR: 10.0.0.1/24
      providerID: some-provider-id-of-some-sort
    status:
      addresses:
      - address: 10.0.0.1
        type: InternalIP
      - address: 192.168.0.1
        type: ExternalIP
      - address: node-default-pool-something
        type: Hostname
      allocatable:
        cpu: 3920m
        ephemeral-storage: "104638878617"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/model/model_test.go

    - operation:
        ports: ["8003"]
        notPorts: ["8004"]
    when:
    - key: "source.principal"
      values: ["td-1/ns/foo/sa/httpbin-1"]
      notValues: ["td-1/ns/foo/sa/httpbin-2"]
    - key: "destination.ip"
      values: ["10.0.0.1"]
      notValues: ["10.0.0.2"]
    `)
    
    	cases := []struct {
    		name    string
    		forTCP  bool
    		action  rbacpb.RBAC_Action
    		rule    *authzpb.Rule
    		want    []string
    		notWant []string
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

      selfLink: /api/v1/nodes/node-default-pool-something
      uid: 0c24d0e1-a265-11e9-abe4-42010a80026b
    spec:
      podCIDR: 10.0.0.1/24
      providerID: some-provider-id-of-some-sort
    status:
      addresses:
      - address: 10.0.0.1
        type: InternalIP
      - address: 192.168.0.1
        type: ExternalIP
      - address: node-default-pool-something
        type: Hostname
      allocatable:
        cpu: 3920m
        ephemeral-storage: "104638878617"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

            checkVersionsOrder("1.0-alpha-1-SNAPSHOT", "1.0-alpha-1");
    
            checkVersionsOrder("1.0", "1.0-1");
            checkVersionsOrder("1.0-1", "1.0-2");
            checkVersionsOrder("1.0.0", "1.0-1");
    
            checkVersionsOrder("2.0-1", "2.0.1");
            checkVersionsOrder("2.0.1-klm", "2.0.1-lmn");
            checkVersionsOrder("2.0.1", "2.0.1-xyz");
    
            checkVersionsOrder("2.0.1", "2.0.1-123");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:39:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. cmd/sftp-server-driver.go

    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/pkg/v3/mimedb"
    	"github.com/pkg/sftp"
    	"golang.org/x/crypto/ssh"
    )
    
    // Maximum write offset for incoming SFTP blocks.
    // Set to 100MiB to prevent hostile DOS attacks.
    const ftpMaxWriteOffset = 100 << 20
    
    type sftpDriver struct {
    	permissions *ssh.Permissions
    	endpoint    string
    }
    
    //msgp:ignore sftpMetrics
    type sftpMetrics struct{}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/network_test.go

    	fx.WaitOrFail(t, "xds")
    
    	sc.CreateOrUpdate(generateService("svc1", testNS, map[string]string{}, // labels
    		map[string]string{}, // annotations
    		[]int32{80},
    		map[string]string{"app": "a"}, // selector
    		"10.0.0.1",
    	))
    	fx.WaitOrFail(t, "xds")
    
    	createOrUpdateNamespace(t, s, testNS, "")
    	createOrUpdateNamespace(t, s, systemNS, "")
    
    	tracker.WaitOrdered(testNS, systemNS)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. pilot/pkg/xds/mesh_network_test.go

    						name:        "client-pod",
    						namespace:   "test",
    						ip:          "10.0.0.1",
    						port:        80,
    						clusterID:   "cluster-1",
    						metaNetwork: "network-1",
    					}
    					// expect self
    					client.ExpectWithWeight(client, "", xdstest.LocLbEpInfo{
    						Weight: 1,
    						LbEps: []xdstest.LbEpInfo{
    							{Address: "10.0.0.1", Weight: 1},
    						},
    					})
    					for subset, eps := range tc.expectations {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
Back to top