Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 941 for ipaddresses (0.32 sec)

  1. pilot/pkg/config/kube/gateway/testdata/http.status.yaml.golden

      - HTTPRouteFeatureB
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      creationTimestamp: null
      name: gateway
      namespace: istio-system
    spec: null
    status:
      addresses:
      - type: IPAddress
        value: 1.2.3.4
      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier_test.go

    	fakehcn "k8s.io/kubernetes/pkg/proxy/winkernel/testing"
    	netutils "k8s.io/utils/net"
    	"k8s.io/utils/ptr"
    )
    
    const (
    	testHostName      = "test-hostname"
    	testNetwork       = "TestNetwork"
    	ipAddress         = "10.0.0.1"
    	prefixLen         = 24
    	macAddress        = "00-11-22-33-44-55"
    	destinationPrefix = "192.168.2.0/24"
    	providerAddress   = "10.0.0.3"
    	guid              = "123ABC"
    	endpointGuid1     = "EPID-1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. pkg/apis/networking/types.go

    // IPAddressList contains a list of IPAddress.
    type IPAddressList struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ListMeta
    
    	// Items is the list of IPAddress
    	Items []IPAddress
    }
    
    // +genclient
    // +genclient:nonNamespaced
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ServiceCIDR defines a range of IP addresses using CIDR format (e.g. 192.168.0.0/24 or 2001:db2::/64).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/addressmap.go

    		}
    		m.Addresses[c] = addresses
    	}
    	return m
    }
    
    func (m *AddressMap) AddAddressesFor(c cluster.ID, addresses []string) *AddressMap {
    	if len(addresses) == 0 {
    		return m
    	}
    
    	m.mutex.Lock()
    	defer m.mutex.Unlock()
    
    	// Create the map if nil.
    	if m.Addresses == nil {
    		m.Addresses = make(map[cluster.ID][]string)
    	}
    
    	m.Addresses[c] = append(m.Addresses[c], addresses...)
    	return m
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 06 14:34:57 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExceptionTest.java

                            + LS
                            + LS + "<configuration>"
                            + LS + "  ..."
                            + LS + "  <toAddresses>"
                            + LS + "    <item>VALUE</item>"
                            + LS + "  </toAddresses>"
                            + LS + "</configuration>."
                            + LS,
                    exception.buildDiagnosticMessage());
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. common/scripts/kind_provisioner.sh

      C1_NODE="${C1}-control-plane"
      C2_NODE="${C2}-control-plane"
      C1_DOCKER_IP=$(docker inspect -f "{{ .NetworkSettings.Networks.kind.IPAddress }}" "${C1_NODE}")
      C2_DOCKER_IP=$(docker inspect -f "{{ .NetworkSettings.Networks.kind.IPAddress }}" "${C2_NODE}")
      if [ "${POD_TO_POD_AND_SERVICE_CONNECTIVITY}" -eq 1 ]; then
        # Set up routing rules for inter-cluster direct pod to pod & service communication
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/mesh.status.yaml.golden

      - HTTPRouteFeatureB
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      creationTimestamp: null
      name: gateway
      namespace: istio-system
    spec: null
    status:
      addresses:
      - type: IPAddress
        value: 1.2.3.4
      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. pkg/registry/networking/ipaddress/strategy_test.go

    	if Strategy.NamespaceScoped() {
    		t.Errorf("ipAddress must not be namespace scoped")
    	}
    	if Strategy.AllowCreateOnUpdate() {
    		t.Errorf("ipAddress should not allow create on update")
    	}
    
    	ipAddress := newIPAddress()
    	Strategy.PrepareForCreate(ctx, &ipAddress)
    
    	errs := Strategy.Validate(ctx, &ipAddress)
    	if len(errs) != 0 {
    		t.Errorf("Unexpected error from validation for ipAddress: %v", errs)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 02:12:34 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. pkg/api/v1/endpoints/util_test.go

    			given:  []v1.EndpointSubset{{Addresses: []v1.EndpointAddress{}, Ports: []v1.EndpointPort{}}},
    			expect: []v1.EndpointSubset{},
    		}, {
    			name:   "empty addresses",
    			given:  []v1.EndpointSubset{{Addresses: []v1.EndpointAddress{}, Ports: []v1.EndpointPort{{Port: 111}}}},
    			expect: []v1.EndpointSubset{},
    		}, {
    			name:   "empty ports",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  10. tests/joins_table_test.go

    		t.Fatalf("Should found soft deleted addresses with unscoped")
    	}
    
    	if DB.Unscoped().Model(&person).Association("Addresses").Count() != 2 {
    		t.Fatalf("Should found soft deleted addresses with unscoped")
    	}
    
    	DB.Model(&person).Association("Addresses").Clear()
    
    	if DB.Model(&person).Association("Addresses").Count() != 0 {
    		t.Fatalf("Should deleted all addresses")
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Sep 10 13:46:18 UTC 2020
    - 3.5K bytes
    - Viewed (0)
Back to top