Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,384 for meth (0.12 sec)

  1. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    // limitations under the License.
    
    package controller
    
    import (
    	"sort"
    	"strings"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	klabels "k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/configmap.go

    	// Get the MeshConfig yaml from the config map.
    	mcYAML, ok := cm.Data["mesh"]
    	if !ok {
    		return "", fmt.Errorf("mesh config was missing in istio config map for %s", c.Name())
    	}
    	return mcYAML, nil
    }
    
    func setMeshConfigData(cm *corev1.ConfigMap, mcYAML string) {
    	cm.Data["mesh"] = mcYAML
    }
    
    func yamlToMeshConfig(mcYAML string) (*meshconfig.MeshConfig, error) {
    	// Parse the YAML.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	minFileLen  = 16 * 1024
    )
    
    func mappedHeader(meta string) ([]byte, error) {
    	if len(meta) > maxMetaLen {
    		return nil, fmt.Errorf("counter: metadata too large")
    	}
    	np := round(len(hdrPrefix), 4)
    	n := round(np+4+len(meta), 32)
    	hdr := make([]byte, n)
    	copy(hdr, hdrPrefix)
    	*(*uint32)(unsafe.Pointer(&hdr[np])) = uint32(n)
    	copy(hdr[np+4:], meta)
    	return hdr, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/bootstrap/config.go

    	return ret
    }
    
    func getStatsOptions(meta *model.BootstrapNodeMetadata) []option.Instance {
    	nodeIPs := meta.InstanceIPs
    	config := meta.ProxyConfig
    
    	tagAnno := meta.Annotations[annotation.SidecarExtraStatTags.Name]
    	prefixAnno := meta.Annotations[annotation.SidecarStatsInclusionPrefixes.Name]
    	RegexAnno := meta.Annotations[annotation.SidecarStatsInclusionRegexps.Name]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/informers.go

    	if matchAmbient {
    		log.Infof("Namespace %s is enabled in ambient mesh", namespace)
    	} else {
    		log.Infof("Namespace %s is disabled from ambient mesh", namespace)
    	}
    	for _, pod := range s.pods.List(namespace, klabels.Everything()) {
    		// ztunnel pods are never "added to/removed from the mesh", so do not fire
    		// spurious events for them to avoid triggering extra
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //
      // If an administrator expects that any of these conditions may become true in
      // the future, they should ensure their meshes have different Mesh IDs
      // assigned.
      //
      // Within a multicluster mesh, each cluster must be (manually or auto)
      // configured to have the same Mesh ID value. If an existing cluster 'joins' a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/network_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	k8sv1 "sigs.k8s.io/gateway-api/apis/v1"
    	"sigs.k8s.io/gateway-api/apis/v1beta1"
    
    	"istio.io/api/label"
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/schema/gvr"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. cni/pkg/repair/netns.go

    	}
    	procs, err := fs.AllProcs()
    	if err != nil {
    		return "", fmt.Errorf("read procs: %v", err)
    	}
    	oldest := uint64(math.MaxUint64)
    	best := ""
    
    	// We will iterate over all processes. Our goal is to find a process whose namespace has a veth with an IP matching the pod.
    	// There should be 1 or 2 processes that match: the pause container should always be there, and the istio-validation *might*.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. pkg/bootstrap/config_test.go

    	test.SetForTest(t, &version.Info.Version, "binary")
    
    	testCases := []struct {
    		name            string
    		meta            *model.BootstrapNodeMetadata
    		binaryVersion   string
    		expectedVersion string
    	}{
    		{
    			name:            "if IstioVersion is not specified, set it from binary version",
    			meta:            &model.BootstrapNodeMetadata{},
    			expectedVersion: "binary",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    */
    
    package handlers
    
    import (
    	"context"
    	"fmt"
    	"math/rand"
    	"net/http"
    	"net/url"
    	"strings"
    	"time"
    
    	"go.opentelemetry.io/otel/attribute"
    
    	"k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/api/meta"
    	metainternalversion "k8s.io/apimachinery/pkg/apis/meta/internalversion"
    	metainternalversionscheme "k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top