Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 235 for Discover (0.16 sec)

  1. pkg/kubectl/.import-restrictions

          - k8s.io/kubernetes/pkg/apis/core/install
          - k8s.io/kubernetes/pkg/apis/core/v1
          - k8s.io/kubernetes/pkg/apis/discovery
          - k8s.io/kubernetes/pkg/apis/discovery/install
          - k8s.io/kubernetes/pkg/apis/discovery/v1alpha1
          - k8s.io/kubernetes/pkg/apis/discovery/v1beta1
          - k8s.io/kubernetes/pkg/apis/events
          - k8s.io/kubernetes/pkg/apis/events/install
          - k8s.io/kubernetes/pkg/apis/events/v1beta1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 02:44:42 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. istioctl/pkg/internaldebug/internal-debug_test.go

    		{ // case 2, with Istiod instance
    			args:           []string{"adsz"},
    			expectedString: "",
    		},
    	}
    	multixds.GetXdsResponse = func(_ *discovery.DiscoveryRequest, _ string, _ string, _ clioptions.CentralControlPlaneOptions, _ []grpc.DialOption,
    	) (*discovery.DiscoveryResponse, error) {
    		return &discovery.DiscoveryResponse{}, nil
    	}
    	t.Cleanup(func() {
    		multixds.GetXdsResponse = xds.GetXdsResponse
    	})
    
    	for i, c := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/autoscaling.go

    	hpaClient := controllerContext.ClientBuilder.ClientOrDie("horizontal-pod-autoscaler")
    
    	apiVersionsGetter := custom_metrics.NewAvailableAPIsGetter(hpaClient.Discovery())
    	// invalidate the discovery information roughly once per resync interval our API
    	// information is *at most* two resync intervals old.
    	go custom_metrics.PeriodicallyInvalidate(
    		apiVersionsGetter,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 01:37:36 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. manifests/charts/README.md

    ```bash
    iop istio-control istio-discovery $IBASE/istio-control/istio-discovery \
                --set global.istioNamespace=istio-system
    
    # Second istio-discovery, using master version of istio
    TAG=latest HUB=gcr.io/istio-testing iop istio-master istio-discovery-master $IBASE/istio-control/istio-discovery \
                --set policy.enable=false \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/completion.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package apiserver
    
    import (
    	"k8s.io/apiserver/pkg/endpoints/discovery"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    )
    
    type completedConfig struct {
    	Generic genericapiserver.CompletedConfig
    	*Extra
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 06:13:43 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. pilot/pkg/xds/lds.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/config/schema/kind"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/negotiation.go

    )
    
    // Interface is from "k8s.io/apiserver/pkg/endpoints/handlers/negotiation"
    
    // DiscoveryEndpointRestrictions allows requests to /apis to provide a Content Negotiation GVK for aggregated discovery.
    var DiscoveryEndpointRestrictions = discoveryEndpointRestrictions{}
    
    type discoveryEndpointRestrictions struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta3/defaults.go

    		SetDefaults_APIEndpoint(&obj.LocalAPIEndpoint)
    	}
    }
    
    // SetDefaults_Discovery assigns default values for the discovery process
    func SetDefaults_Discovery(obj *Discovery) {
    	if len(obj.TLSBootstrapToken) == 0 && obj.BootstrapToken != nil {
    		obj.TLSBootstrapToken = obj.BootstrapToken.Token
    	}
    
    	if obj.Timeout == nil {
    		obj.Timeout = &metav1.Duration{
    			Duration: DefaultDiscoveryTimeout,
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. pilot/pkg/xds/debuggen.go

    // limitations under the License.
    
    package xds
    
    import (
    	"bytes"
    	"encoding/json"
    	"net/http"
    	"net/url"
    	"strconv"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/status"
    	anypb "google.golang.org/protobuf/types/known/anypb"
    
    	"istio.io/istio/pilot/pkg/model"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 18:51:52 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    // SetDefaults_Discovery assigns default values for the discovery process
    func SetDefaults_Discovery(obj *Discovery) {
    	if len(obj.TLSBootstrapToken) == 0 && obj.BootstrapToken != nil {
    		obj.TLSBootstrapToken = obj.BootstrapToken.Token
    	}
    
    	if obj.File != nil {
    		SetDefaults_FileDiscovery(obj.File)
    	}
    }
    
    // SetDefaults_FileDiscovery assigns default values for file based discovery
    func SetDefaults_FileDiscovery(obj *FileDiscovery) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top