Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,034 for It (0.02 sec)

  1. releasenotes/notes/update-grafana-memory-compute.yaml

      to display memory. This metric only counts memory that *cannot be reclaimed* by the kernel even under memory pressure,
      and therefore more relevant for tracking. It is also consistent with `kubectl top`. The reported values are lower than
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 25 16:11:21 UTC 2020
    - 474 bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/coordination/v1/generated.proto

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    
    // This file was autogenerated by go-to-protobuf. Do not edit it manually!
    
    syntax = "proto2";
    
    package k8s.io.api.coordination.v1;
    
    import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/generated.proto";
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. releasenotes/notes/wasm-download-fallback.yaml

        Previously, the given wasm filter itself was passed to Envoy in the case, but it may cause the errors because some fields of Wasm configuration are optional in Istio, but not in Envoy....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 02 21:41:25 UTC 2022
    - 453 bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/multiple-templates.yaml

    metadata:
      name: hello
    spec:
      selector:
        matchLabels:
          app: hello
      template:
        metadata:
          annotations:
            # There is no real purpose of setting this multiple times; this just makes sure it doesn't blow
            # up if a user does happen to configure this
            inject.istio.io/templates: sidecar,sidecar,sidecar
          labels:
            app: hello
        spec:
          containers:
          - name: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 22 15:44:09 UTC 2020
    - 568 bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conditions.go

    	seen := map[k8s.ParentReference][]RouteParentResult{}
    	seenReasons := sets.New[ParentErrorReason]()
    	successCount := map[k8s.ParentReference]int{}
    	for _, incoming := range parentResults {
    		// We will append it if it is our first occurrence, or the existing one has an error. This means
    		// if *any* section has no errors, we will declare Admitted
    		if incoming.DeniedReason == nil {
    			successCount[incoming.OriginalReference]++
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/ep_filters.go

    	// Go through all cluster endpoints and add those with the same network as the sidecar
    	// to the result. Also count the number of endpoints per each remote network while
    	// iterating so that it can be used as the weight for the gateway endpoint
    	for _, ep := range endpoints {
    		lbEndpoints := &LocalityEndpoints{
    			llbEndpoints: endpoint.LocalityLbEndpoints{
    				Locality: ep.llbEndpoints.Locality,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. pkg/util/strcase/camelcase.go

    		return ""
    	}
    	t := make([]byte, 0, 32)
    	i := 0
    	if isWordSeparator(s[0]) {
    		// Need a capital letter; drop the '_'.
    		t = append(t, 'X')
    		i++
    	}
    	// Invariant: if the next letter is lower case, it must be converted
    	// to upper case.
    	// That is, we process a word at a time, where words are marked by _, - or
    	// upper case letter. Digits are treated as words.
    	for ; i < len(s); i++ {
    		c := s[i]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 28 19:48:10 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  8. pkg/workloadapi/security/authorization.proto

      // workloads that were selected by their labels.
      WORKLOAD_SELECTOR = 2;
    }
    
    enum Action {
      // Allow the request if it matches with the rules.
      ALLOW = 0;
      // Deny the request if it matches with the rules.
      DENY = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. pkg/test/util/tmpl/evaluate.go

    // limitations under the License.
    
    package tmpl
    
    import (
    	"fmt"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/file"
    )
    
    // Evaluate parses the template and then executes it with the given parameters.
    func Evaluate(tpl string, data any) (string, error) {
    	t, err := Parse(tpl)
    	if err != nil {
    		return "", err
    	}
    
    	return Execute(t, data)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. operator/pkg/component/component.go

    // limitations under the License.
    
    /*
    Package component defines an in-memory representation of IstioOperator.<Feature>.<Component>. It provides functions
    for manipulating the component and rendering a manifest from it.
    See ../README.md for an architecture overview.
    */
    package component
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/version"
    	"sigs.k8s.io/yaml"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top