Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 866 for localHosts (0.19 sec)

  1. pilot/pkg/networking/core/listener_address.go

    	InboundPassthroughBindIpv6 = "::6"
    )
    
    var (
    	// maintain 3 maps to return wildCards, localHosts and passthroughBindIPs according to IP mode of proxy
    	wildCards = map[model.IPMode][]string{
    		model.IPv4: {WildcardAddress},
    		model.IPv6: {WildcardIPv6Address},
    		model.Dual: {WildcardAddress, WildcardIPv6Address},
    	}
    
    	localHosts = map[model.IPMode][]string{
    		model.IPv4: {LocalhostAddress},
    		model.IPv6: {LocalhostIPv6Address},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/testdata/localhost.yaml

    # This shows an example local config for ztunnel that adds a workload for localhost.
    # This allows local testing by sending requests through the local ztunnel to other servers running on localhost.
    workloads:
    - uid: cluster1//v1/Pod/default/local
      name: local
      namespace: default
      serviceAccount: default
      workloadIps: ["127.0.0.1"]
      protocol: HBONE
      node: local
      network: ""
      services:
        "default/example.com":
          80: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. hack/testdata/pod-restricted-localhost.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        run: target
      name: target
    spec:
      securityContext:
        seccompProfile: 
          type: Localhost
          localhostProfile: dummy.json
      containers:
      - image: busybox
        name: target
        command: ["/bin/sh", "-c", "sleep 100"]
        securityContext:
            runAsUser: 1000
            runAsGroup: 1000
            runAsNonRoot: true
            allowPrivilegeEscalation: false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 11:16:49 UTC 2023
    - 467 bytes
    - Viewed (0)
  4. releasenotes/notes/dns-localhost-loop.yaml

    kind: feature
    area: networking
    issue:
    - 30309
    releaseNotes:
    - |
      **Fixed** an issue causing [DNS proxying](/docs/ops/configuration/traffic-management/dns-proxy/) to not work
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 05 20:28:01 UTC 2021
    - 246 bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/hello-probes-localhost.yaml

    Rama Chavali <******@****.***> 1714150277 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 956 bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/hello-probes-localhost.yaml.injected

    Rama Chavali <******@****.***> 1714150277 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. docs/ftp/README.md

    ...
    ```
    
    
    Following example shows connecting via sftp client using `minioadmin` credentials, and list a bucket named `runner`:
    
    ```
    sftp -P 8022 minioadmin@localhost
    minioadmin@localhost's password:
    Connected to localhost.
    sftp> ls runner/
    chunkdocs  testdir
    ```
    
    Following example shows how to download an object locally via `sftp` client:
    
    ```
    sftp> get runner/chunkdocs/metadata metadata
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. docs/distributed/distributed-from-config-file.sh

    1,0,0 http://localhost:9003/tmp/xl/node9003/mnt/disk1
    1,0,1 http://localhost:9004/tmp/xl/node9004/mnt/disk1
    1,0,2 http://localhost:9003/tmp/xl/node9003/mnt/disk2
    1,0,3 http://localhost:9004/tmp/xl/node9004/mnt/disk2
    1,0,4 http://localhost:9003/tmp/xl/node9003/mnt/disk3
    1,0,5 http://localhost:9004/tmp/xl/node9004/mnt/disk3
    1,0,6 http://localhost:9003/tmp/xl/node9003/mnt/disk4
    1,0,7 http://localhost:9004/tmp/xl/node9004/mnt/disk4
    EOF
    )
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. cmd/endpoint_test.go

    		{[]string{"http://localhost:9000/d1", "http://localhost:9001/d2", "http://localhost:9002/d3", "http://localhost:9003/d4"}, []string{"localhost:9000", "localhost:9001", "localhost:9002", "localhost:9003"}, "localhost:9000"},
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jan 13 07:53:03 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/SocketInetAddressTest.groovy

    class SocketInetAddressTest extends Specification {
        def localhost = java.net.InetAddress.getByName("localhost")
    
        def "has useful display name"() {
            def address = new SocketInetAddress(localhost, 234)
    
            expect:
            address.displayName == "localhost/${localhost.hostAddress}:234"
            address.toString() == "localhost/${localhost.hostAddress}:234"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top