Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for Messages (0.18 sec)

  1. pkg/config/analysis/analyzers/deployment/services.go

    	matchingSvcs := make([]ServiceSpecWithName, 0)
    	d := r.Message.(*appsv1.DeploymentSpec)
    	deploymentNS := r.Metadata.FullName.Namespace.String()
    
    	c.ForEach(gvk.Service, func(r *resource.Instance) bool {
    		s := r.Message.(*core_v1.ServiceSpec)
    
    		sSelector := klabels.SelectorFromSet(s.Selector)
    		pLabels := klabels.Set(d.Template.Labels)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/node/v1beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/node/v1beta1";
    
    // Overhead structure represents the resource overhead associated with running a pod.
    message Overhead {
      // podFixed represents the fixed resource overhead associated with running a pod.
      // +optional
      map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> podFixed = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

    message ClusterTrustBundle {
      // metadata contains the object metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // spec contains the signer (if any) and trust anchors.
      optional ClusterTrustBundleSpec spec = 2;
    }
    
    // ClusterTrustBundleList is a collection of ClusterTrustBundle objects
    message ClusterTrustBundleList {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/mismatch.status.yaml.golden

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: GatewayClass
    metadata:
      creationTimestamp: null
      name: istio
      namespace: default
    spec: null
    status:
      conditions:
      - lastTransitionTime: fake
        message: Handled by Istio controller
        reason: Accepted
        status: "True"
        type: Accepted
      supportedFeatures:
      - HTTPRouteFeatureA
      - HTTPRouteFeatureB
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 520 bytes
    - Viewed (0)
  5. pilot/pkg/grpc/grpc.go

    		if s.Code() == codes.Canceled || s.Code() == codes.DeadlineExceeded {
    			return true
    		}
    		if s.Code() == codes.Unavailable && containsExpectedMessage(s.Message()) {
    			return true
    		}
    	}
    	// If this is not a gRPCStatus we should just error message.
    	if strings.Contains(err.Error(), "stream terminated by RST_STREAM with error code: NO_ERROR") {
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 04:27:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/externalcontrolplane/externalcontrolplane.go

    		}
    	}
    
    	c.ForEach(gvk.ValidatingWebhookConfiguration, func(resource *resource.Instance) bool {
    		webhookConfig := resource.Message.(*v1.ValidatingWebhookConfiguration)
    
    		// 1. ValidatingWebhookConfiguration: istio-validator or istiod-default-validator(default)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 16:48:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/util/intstr/generated.proto

    // accept a name or number.
    // TODO: Rename to Int32OrString
    //
    // +protobuf=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:openapi-gen=true
    message IntOrString {
      optional int64 type = 1;
    
      optional int32 intVal = 2;
    
      optional string strVal = 3;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. pilot/pkg/xds/deltatest.go

    			}
    		}
    	}
    }
    
    func applyDelta(message model.Resources, resp *discovery.DeltaDiscoveryResponse) model.Resources {
    	deleted := sets.New(resp.RemovedResources...)
    	byName := map[string]*discovery.Resource{}
    	for _, v := range resp.Resources {
    		byName[v.Name] = v
    	}
    	res := model.Resources{}
    	for _, m := range message {
    		if deleted.Contains(m.Name) {
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. tests/integration/security/filebased_tls_origination/destination_rule_tls_test.go

    )
    
    // TestDestinationRuleTls tests that MUTUAL tls mode is respected in DestinationRule.
    // This sets up a client and server with appropriate cert config and ensures we can successfully send a message.
    func TestDestinationRuleTls(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			ns := appNS
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. security/pkg/pki/util/san_test.go

    		}
    		if tc.expectedErrMsg != "" {
    			if err == nil {
    				t.Errorf("Case %q: no error message returned: want %s", id, tc.expectedErrMsg)
    			} else if tc.expectedErrMsg != err.Error() {
    				t.Errorf("Case %q: unexpected error message: want %s but got %s", id, tc.expectedErrMsg, err.Error())
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top