Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 686 for discoveryv1 (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/legacy.go

    	"k8s.io/apiserver/pkg/endpoints/handlers/responsewriters"
    )
    
    // legacyRootAPIHandler creates a webservice serving api group discovery.
    type legacyRootAPIHandler struct {
    	// addresses is used to build cluster IPs for discovery.
    	addresses  Addresses
    	apiPrefix  string
    	serializer runtime.NegotiatedSerializer
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 22:44:49 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion.go

    func Convert_kubeadm_JoinConfiguration_To_v1beta3_JoinConfiguration(in *kubeadm.JoinConfiguration, out *JoinConfiguration, s conversion.Scope) error {
    	// Migrate the discovery timeout.
    	out.Discovery.Timeout = in.Timeouts.Discovery.DeepCopy()
    	return autoConvert_kubeadm_JoinConfiguration_To_v1beta3_JoinConfiguration(in, out, s)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. pkg/adsc/adsc.go

    	return string(out)
    }
    
    func ConfigInitialRequests() []*discovery.DiscoveryRequest {
    	out := make([]*discovery.DiscoveryRequest, 0, len(collections.Pilot.All())+1)
    	out = append(out, &discovery.DiscoveryRequest{
    		TypeUrl: gvk.MeshConfig.String(),
    	})
    	for _, sch := range collections.Pilot.All() {
    		out = append(out, &discovery.DiscoveryRequest{
    			TypeUrl: sch.GroupVersionKind().String(),
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// freshness marks whether a group version's discovery document is up to date.
    	// "Current" indicates the discovery document was recently
    	// refreshed. "Stale" indicates the discovery document could not
    	// be retrieved and the returned discovery document may be
    	// significantly out of date. Clients that require the latest
    	// version of the discovery information be retrieved before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/apigen/apigen.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package apigen
    
    import (
    	"strings"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pilot/pkg/serviceregistry/serviceentry"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:01:38 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. pkg/apis/discovery/v1beta1/conversion.go

    limitations under the License.
    */
    
    package v1beta1
    
    import (
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/api/discovery/v1beta1"
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/kubernetes/pkg/apis/discovery"
    )
    
    func Convert_v1beta1_Endpoint_To_discovery_Endpoint(in *v1beta1.Endpoint, out *discovery.Endpoint, s conversion.Scope) error {
    	if err := autoConvert_v1beta1_Endpoint_To_discovery_Endpoint(in, out, s); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 20:02:41 UTC 2021
    - 3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // freshness marks whether a group version's discovery document is up to date.
      // "Current" indicates the discovery document was recently
      // refreshed. "Stale" indicates the discovery document could not
      // be retrieved and the returned discovery document may be
      // significantly out of date. Clients that require the latest
      // version of the discovery information be retrieved before
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. pkg/istio-agent/tap_proxy.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package istioagent
    
    import (
    	"fmt"
    	"strings"
    	"time"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/reflection"
    
    	istiogrpc "istio.io/istio/pilot/pkg/grpc"
    	istiokeepalive "istio.io/istio/pkg/keepalive"
    	"istio.io/istio/pkg/log"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. pkg/controller/garbagecollector/garbagecollector.go

    			metrics.GarbageCollectorResourcesSyncError.Inc()
    			return
    		}
    		if groupLookupFailures, isLookupFailure := discovery.GroupDiscoveryFailedErrorGroups(err); isLookupFailure {
    			// In partial discovery cases, preserve existing synced informers for resources in the failed groups, so resyncMonitors will only add informers for newly seen resources
    			for k, v := range oldResources {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  10. pilot/pkg/xds/deltatest.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	"fmt"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    
    	"istio.io/istio/pilot/pkg/model"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/slices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top