Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 196 for discoveryv1 (0.22 sec)

  1. pilot/pkg/xds/discovery_test.go

    // limitations under the License.
    
    package xds
    
    import (
    	"context"
    	"fmt"
    	"reflect"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	uatomic "go.uber.org/atomic"
    	"google.golang.org/grpc"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/test/util/retry"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pkg/kube/version_test.go

    // limitations under the License.
    
    package kube
    
    import (
    	"fmt"
    	"testing"
    
    	kubeVersion "k8s.io/apimachinery/pkg/version"
    	fakediscovery "k8s.io/client-go/discovery/fake"
    )
    
    func TestIsAtLeastVersion(t *testing.T) {
    	tests := []struct {
    		name           string
    		clusterVersion uint
    		minorVersion   uint
    		want           bool
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 23:16:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/zz_generated.deepcopy.go

    		*out = new(v1.Duration)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Discovery.
    func (in *Discovery) DeepCopy() *Discovery {
    	if in == nil {
    		return nil
    	}
    	out := new(Discovery)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder.go

    func (cb *ClusterBuilder) normalizeClusters(clusters []*discovery.Resource) []*discovery.Resource {
    	// resolve cluster name conflicts. there can be duplicate cluster names if there are conflicting service definitions.
    	// for any clusters that share the same name the first cluster is kept and the others are discarded.
    	have := sets.String{}
    	out := make([]*discovery.Resource, 0, len(clusters))
    	for _, c := range clusters {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster.go

    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	endpoint "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/protobuf/types/known/structpb"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. pilot/pkg/xds/bench_test.go

    package xds_test
    
    import (
    	"bytes"
    	"fmt"
    	"os"
    	"path"
    	"strconv"
    	"strings"
    	"testing"
    	"text/template"
    	"time"
    
    	"github.com/Masterminds/sprig/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    	security "istio.io/api/security/v1beta1"
    	"istio.io/api/type/v1beta1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. pilot/pkg/xds/xdsgen.go

    package xds
    
    import (
    	"encoding/json"
    	"strconv"
    	"strings"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/util"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/lazy"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluationSchema/FixedTypeDiscovery.kt

    import kotlin.reflect.KClass
    
    
    /**
     * Utility [TypeDiscovery] implementation that allows introducing [discoverClasses] as soon as [keyClass] is encountered in type discovery.
     */
    internal
    class FixedTypeDiscovery(private val keyClass: KClass<*>, private val discoverClasses: List<KClass<*>>) : TypeDiscovery {
        override fun getClassesToVisitFrom(kClass: KClass<*>): Iterable<KClass<*>> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 17:51:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    func ValidateJoinConfiguration(c *kubeadm.JoinConfiguration) field.ErrorList {
    	allErrs := field.ErrorList{}
    	allErrs = append(allErrs, ValidateDiscovery(&c.Discovery, field.NewPath("discovery"))...)
    	allErrs = append(allErrs, ValidateNodeRegistrationOptions(&c.NodeRegistration, field.NewPath("nodeRegistration"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/TypeSafeProjectAccessorsSchemaBuildingComponent.kt

     * * in the [ProjectTopLevelReceiver] type, introduces a `projects` property of type `RootProjectAccessor`;
     * * brings the `RootProjectAccessor` type into type discovery, and
     * * ensures type discovery going recursively over the generated typesafe accessor containers (see [TypesafeProjectAccessorTypeDiscovery]);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top