Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 651 for It (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/config/analysis/analyzers/testdata/virtualservice_jwtclaimroute.yaml

    # The following virtual service should cause the error IST0149 because it uses JWT claim based routing but there is
    # no request authentication applied on the gateway.
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: foo
    spec:
      hosts:
        - "foo.com"
      gateways:
        - foo-gateway
      http:
        - match:
            - uri:
                prefix: /
              headers:
                "@request.auth.claims.foo":
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 843 bytes
    - Viewed (0)
  5. security/pkg/credentialfetcher/plugin/leak_test.go

    	// metadata server code against a fake metadata server. We do not control the client, and cannot
    	// configure it to exit early, retry faster, etc - its all fixed. As a result, we don't have a good
    	// way to shut it down if it is still retrying in the background.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 12 20:52:37 UTC 2021
    - 1020 bytes
    - Viewed (0)
  6. pilot/pkg/grpc/grpc.go

    		grpc.MaxConcurrentStreams(uint32(maxStreams)),
    		grpc.MaxRecvMsgSize(maxRecvMsgSize),
    		// Ensure we allow clients sufficient ability to send keep alives. If this is higher than client
    		// keep alive setting, it will prematurely get a GOAWAY sent.
    		grpc.KeepaliveEnforcementPolicy(keepalive.EnforcementPolicy{
    			MinTime: options.Time / 2,
    		}),
    		grpc.KeepaliveParams(keepalive.ServerParameters{
    			Time:                  options.Time,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 04:27:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. releasenotes/notes/49700.yaml

    ambient mode no longer use the original service account or namespace attachment semantics. If you were using a namespace-scope waypoint previously migration should be fairly straight forward. Annotate your namespace with the appropriate waypoint and it should function in a similar way.
    
          If you were using service account attachment there will be more to understand. Under the old waypoint logic all types of traffic, both addressed to a service as well as addressed to a workload, were treated...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/filterchain_options.go

    		},
    		{
    			// client side traffic could not be identified by the outbound listener, sent over one-way
    			// TLS (HTTPS for example) by the downstream application.
    			// or it could be that the client has no sidecar, and it is directly making a HTTPS connection to
    			// this sidecar. In this case, this filter chain is receiving plaintext one-way TLS traffic. The TLS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. pkg/config/schema/collection/schemas.go

    // Schemas contains metadata about configuration resources.
    type Schemas struct {
    	byCollection map[config.GroupVersionKind]resource.Schema
    	byAddOrder   []resource.Schema
    }
    
    // SchemasFor is a shortcut for creating Schemas. It uses MustAdd for each element.
    func SchemasFor(schemas ...resource.Schema) Schemas {
    	b := NewSchemasBuilder()
    	for _, s := range schemas {
    		b.MustAdd(s)
    	}
    	return b.Build()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 08:10:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. cni/cmd/istio-cni/main.go

    		// Log sync will send logs to install-cni container via UDS.
    		// We don't need a timeout here because underlying the log pkg already handles it.
    		// this may fail, but it should be safe to ignore according
    		// to https://github.com/uber-go/zap/issues/328
    		_ = log.Sync()
    	}()
    
    	// TODO: implement plugin version
    	funcs := skel.CNIFuncs{
    		Add:   plugin.CmdAdd,
    		Del:   plugin.CmdDelete,
    		Check: plugin.CmdCheck,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top