Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ME (0.13 sec)

  1. istioctl/pkg/checkinject/checkinject.go

    			}
    		} else if nsMatched {
    			for _, me := range wh.ObjectSelector.MatchExpressions {
    				switch me.Operator {
    				case metav1.LabelSelectorOpDoesNotExist:
    					v, ok := podLabels[me.Key]
    					if ok {
    						return fmt.Sprintf("Pod has %s=%s label, preventing injection", me.Key, v), false
    					}
    				case metav1.LabelSelectorOpNotIn:
    					v, ok := podLabels[me.Key]
    					if !ok {
    						continue
    					}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  2. istioctl/pkg/metrics/metrics_test.go

    	if !ok {
    		return prometheus_model.Vector{}, nil, nil
    	}
    	return canned, nil, nil
    }
    
    func (client mockPromAPI) WalReplay(ctx context.Context) (promv1.WalReplayStatus, error) {
    	// TODO implement me
    	panic("implement me")
    }
    
    func (client mockPromAPI) Series(ctx context.Context, matches []string,
    	startTime time.Time, endTime time.Time,
    ) ([]prometheus_model.LabelSet, promv1.Warnings, error) {
    	return nil, nil, nil
    }
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Oct 25 02:07:44 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  3. istioctl/pkg/metrics/metrics.go

    	if err != nil {
    		me = multierror.Append(me, err)
    	}
    	sm.p50Latency = p50Latency
    
    	p90Latency, err := getLatency(promAPI, wname, wns, duration, 0.9)
    	if err != nil {
    		me = multierror.Append(me, err)
    	}
    	sm.p90Latency = p90Latency
    
    	p99Latency, err := getLatency(promAPI, wname, wns, duration, 0.99)
    	if err != nil {
    		me = multierror.Append(me, err)
    	}
    	sm.p99Latency = p99Latency
    
    	if me.ErrorOrNil() != nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  4. operator/README.md

    correct sequencing of dependencies. Child manifest directories must wait for their parent directory to be fully applied,
    but not their sibling manifest directories.
    
    #### Just apply it for me
    
    The following command generates the manifests and applies them in the correct dependency order, waiting for the
    dependencies to have the needed CRDs available:
    
    ```bash
    istioctl install
    ```
    
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
Back to top