Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for netsh (0.08 sec)

  1. src/net/net_windows_test.go

    	if testenv.Builder() == "windows-arm64-10" {
    		// netsh was observed to sometimes hang on this builder.
    		// We have not observed failures on windows-arm64-11, so for the
    		// moment we are leaving the test enabled elsewhere on the theory
    		// that it may have been a platform bug fixed in Windows 11.
    		testenv.SkipFlaky(t, 52082)
    	}
    	out, err := runCmd("netsh", "help")
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. ci/devinfra/docker_windows/Dockerfile

    # Remaining lines handle making the metadata server on the VM accessible inside docker.
    RUN Get-NetAdapter | Where-Object Name -like "*Ethernet*" | ForEach-Object { \
            & netsh interface ipv4 set subinterface $_.InterfaceIndex mtu=1460 store=persistent }; \
        $gateway = (Get-NetRoute | Where { $_.DestinationPrefix -eq \"0.0.0.0/0\" } | Sort-Object RouteMetric \
            | Select NextHop).NextHop; \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                                endpoints across all namespaces."
                              type: string
                            nets:
                              description: Nets is an optional field that restricts the
                                rule to only apply to traffic that originates from (or
                                terminates at) IP addresses in any of the given subnets.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  4. cluster/addons/calico-policy-controller/globalnetworkpolicy-crd.yaml

                                endpoints across all namespaces."
                              type: string
                            nets:
                              description: Nets is an optional field that restricts the
                                rule to only apply to traffic that originates from (or
                                terminates at) IP addresses in any of the given subnets.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 45.2K bytes
    - Viewed (0)
Back to top