Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for French (0.08 sec)

  1. manifests/charts/istiod-remote/templates/services.yaml

    apiVersion: v1
    kind: Service
    metadata:
      {{- if .Values.pilot.enabled }}
      # when local istiod is enabled, we can't use istiod service name to reach the remote control plane
      name: istiod{{- if .Values.revision }}-{{ .Values.revision}}{{- end }}-remote
      {{- else }}
      # when local istiod isn't enabled, we can use istiod service name to reach the remote control plane
      name: istiod{{- if .Values.revision }}-{{ .Values.revision}}{{- end }}
      {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. .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)
  3. 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)
  4. pilot/pkg/networking/networking.go

    		protocol.Mongo, protocol.Redis, protocol.MySQL:
    		return ListenerProtocolTCP
    	case protocol.UDP:
    		return ListenerProtocolUnknown
    	case protocol.Unsupported:
    		return ListenerProtocolAuto
    	default:
    		// Should not reach here.
    		return ListenerProtocolAuto
    	}
    }
    
    type TransportProtocol uint8
    
    const (
    	// TransportProtocolTCP is a TCP listener
    	TransportProtocolTCP = iota
    	// TransportProtocolQUIC is a QUIC listener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 18 09:42:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. pkg/test/framework/integration/framework_test.go

    		Build().
    		Run(t)
    }
    
    func newLevels() levels {
    	return levels{
    		{
    			name: "root",
    		},
    	}
    }
    
    type level struct {
    	name string
    
    	// branchFactor indicates how the parent should branch for this level
    	// (i.e. how many child tests should be created per parent test in the previous level).
    	branchFactor int
    
    	// runParallel if true, all tests in this level will be run in parallel.
    	runParallel bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. tests/integration/pilot/mirror_test.go

    //
    // Since we don't want to rely on actual external websites, we simulate that by using a Sidecar to limit connectivity
    // from "a" so that it cannot reach "external" directly, and we use a ServiceEntry to define our "external" website, which
    // is static and points to the service "external" ip.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. tests/integration/security/util/reachability/context.go

    	// Indicates whether the test should expect a successful response.
    	ExpectSuccess func(from echo.Instance, opts echo.CallOptions) bool
    
    	// Allows filtering the destinations we expect to reach (optional).
    	ExpectDestinations func(from echo.Instance, to echo.Target) echo.Instances
    
    	// Indicates whether the test should expect a MTLS response.
    	ExpectMTLS func(from echo.Instance, opts echo.CallOptions) bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  8. pkg/cache/bench.baseline

    zirain <******@****.***> 1684861711 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. pkg/util/concurrent/debouncer.go

    	// Keeps track of the push requests. If updates are debounce they will be merged.
    	combinedEvents := sets.New[T]()
    
    	free := true
    	freeCh := make(chan struct{}, 1)
    
    	push := func(events sets.Set[T], debouncedEvents int, startDebounce time.Time) {
    		pushFn(events)
    		freeCh <- struct{}{}
    	}
    
    	pushWorker := func() {
    		eventDelay := time.Since(startDebounce)
    		quietTime := time.Since(lastConfigUpdateTime)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 13:44:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. pkg/lazy/lazy_test.go

    	})
    	wg := sync.WaitGroup{}
    	wg.Add(10)
    	results := []int32{}
    	resCh := make(chan int32, 10)
    	for i := 0; i < 10; i++ {
    		go func() {
    			res, err := l.Get()
    			if res >= 6 {
    				assert.NoError(t, err)
    			} else {
    				assert.Error(t, err)
    			}
    			resCh <- res
    			wg.Done()
    		}()
    	}
    	wg.Wait()
    	close(resCh)
    	for r := range resCh {
    		results = append(results, r)
    	}
    	slices.Sort(results)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top