Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,480 for west (0.07 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.txt

        public final enum static field EAST: Direction
        public final enum static field NORTH: Direction
        public final enum static field SOUTH: Direction
        public final enum static field WEST: Direction
        private synthetic final static method $values(): Direction[]
        static method <clinit>(): void
        private method <init>(p0: java.lang.String, p1: int): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/flags.go

    	flag.StringVar(&helmValues, "istio.test.kube.helm.values", helmValues,
    		"Manual overrides for Helm values file. Only valid when deploying Istio.")
    	flag.BoolVar(&settingsFromCommandline.DeployEastWestGW, "istio.test.kube.deployEastWestGW", settingsFromCommandline.DeployEastWestGW,
    		"Deploy Istio east west gateway into the target Kubernetes environment.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. tests/integration/pilot/workloadentry_test.go

    	"time"
    
    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/crd"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/echo/common/ports"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. manifests/charts/gateway/README.md

    * Published to official Istio Helm repository.
    * Single chart for all gateways (Ingress, Egress, East West).
    
    #### General concerns
    
    For a smooth migration, the resource names and `Deployment.spec.selector` labels must match.
    
    If you install with `helm install istio-gateway istio/gateway`, resources will be named `istio-gateway` and the `selector` labels set to:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

      selector:
        matchLabels:
          istio.io/test-vm: {{ $.Service }}
          istio.io/test-vm-version: {{ $subset.Version }}
      template:
        metadata:
          annotations:
            # Sidecar is inside the pod to simulate VMs - do not inject
            sidecar.istio.io/inject: "false"
          labels:
            # Label should not be selected. We will create a workload entry instead
            istio.io/test-vm: {{ $.Service }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/istio.go

    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/kube/inject"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/istio/ingress"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/framework/resource/config/cleanup"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    // OperatorValues is the map of the values from the installed operator yaml.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. cmd/lock-rest-client.go

    }
    
    // RLock calls read lock REST API.
    func (c *lockRESTClient) RLock(ctx context.Context, args dsync.LockArgs) (reply bool, err error) {
    	return c.call(ctx, lockRPCRLock, &args)
    }
    
    // Lock calls lock REST API.
    func (c *lockRESTClient) Lock(ctx context.Context, args dsync.LockArgs) (reply bool, err error) {
    	return c.call(ctx, lockRPCLock, &args)
    }
    
    // RUnlock calls read unlock REST API.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 24 17:07:14 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. pkg/proxy/conntrack/conntrack.go

    	// protocol, which had been DNATted from origin to dest.
    	ClearEntriesForNAT(origin, dest string, protocol v1.Protocol) error
    
    	// ClearEntriesForPortNAT deletes conntrack entries for connections of the given
    	// protocol, which had been DNATted from the given port (on any IP) to dest.
    	ClearEntriesForPortNAT(dest string, port int, protocol v1.Protocol) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pkg/registry/authentication/selfsubjectreview/rest.go

    	genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/registry/rest"
    	authenticationapi "k8s.io/kubernetes/pkg/apis/authentication"
    )
    
    var _ interface {
    	rest.Creater
    	rest.NamespaceScopedStrategy
    	rest.Scoper
    	rest.Storage
    } = &REST{}
    
    // REST implements a RESTStorage for selfsubjectreviews.
    type REST struct {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. pkg/registry/core/componentstatus/rest.go

    	return &REST{
    		GetServersToValidate: serverRetriever,
    		TableConvertor:       printerstorage.TableConvertor{TableGenerator: printers.NewTableGenerator().With(printersinternal.AddHandlers)},
    	}
    }
    
    func (*REST) NamespaceScoped() bool {
    	return false
    }
    
    func (rs *REST) New() runtime.Object {
    	return &api.ComponentStatus{}
    }
    
    var _ rest.SingularNameProvider = &REST{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 13 08:10:29 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top