Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 592 for disovery (0.15 sec)

  1. istioctl/pkg/writer/pilot/status_test.go

    package pilot
    
    import (
    	"bytes"
    	"encoding/json"
    	"os"
    	"testing"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	status "github.com/envoyproxy/go-control-plane/envoy/service/status/v3"
    	"google.golang.org/protobuf/types/known/anypb"
    
    	"istio.io/istio/pilot/pkg/model"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    	restMapperLock sync.Mutex
    
    	discoveryClient     discovery.CachedDiscoveryInterface
    	discoveryClientLock sync.Mutex
    
    	// If set to true, will use persistent client config, rest mapper, discovery client, and
    	// propagate them to the places that need them, rather than
    	// instantiating them multiple times.
    	usePersistentConfig bool
    	// Allows increasing burst used for discovery, this is useful
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller_test.go

    			Labels: map[string]string{
    				discovery.LabelServiceName: "something-else",
    				discovery.LabelManagedBy:   controllerName,
    			},
    		},
    		AddressType: discovery.AddressTypeIPv4,
    	}, {
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "not-matching-2",
    			Namespace: ns,
    			Labels: map[string]string{
    				discovery.LabelServiceName: serviceName,
    				discovery.LabelManagedBy:   "something-else",
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  4. Makefile.core.mk

    	cp manifests/charts/istio-control/istio-discovery/files/injection-template.yaml manifests/charts/istiod-remote/files
    	cp manifests/charts/istio-control/istio-discovery/files/gateway-injection-template.yaml manifests/charts/istiod-remote/files
    	cp manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml manifests/charts/istiod-remote/templates
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apidiscovery/v2/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller_test.go

    		FakeResourceManager: aggregated.NewFakeResourceManager(),
    		versionDiscoveryHandler: versionDiscoveryHandler{
    			discovery: make(map[schema.GroupVersion]*discovery.APIVersionHandler),
    		},
    		groupDiscoveryHandler: groupDiscoveryHandler{
    			discovery: make(map[string]*discovery.APIGroupHandler),
    		},
    	}
    
    	return env
    }
    
    func TestResourceManagerExistingCRD(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/discovery/token/token_test.go

    kind: Config
    preferences: {}
    users: null
    `
    	)
    
    	tests := []struct {
    		name                     string
    		tokenID                  string
    		tokenSecret              string
    		cfg                      *kubeadmapi.Discovery
    		configMap                *fakeConfigMap
    		delayedJWSSignaturePatch bool
    		expectedError            bool
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/number_generated_rules_test.go

    	baseEp := netutils.BigForIP(netutils.ParseIPSloppy("172.16.0.1"))
    	epPort := 8080
    
    	eps := &discovery.EndpointSlice{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "ep",
    			Namespace: "namespace",
    		},
    		AddressType: discovery.AddressTypeIPv4,
    		Endpoints:   []discovery.Endpoint{},
    		Ports: []discovery.EndpointPort{{
    			Name:     ptr.To(fmt.Sprintf("%d", epPort)),
    			Port:     ptr.To(int32(epPort)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. pkg/istio-agent/xds_proxy_test.go

    func stream(t *testing.T, conn *grpc.ClientConn) discovery.AggregatedDiscoveryService_StreamAggregatedResourcesClient {
    	t.Helper()
    	adsClient := discovery.NewAggregatedDiscoveryServiceClient(conn)
    	downstream, err := adsClient.StreamAggregatedResources(ctx)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return downstream
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/workload_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds_test
    
    import (
    	"context"
    	"testing"
    	"time"
    
    	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"
    
    	"istio.io/api/security/v1beta1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top