Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,779 for binds (0.04 sec)

  1. releasenotes/notes/inbound-passthrough.yaml

          However, as a result, applications that have come to rely on `localhost` being exposed externally by Istio, may stop working.
    
          The [check-binds.sh](https://gist.github.com/howardjohn/edcdbe5a85ae2e5ba7809739bd55c566) script can be used to detect what binds your applications are using.
    
          Regardless of Istio version, the behavior can be explicitly controlled by the `Sidecar`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_address.go

    // limitations under the License.
    
    package core
    
    import (
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    )
    
    const (
    	// WildcardAddress binds to all IP addresses
    	WildcardAddress = "0.0.0.0"
    
    	// WildcardIPv6Address binds to all IPv6 addresses
    	WildcardIPv6Address = "::"
    
    	// LocalhostAddress for local binding
    	LocalhostAddress = "127.0.0.1"
    
    	// LocalhostIPv6Address for local binding
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/defaultbinder/default_binder.go

    // Name returns the name of the plugin.
    func (b DefaultBinder) Name() string {
    	return Name
    }
    
    // Bind binds pods to nodes using the k8s client.
    func (b DefaultBinder) Bind(ctx context.Context, state *framework.CycleState, p *v1.Pod, nodeName string) *framework.Status {
    	logger := klog.FromContext(ctx)
    	logger.V(3).Info("Attempting to bind pod to node", "pod", klog.KObj(p), "node", klog.KRef("", nodeName))
    	binding := &v1.Binding{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. releasenotes/notes/43775.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/43775
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 06 16:58:21 UTC 2023
    - 305 bytes
    - Viewed (0)
  5. releasenotes/notes/43688.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/43688
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:19 UTC 2023
    - 312 bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/binder_test.go

    			expectedEvents:  noevents,
    			errors:          noerrors,
    			test:            testSyncClaim,
    		},
    		{
    			// syncClaim does not bind PVC to non-available PV if it's not pre-bind
    			name: "1-17 - skip non-available PV if it's not pre-bind",
    			initialVolumes: []*v1.PersistentVolume{
    				newVolume("volume1-17-pending", "1Gi", "", "", v1.VolumePending, v1.PersistentVolumeReclaimRetain, classEmpty),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    		//
    		// If captureMode is not NONE, i.e., bindToPort is false, then
    		// we will bind to user specified IP (if any) or to the VIPs of services in
    		// this egress listener.
    		if egressListener.IstioListener != nil && egressListener.IstioListener.Bind != "" {
    			bind.binds = []string{egressListener.IstioListener.Bind}
    		} else if bind.bindToPort {
    			bind.binds = actualLocalHosts
    		}
    
    		if egressListener.IstioListener != nil &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/AbstractStructMethodBinding.java

     */
    
    package org.gradle.model.internal.manage.binding;
    
    import org.gradle.internal.reflect.PropertyAccessorType;
    import org.gradle.model.internal.method.WeaklyTypeReferencingMethod;
    
    /**
     * Binds a method declared in views to its actual implementation.
     */
    public abstract class AbstractStructMethodBinding implements StructMethodBinding {
        private final WeaklyTypeReferencingMethod<?, ?> viewMethod;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/StructMethodBinding.java

    package org.gradle.model.internal.manage.binding;
    
    import org.gradle.internal.reflect.PropertyAccessorType;
    import org.gradle.model.internal.method.WeaklyTypeReferencingMethod;
    
    import javax.annotation.Nullable;
    
    /**
     * Binds a method declared in a views to its actual implementation.
     */
    public interface StructMethodBinding {
        WeaklyTypeReferencingMethod<?, ?> getViewMethod();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/ProjectConfigurer.java

    public interface ProjectConfigurer {
        /**
         * Configures the given project.
         */
        void configure(ProjectInternal project);
    
        /**
         * Configures the owned project, discovers tasks and binds model rules.
         */
        void configureFully(ProjectState projectState);
    
        /**
         * Configures the given project and all its sub-projects.
         */
        void configureHierarchy(ProjectInternal project);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top