Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,713 for meth (0.08 sec)

  1. pkg/kube/inject/testdata/inputs/hello.yaml.13.mesh.gen.yaml

    John Howard <******@****.***> 1709830758 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 191 bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello.yaml.3.mesh.gen.yaml

    John Howard <******@****.***> 1709830758 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 191 bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    const (
    	FailoverPriorityLabelDefaultSeparator = '='
    )
    
    func GetLocalityLbSetting(
    	mesh *v1alpha3.LocalityLoadBalancerSetting,
    	destrule *v1alpha3.LocalityLoadBalancerSetting,
    ) *v1alpha3.LocalityLoadBalancerSetting {
    	var enabled bool
    	// Locality lb is enabled if its not explicitly disabled in mesh global config
    	if mesh != nil && (mesh.Enabled == nil || mesh.Enabled.Value) {
    		enabled = true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/networkfilter_test.go

    			},
    		},
    	}
    
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			var configs []*config.Config
    			if tt.destRule != nil {
    				destinationRuleConfig := config.Config{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.DestinationRule,
    						Name:             "tcp-idle-timeout",
    						Namespace:        "not-default",
    					},
    					Spec: tt.destRule,
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/util/util.go

    // The custom "istio" value indicates in-mesh traffic and it's going to be used for routing decisions.
    // Once Envoy supports client-side ALPN negotiation, this should be {"istio", "h2", "http/1.1"}.
    var ALPNInMeshH2 = pm.ALPNInMeshH2
    
    // ALPNInMeshH2WithMxc advertises that Proxy is going to use HTTP/2 when talking to the in-mesh cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. pkg/config/mesh/kubemesh/watcher_test.go

    	"go.uber.org/atomic"
    	"google.golang.org/protobuf/testing/protocmp"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	corev1 "k8s.io/client-go/kubernetes/typed/core/v1"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. pkg/test/loadbalancersim/mesh/node.go

    //  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    //  See the License for the specific language governing permissions and
    //  limitations under the License.
    
    package mesh
    
    import (
    	"math"
    	"time"
    
    	"istio.io/istio/pkg/test/loadbalancersim/locality"
    	"istio.io/istio/pkg/test/loadbalancersim/network"
    	"istio.io/istio/pkg/test/loadbalancersim/timer"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. istioctl/pkg/version/version.go

    	"istio.io/istio/istioctl/pkg/clioptions"
    	"istio.io/istio/istioctl/pkg/multixds"
    	"istio.io/istio/operator/cmd/mesh"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/xds"
    	"istio.io/istio/pkg/proxy"
    	istioVersion "istio.io/istio/pkg/version"
    )
    
    func NewVersionCommand(ctx cli.Context) *cobra.Command {
    	profileCmd := mesh.ProfileCmd(ctx)
    	var opts clioptions.ControlPlaneOptions
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/ingress/status_test.go

    				{
    					Type:    corev1.NodeExternalIP,
    					Address: nodeIP,
    				},
    			},
    		},
    	},
    }
    
    func fakeMeshHolder(ingressService string) mesh.Watcher {
    	config := mesh.DefaultMeshConfig()
    	config.IngressService = ingressService
    	return mesh.NewFixedWatcher(config)
    }
    
    func makeStatusSyncer(t *testing.T, name string) *StatusSyncer {
    	client := kubelib.NewFakeClient(testObjects...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/skipnonapplied.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package internal
    
    import (
    	"fmt"
    	"math/rand"
    
    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    type skipNonAppliedManager struct {
    	fieldManager           Manager
    	objectCreater          runtime.ObjectCreater
    	beforeApplyManagerName string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top