Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for netsh (0.1 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. .github/workflows/go-lint.yml

            if: matrix.os == 'Windows'
            env:
              CGO_ENABLED: 0
              GO111MODULE: on
            run: |
              Set-MpPreference -DisableRealtimeMonitoring $true
              netsh int ipv4 set dynamicport tcp start=60000 num=61000
              go build --ldflags="-s -w" -o %GOPATH%\bin\minio.exe
              go test -v --timeout 120m ./...
          - name: Build on ${{ matrix.os }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 22:29:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. 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)
  4. cluster/gce/windows/k8s-node-setup.psm1

            -Verbose
        # TODO(pjh): find out: why is this always CompartmentId 1?
        Attach-HnsHostEndpoint `
            -EndpointID ${hns_endpoint}.Id `
            -CompartmentID 1 `
            -Verbose
        netsh interface ipv4 set interface "${vnic_name}" forwarding=enabled
      }
    
      Try {
        Get-HNSPolicyList | Remove-HnsPolicyList
      } Catch { }
    
      # Add a route from the management NIC to the pod CIDR.
      #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. cluster/addons/calico-policy-controller/networkset-crd.yaml

              metadata:
                type: object
              spec:
                description: NetworkSetSpec contains the specification for a NetworkSet
                  resource.
                properties:
                  nets:
                    description: The list of IP networks that belong to this set.
                    items:
                      type: string
                    type: array
                type: object
            type: object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  8. cluster/addons/calico-policy-controller/globalnetworksets-crd.yaml

              metadata:
                type: object
              spec:
                description: GlobalNetworkSetSpec contains the specification for a NetworkSet
                  resource.
                properties:
                  nets:
                    description: The list of IP networks that belong to this set.
                    items:
                      type: string
                    type: array
                type: object
            type: object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 2K bytes
    - Viewed (0)
  9. prow/config/calico.yaml

                                the Selector applies to workload 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[resolution-strategy-safety-nets]]
    = Preventing accidental dependency upgrades
    
    In some situations, you might want to be in total control of the dependency graph.
    In particular, you may want to make sure that:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top