Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 234 for discoveryv1 (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    === Daemon JVM discovery
    
    To locate a compatible JVM installation, Gradle re-uses the mechanism provided by the <<toolchains.adoc#toolchains,Java Toolchains>> feature.
    This feature is used to locate a JVM installation that matches the criteria specified in the `gradle/gradle-daemon-jvm.properties` file.
    
    NOTE: Currently, the _daemon JVM discovery_ does not support auto-provisioning of new JVM installations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pkg/proxy/endpointschangetracker.go

    import (
    	"sync"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	discovery "k8s.io/api/discovery/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/tools/events"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/proxy/metrics"
    )
    
    var supportedEndpointSliceAddressTypes = sets.New[discovery.AddressType](
    	discovery.AddressTypeIPv4,
    	discovery.AddressTypeIPv6,
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.deepcopy.go

    		*out = new(FileDiscovery)
    		**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
    - 24.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    	var tests = []struct {
    		s        *kubeadmapi.JoinConfiguration
    		expected bool
    	}{
    		{&kubeadmapi.JoinConfiguration{}, false},
    		{&kubeadmapi.JoinConfiguration{
    			CACertPath: "/some/cert.crt",
    			Discovery: kubeadmapi.Discovery{
    				BootstrapToken: &kubeadmapi.BootstrapTokenDiscovery{
    					Token: "abcdef.1234567890123456@foobar",
    				},
    				File: &kubeadmapi.FileDiscovery{
    					KubeConfigPath: "foo",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. pilot/pkg/xds/ecds_test.go

    	"reflect"
    	"testing"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	wasm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/wasm/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    
    	extensions "istio.io/api/extensions/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. pilot/pkg/xds/sds.go

    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	envoytls "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/protobuf/types/known/anypb"
    	"google.golang.org/protobuf/types/known/durationpb"
    
    	mesh "istio.io/api/mesh/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apimachinery/pkg/watch"
    	"k8s.io/apiserver/pkg/storage/names"
    	"k8s.io/client-go/discovery"
    	"k8s.io/client-go/dynamic"
    	"k8s.io/client-go/rest"
    	"k8s.io/client-go/restmapper"
    	"k8s.io/client-go/scale"
    )
    
    const (
    	noxuInstanceNum int64 = 9223372036854775807
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top