Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 96 for addPass (0.55 sec)

  1. CHANGELOG/CHANGELOG-1.29.md

    - The `--bind-address` parameter in kube-proxy is misleading, no port is opened with this address. Instead it is translated internally to "nodeIP". The nodeIPs for both families are now taken from the Node object if `--bind-address` is unspecified or set to the "any" address (0.0.0.0 or ::). It is recommended to leave `--bind-address` unspecified, and in particular avoid to set it to localhost (127.0.0.1 or ::1) ([#119525...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  2. cmd/object-api-utils.go

    			// ends with a hyphen.
    			return false
    		}
    		// Now only need to check if each piece is a valid
    		// 'label' in AWS terminology and if the bucket looks
    		// like an IP address.
    		isNotNumber := false
    		for i := 0; i < len(piece); i++ {
    			switch {
    			case (piece[i] >= 'a' && piece[i] <= 'z' ||
    				piece[i] == '-'):
    				// Found a non-digit character, so
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. src/net/http/server.go

    // The zero value for Server is a valid configuration.
    type Server struct {
    	// Addr optionally specifies the TCP address for the server to listen on,
    	// in the form "host:port". If empty, ":http" (port 80) is used.
    	// The service names are defined in RFC 6335 and assigned by IANA.
    	// See net.Dial for details of the address format.
    	Addr string
    
    	Handler Handler // handler to invoke, http.DefaultServeMux if nil
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    // in state.f, using the information about block state in blockLocs.
    // The returned location lists are not fully complete. They are in
    // terms of SSA values rather than PCs, and have no base address/end
    // entries. They will be finished by PutLocationList.
    func (state *debugState) buildLocationLists(blockLocs []*BlockDebug) {
    	// Run through the function in program text order, building up location
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Updated description of default values for --healthz-bind-address and --metrics-bind-address parameters ([#123545](https://github.com/kubernetes/kubernetes/pull/123545), [@yangjunmyfm192085](https://github.com/yangjunmyfm192085)) [SIG Network]
    
    ### Other (Cleanup or Flake)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/server_test.go

    				"istiod-remote.istio-system.svc",
    				"istiod.istio-system.svc",
    				"istiod.istio-system.svc.cluster.local",
    			},
    		},
    		{
    			name:             "customHost has duplicate hosts with discovery address",
    			customHost:       "a.com,b.com,c.com,test.com",
    			discoveryAddress: "test.com",
    			revision:         "canary",
    			sans: []string{
    				"a.com", "b.com", "c.com",
    				"istio-pilot.istio-system.svc",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    			// We could handle this situation however it is likely
    			// to be very rare.
    			return false
    		}
    		if v.Op.SymEffect()&SymAddr != 0 {
    			// This case prevents an operation that calculates the
    			// address of a local variable from being forced to schedule
    			// before its corresponding VarDef.
    			// See issue 28445.
    			//   v1 = LOAD ...
    			//   v2 = VARDEF
    			//   v3 = LEAQ
    			//   v4 = CMPQ v1 v3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. pilot/pkg/xds/delta.go

    	return url == v3.ExtensionConfigurationType
    }
    
    // shouldSetWatchedResources indicates whether we should set the watched resources for a given type.
    // for some type like `Address` we customly handle it in the generator
    func shouldSetWatchedResources(w *model.WatchedResource) bool {
    	if requiresResourceNamesModification(w.TypeUrl) {
    		// These handle it directly in the generator
    		return false
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    			expectedError:      true,
    		},
    		{ // if KubeConfig is not equal to the existingKubeConfig - tolerate custom server addresses
    			name:               "KubeConfig referst to the cluster with another address",
    			existingKubeConfig: config,
    			kubeConfig:         configWithAnotherClusterAddress,
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

        user: ${component}
      name: ${component}
    current-context: ${component}
    EOF
      fi
    }
    
    # Arg 1: the IP address of the API server
    function create-kubelet-kubeconfig() {
      local apiserver_address="${1}"
      if [[ -z "${apiserver_address}" ]]; then
        echo "Must provide API server address to create Kubelet kubeconfig file!"
        exit 1
      fi
      if [[ "${CREATE_BOOTSTRAP_KUBECONFIG:-true}" == "true" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top