Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,417 for meth (0.13 sec)

  1. guava/src/com/google/common/math/ParametricNullness.java

     * it</a>.
     */
    @GwtCompatible
    @Retention(RUNTIME)
    @Target({FIELD, METHOD, PARAMETER})
    @javax.annotation.meta.TypeQualifierNickname
    @javax.annotation.Nonnull(when = javax.annotation.meta.When.UNKNOWN)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 10 21:27:51 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. tests/integration/ambient/gateway_conformance_test.go

    				Inject: false,
    			})
    			if err != nil {
    				t.Fatal(err)
    			}
    			ns.RemoveLabel(constants.DataplaneModeLabel)
    
    			// create a waypoint for mesh conformance
    			meshNS := namespace.Static("gateway-conformance-mesh")
    			ambientComponent.NewWaypointProxyOrFail(ctx, meshNS, "namespace")
    			for _, k := range ctx.AllClusters() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pkg/model/proxy_test.go

    			}
    			var meta model.BootstrapNodeMetadata
    			if err := json.Unmarshal(j, &meta); err != nil {
    				t.Fatalf("failed to unmarshal: %v", err)
    			}
    
    			assert.Equal(t, (*meshconfig.ProxyConfig)(meta.NodeMetadata.ProxyConfig), (*meshconfig.ProxyConfig)(tt.inOut.NodeMetadata.ProxyConfig))
    			// cmp cannot handle the type-alias in the metadata, so check them separately.
    			meta.NodeMetadata.ProxyConfig = nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/namespacecontroller_test.go

    	"context"
    	"fmt"
    	"reflect"
    	"testing"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/client-go/kubernetes"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/keycertbundle"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/inject"
    	"istio.io/istio/pkg/kube/kclient"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    		HealthStatus:          healthStatus,
    		NodeName:              b.nodeName,
    	}
    }
    
    // return the mesh network for the endpoint IP. Empty string if not found.
    func (b *EndpointBuilder) endpointNetwork(endpointIP string) network.ID {
    	// If we're building the endpoint based on proxy meta, prefer the injected ISTIO_META_NETWORK value.
    	if b.metaNetwork != "" {
    		return b.metaNetwork
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/conversion.go

    func kubeToIstioServiceAccount(saname string, ns string, mesh *meshconfig.MeshConfig) string {
    	return spiffe.MustGenSpiffeURI(mesh, ns, saname)
    }
    
    // SecureNamingSAN creates the secure naming used for SAN verification from pod metadata
    func SecureNamingSAN(pod *corev1.Pod, mesh *meshconfig.MeshConfig) string {
    	return spiffe.MustGenSpiffeURI(mesh, pod.Namespace, pod.Spec.ServiceAccountName)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. samples/multicluster/gen-eastwest-gateway.sh

          shift
        ;;
        --cluster)
          # No longer does anything, but keep it around to avoid breaking users
          shift 2
        ;;
        --network)
          NETWORK=$2
          shift 2
        ;;
        --mesh)
          # No longer does anything, but keep it around to avoid breaking users
          shift 2
        ;;
        --revision)
          REVISION=$2
          shift 2
        ;;
        -*)
          echo "Error: Unsupported flag $1" >&2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 04 02:52:25 UTC 2021
    - 3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/serviceexportcache_test.go

    // limitations under the License.
    
    package controller
    
    import (
    	"context"
    	"fmt"
    	"testing"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    	mcsapi "sigs.k8s.io/mcs-api/pkg/apis/v1alpha1"
    
    	"istio.io/istio/pilot/pkg/features"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. pkg/kube/watcher/configmapwatcher/configmapwatcher_test.go

    package configmapwatcher
    
    import (
    	"context"
    	"fmt"
    	"sync"
    	"testing"
    	"time"
    
    	. "github.com/onsi/gomega"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/istio/pkg/kube"
    )
    
    const (
    	configMapNamespace string = "istio-system"
    	configMapName      string = "watched"
    )
    
    func makeConfigMap(name, resourceVersion string) *v1.ConfigMap {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. 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)
Back to top