Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for French (0.12 sec)

  1. prow/release-commit.sh

      proxy:
        git: https://github.com/istio/proxy
        auto: deps
      client-go:
        git: https://github.com/istio/client-go
        branch: master
      test-infra:
        git: https://github.com/istio/test-infra
        branch: master
      tools:
        git: https://github.com/istio/tools
        branch: master
      release-builder:
        git: https://github.com/istio/release-builder
        sha: ${BUILDER_SHA}
      ztunnel:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. common/Makefile.common.mk

    	@rm -fr licenses
    	@license-lint --mirror
    
    TMP := $(shell mktemp -d -u)
    UPDATE_BRANCH ?= "master"
    
    BUILD_TOOLS_ORG ?= "istio"
    
    update-common:
    	@mkdir -p $(TMP)
    	@git clone -q --depth 1 --single-branch --branch $(UPDATE_BRANCH) https://github.com/$(BUILD_TOOLS_ORG)/common-files $(TMP)/common-files
    	@cd $(TMP)/common-files ; git rev-parse HEAD >files/common/.commonfiles.sha
    	@rm -fr common
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.pb.go

    	//
    	// Types that are assignable to Destination:
    	//
    	//	*GatewayAddress_Hostname
    	//	*GatewayAddress_Address
    	Destination isGatewayAddress_Destination `protobuf_oneof:"destination"`
    	// port to reach the gateway at for mTLS HBONE connections
    	HboneMtlsPort uint32 `protobuf:"varint,3,opt,name=hbone_mtls_port,json=hboneMtlsPort,proto3" json:"hbone_mtls_port,omitempty"`
    }
    
    func (x *GatewayAddress) Reset() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. .github/dependabot.yml

    # Configures Depdendabot to PR go security updates only
    
    version: 2
    updates:
      # Go configuration for master branch
      - package-ecosystem: "gomod"
        directory: "/"
        schedule:
          interval: "daily"
        # Limit number of open PRs to 0 so that we only get security updates
        # See https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates
        open-pull-requests-limit: 0
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:41 UTC 2024
    - 480 bytes
    - Viewed (0)
  5. istioctl/pkg/writer/ztunnel/configdump/workload.go

    	}
    
    	for _, svc := range services {
    		for _, addr := range svc.Addresses {
    			if addr == wl.Waypoint.Destination {
    				return svc.Name
    			}
    		}
    	}
    
    	return "NA" // Shouldn't normally reach here
    }
    
    func serviceWaypointName(svc *ZtunnelService, services []*ZtunnelService) string {
    	if svc.Waypoint == nil {
    		return "None"
    	}
    
    	for _, service := range services {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/util/util.go

    	// available at client sidecar, so that telemetry filter could use for metric labels. This is useful for two cases:
    	// server does not have sidecar injected, and request fails to reach server and thus metadata exchange does not happen.
    	// Due to performance concern, telemetry metadata is compressed into a semicolon separated string:
    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. tests/integration/ambient/baseline_test.go

    								"IngressHttpPort": ports[i],
    							})).
    							Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    								// TODO validate L7 processing/some headers indicating we reach the svc we wanted
    								from.CallOrFail(t, echo.CallOptions{
    									Address: "111.111.222.222",
    									Port:    to.PortForName("http"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.proto

      oneof destination {
        // TODO: add support for hostname lookup
        NamespacedHostname hostname = 1;
        NetworkAddress address = 2;
      }
      // port to reach the gateway at for mTLS HBONE connections
      uint32 hbone_mtls_port = 3;
      reserved "hbone_single_tls_port";
      reserved 4;
    }
    
    // NetworkAddress represents an address bound to a specific network.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top