Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 155 for Discover (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/wrapper.go

    		Produces(mediaTypes...).
    		Consumes(mediaTypes...).
    		Writes(returnType))
    	return ws
    }
    
    // WrapAggregatedDiscoveryToHandler wraps a handler with an option to
    // emit the aggregated discovery by passing in the aggregated
    // discovery type in content negotiation headers: eg: (Accept:
    // application/json;v=v2;g=apidiscovery.k8s.io;as=APIGroupDiscoveryList)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. istioctl/pkg/version/version.go

    package version
    
    import (
    	"context"
    	"encoding/json"
    	"fmt"
    	"os"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	statusv3 "github.com/envoyproxy/go-control-plane/envoy/service/status/v3"
    	"github.com/spf13/cobra"
    	"github.com/spf13/pflag"
    	"google.golang.org/protobuf/types/known/structpb"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. istioctl/pkg/proxystatus/proxystatus_test.go

    			args:          strings.Split("serviceaccount/sleep", " "),
    			wantException: true,
    		},
    	}
    	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
    - 5.5K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/namespacecontroller_test.go

    	nsB := "nsB"
    
    	// Create a namespace with discovery selector enabled
    	createNamespace(t, client.Kube(), nsA, map[string]string{"discovery-selectors": "enabled"})
    	// Create a namespace without discovery selector enabled
    	createNamespace(t, client.Kube(), nsB, map[string]string{})
    	expectConfigMap(t, nc.configmaps, CACertNamespaceConfigMap, nsA, expectedData)
    	// config map should not be created for discovery selector disabled namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. pilot/pkg/xds/workload.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/util/protoconv"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/config/schema/kind"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top