Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 184 for Present (0.14 sec)

  1. pkg/slices/slices.go

    func Delete[S ~[]E, E any](s S, i int) S {
    	// Since Go 1.22, "slices.Delete zeroes the elements s[len(s)-(j-i):len(s)]"
    	// (no memory leak)
    	return slices.Delete(s, i, i+1)
    }
    
    // Contains reports whether v is present in s.
    func Contains[E comparable](s []E, v E) bool {
    	return slices.Contains(s, v)
    }
    
    // FindFunc finds the first element matching the function, or nil if none do
    func FindFunc[E any](s []E, f func(E) bool) *E {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. pkg/webhooks/validation/controller/controller.go

    	return c
    }
    
    func (c *Controller) Reconcile(key types.NamespacedName) error {
    	name := key.Name
    	whc := c.webhooks.Get(name, "")
    	scope := scope.WithLabels("webhook", name)
    	// Stop early if webhook is not present, rather than attempting (and failing) to reconcile permanently
    	// If the webhook is later added a new reconciliation request will trigger it to update
    	if whc == nil {
    		scope.Infof("Skip patching webhook, not found")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway_test.go

    			1,
    			1,
    			map[string]int{"http.8": 1},
    			2,
    		},
    		{
    			"http-http2-server-config",
    			[]config.Config{gwHTTPWildcard, gwHTTP2Wildcard},
    			1,
    			1,
    			// http and http2 both present
    			map[string]int{"http.8": 1},
    			2,
    		},
    		{
    			"simple-passthrough",
    			[]config.Config{gwSimple, gwPassthrough},
    			2,
    			2,
    			map[string]int{"https.443.https.foo-simple.not-default-2": 1},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. common/scripts/kind_provisioner.sh

        echo "Cleaning up kind cluster"
        kind delete cluster --name "${NAME}" -v9 || true
      fi
    }
    
    # check_default_cluster_yaml checks the presence of default cluster YAML
    # It returns 1 if it is not present
    function check_default_cluster_yaml() {
      if [[ -z "${DEFAULT_CLUSTER_YAML:-}" ]]; then
        echo 'DEFAULT_CLUSTER_YAML file must be specified. Exiting...'
        return 1
      fi
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/conversion.go

    				}
    			}
    		}
    	}
    	return out
    }
    
    func getTLSModeFromWorkloadEntry(wle *networking.WorkloadEntry) string {
    	// * Use security.istio.io/tlsMode if its present
    	// * If not, set TLS mode if ServiceAccount is specified
    	tlsMode := model.DisabledTLSModeLabel
    	if val, exists := wle.Labels[label.SecurityTlsMode.Name]; exists {
    		tlsMode = val
    	} else if wle.ServiceAccount != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/autoscaling/v1/generated.proto

      // currentAverageUtilization is the current value of the average of the
      // resource metric across all relevant pods, represented as a percentage of
      // the requested value of the resource for the pods.  It will only be
      // present if `targetAverageValue` was set in the corresponding metric
      // specification.
      // +optional
      optional int32 currentAverageUtilization = 2;
    
      // currentAverageValue is the current value of the average of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. istioctl/pkg/version/version.go

    		if err != nil {
    			fmt.Fprintf((*pc).OutOrStderr(), "%v\n", err)
    			// Return nil so that the client version is printed
    			return nil, nil
    		}
    		if remInfo == nil {
    			fmt.Fprintf((*pc).OutOrStderr(), "Istio is not present in the cluster with namespace %q\n", ctx.IstioNamespace())
    		}
    		return remInfo, err
    	}
    }
    
    func getProxyInfoWrapper(ctx cli.Context, opts *clioptions.ControlPlaneOptions) func() (*[]istioVersion.ProxyInfo, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apps/v1/generated.proto

    message DaemonSetUpdateStrategy {
      // Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate.
      // +optional
      optional string type = 1;
    
      // Rolling update config params. Present only if type = "RollingUpdate".
      // ---
      // TODO: Update this to follow our convention for oneOf, whatever we decide it
      // to be. Same as Deployment `strategy.rollingUpdate`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      // path is matched against the path of an incoming request. Currently it can
      // contain characters disallowed from the conventional "path" part of a URL
      // as defined by RFC 3986. Paths must begin with a '/' and must be present
      // when using PathType with value "Exact" or "Prefix".
      // +optional
      optional string path = 1;
    
      // pathType determines the interpretation of the path matching. PathType can
      // be one of the following values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_traffic_policy.go

    			LocalityWeightedLbConfig: &cluster.Cluster_CommonLbConfig_LocalityWeightedLbConfig{},
    		}
    	}
    	// Use locality lb settings from load balancer settings if present, else use mesh wide locality lb settings
    	applyLocalityLoadBalancer(locality, proxyLabels, c, localityLbSetting)
    
    	if c.GetType() == cluster.Cluster_ORIGINAL_DST {
    		c.LbPolicy = cluster.Cluster_CLUSTER_PROVIDED
    		return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top