Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,867 for Bind (0.06 sec)

  1. cmd/kube-proxy/app/server.go

    	fs.Var(&utilflag.IPVar{Val: &o.config.BindAddress}, "bind-address", "Overrides kube-proxy's idea of what its node's primary IP is. Note that the name is a historical artifact, and kube-proxy does not actually bind any sockets to this IP. This parameter is ignored if a config file is specified by --config.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    		// We bind PVCs with PVs, so any changes may make the pods schedulable.
    		{Event: framework.ClusterEvent{Resource: framework.PersistentVolumeClaim, ActionType: framework.Add | framework.Update}},
    		{Event: framework.ClusterEvent{Resource: framework.PersistentVolume, ActionType: framework.Add | framework.Update}},
    		// Pods may fail to find available PVs because the node labels do not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. pkg/scheduler/extender.go

    		NodeNames: nodeNames,
    	}
    
    	if err := h.send(h.prioritizeVerb, args, &result); err != nil {
    		return nil, 0, err
    	}
    	return &result, h.weight, nil
    }
    
    // Bind delegates the action of binding a pod to a node to the extender.
    func (h *HTTPExtender) Bind(binding *v1.Binding) error {
    	var result extenderv1.ExtenderBindingResult
    	if !h.IsBinder() {
    		// This shouldn't happen as this extender wouldn't have become a Binder.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/util.go

    func BuildAddress(bind string, port uint32) *core.Address {
    	address := BuildNetworkAddress(bind, port, istionetworking.TransportProtocolTCP)
    	if address != nil {
    		return address
    	}
    
    	return &core.Address{
    		Address: &core.Address_Pipe{
    			Pipe: &core.Pipe{
    				Path: strings.TrimPrefix(bind, model.UnixAddressPrefix),
    			},
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	// (we use both in our iptables code later on anyway)
    	//
    	// We could explicitly check for all 3 every time to be sure, but that's likely not necessary,
    	// if we find one unless the host OS is badly broken we will find the others.
    	iptablesSaveBin := fmt.Sprintf("%s-save", iptablesBin)
    	iptablesRestoreBin := fmt.Sprintf("%s-restore", iptablesBin)
    	var parsedVer *utilversion.Version
    	var isNft bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/validation/validation_test.go

        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    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.
    */
    
    package validation
    
    import (
    	"testing"
    	"time"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_block.go

        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    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.
    */
    
    /*
    This file defines block volume related methods for CSI driver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. pkg/proxy/apis/config/types.go

    	// on, defaulting to "127.0.0.1:10249" (if bindAddress is unset or IPv4), or
    	// "[::1]:10249" (if bindAddress is IPv6). (Set to "0.0.0.0:10249" / "[::]:10249"
    	// to bind on all interfaces.)
    	MetricsBindAddress string
    	// bindAddressHardFail, if true, tells kube-proxy to treat failure to bind to a
    	// port as fatal and exit
    	BindAddressHardFail bool
    	// enableProfiling enables profiling via web interface on /debug/pprof handler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/symtab.go

    	// maybe one day elf.STB_WEAK.
    	bind := elf.STB_GLOBAL
    	if ldr.IsFileLocal(x) && !isStaticTmp(sname) || ldr.AttrVisibilityHidden(x) || ldr.AttrLocal(x) {
    		// Static tmp is package local, but a package can be shared among multiple DSOs.
    		// They need to have a single view of the static tmp that are writable.
    		bind = elf.STB_LOCAL
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  10. pkg/scheduler/testing/framework/fake_extender.go

    		}
    	}
    	for host, score := range combinedScores {
    		result = append(result, extenderv1.HostPriority{Host: host, Score: score})
    	}
    	return &result, f.Weight, nil
    }
    
    // Bind implements the extender Bind function.
    func (f *FakeExtender) Bind(binding *v1.Binding) error {
    	if f.Binder != nil {
    		return f.Binder()
    	}
    	if len(f.FilteredNodes) != 0 {
    		for _, node := range f.FilteredNodes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top