Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 349 for Mathis (0.07 sec)

  1. pkg/test/echo/response.go

    type Response struct {
    	// RequestURL is the requested URL. This differs from URL, which is the just the path.
    	// For example, RequestURL=http://foo/bar, URL=/bar
    	RequestURL string
    	// Method used (for HTTP).
    	Method string
    	// Protocol used for the request.
    	Protocol string
    	// Alpn value (for HTTP).
    	Alpn string
    	// RawContent is the original unparsed content for this response
    	RawContent string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 01 01:05:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. istioctl/pkg/install/k8sversion/version.go

    // Copyright Istio Authors.
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 02:07:51 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/common/deployment/external.go

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. pkg/kube/inject/webhook.go

    	// This is to ensure `kubectl exec` and similar commands continue to default to the user's container
    	pod.Spec.Containers = modifyContainers(pod.Spec.Containers, ProxyContainerName, proxyLocation)
    
    	if hasContainer(pod.Spec.InitContainers, ProxyContainerName) {
    		// This is using native sidecar support in K8s.
    		// We want istio to be first in this case, so init containers are part of the mesh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.pb.go

    	// If set, this indicates a workload expects to directly receive tunnel traffic.
    	// In ztunnel, this means:
    	// * Requests *from* this workload do not need to be tunneled if they already are tunneled by the tunnel_protocol.
    	// * Requests *to* this workload, via the tunnel_protocol, do not need to be de-tunneled.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  6. pkg/config/mesh/mesh.go

    	// decent customization while also not requiring users to redefine the entire proxy config if they want to override
    	// Note: if we want to add more structure in the future, we will likely need to revisit this idea.
    
    	// Store the current set proxy config so we don't wipe it out, we will configure this later
    	prevProxyConfig := defaultConfig.DefaultConfig
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. istioctl/pkg/util/constants.go

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. pkg/util/istiomultierror/util.go

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 09 05:07:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. pkg/config/analysis/incluster/controller.go

    			index[key] = append(index[key], m)
    		}
    		// if we previously had a message that has been removed, ensure it is removed
    		// TODO: this creates a state destruction problem when istiod crashes
    		// in that old messages may not be removed.  Not sure how to fix this
    		// other than write every object's status every loop.
    		for _, a := range res.ExecutedAnalyzers {
    			for _, m := range oldmsgs[a] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conditions.go

    			continue
    		}
    		// We found our highest priority ranking, now we need to collapse this into a single message
    		for k, refs := range seen {
    			for _, ref := range refs {
    				reason := ParentNoError
    				if ref.DeniedReason != nil {
    					reason = ref.DeniedReason.Reason
    				}
    				if wantReason != reason {
    					// Skip this one, it is for a less relevant reason
    					continue
    				}
    				exist, f := report[k]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top