Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,754 for Bind (0.1 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleBindingFailureIntegrationTest.groovy

     *
     * 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 org.gradle.model
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    		// deleted clusters for this config.
    		var deleted []string
    		var svcs []*model.Service
    		switch key.Kind {
    		case kind.ServiceEntry:
    			svcs, deleted = configgen.deltaFromServices(key, proxy, updates.Push, serviceClusters,
    				servicePortClusters, subsetClusters)
    		case kind.DestinationRule:
    			svcs, deleted = configgen.deltaFromDestinationRules(key, proxy, subsetClusters)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      annotations:
        controller-gen.kubebuilder.io/version: v0.8.0
        api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665"
      creationTimestamp: null
      name: volumesnapshots.snapshot.storage.k8s.io
    spec:
      group: snapshot.storage.k8s.io
      names:
        kind: VolumeSnapshot
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top