Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1071 - 1080 of 1,123 for Nil (0.02 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // Optional duration in seconds the carp needs to terminate gracefully. May be decreased in delete request.
      // Value must be non-negative integer. The value zero indicates delete immediately.
      // If this value is nil, the default grace period will be used instead.
      // The grace period is the duration in seconds after the processes running in the carp are sent
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/pilot/status_test.go

    			err := sw.PrintAll(input)
    			if tt.wantErr {
    				assert.Error(t, err)
    			} else {
    				assert.NoError(t, err)
    			}
    			want, _ := os.ReadFile(tt.want)
    			if err := util.Compare(got.Bytes(), want); err != nil {
    				t.Error(err)
    			}
    		})
    	}
    }
    
    const clientConfigType = "type.googleapis.com/envoy.service.status.v3.ClientConfig"
    
    type clientConfigInput struct {
    	proxyID   string
    	clusterID string
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Aug 14 19:36:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. cmd/object-api-errors.go

    // handle all cases where we have known types of errors returned by
    // underlying storage layer.
    func toObjectErr(oerr error, params ...string) error {
    	if oerr == nil {
    		return nil
    	}
    
    	// Unwarp the error first
    	err := unwrapAll(oerr)
    
    	if err == context.Canceled {
    		return context.Canceled
    	}
    
    	switch err.Error() {
    	case errVolumeNotFound.Error():
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Aug 09 02:05:14 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. cmd/signature-v4-parser_test.go

    		// ErrMissingFields expected.
    		{
    			inputSignElement:      "SignedHeaders",
    			expectedSignedHeaders: nil,
    			expectedErrCode:       ErrMissingFields,
    		},
    		// Test case - 2.
    		// SignElement with missing "SigHeaderTag",ErrMissingSignHeadersTag expected.
    		{
    			inputSignElement:      "Sign=",
    			expectedSignedHeaders: nil,
    			expectedErrCode:       ErrMissingSignHeadersTag,
    		},
    		// Test case - 3.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // +optional
      optional int32 matchingPrecedence = 2;
    
      // `distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema.
      // `nil` specifies that the distinguisher is disabled and thus will always be the empty string.
      // +optional
      optional FlowDistinguisherMethod distinguisherMethod = 3;
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // that all host paths may be used.
      // +optional
      repeated AllowedHostPath allowedHostPaths = 17;
    
      // allowedFlexVolumes is an allowlist of Flexvolumes.  Empty or nil indicates that all
      // Flexvolumes may be used.  This parameter is effective only when the usage of the Flexvolumes
      // is allowed in the "volumes" field.
      // +optional
      repeated AllowedFlexVolume allowedFlexVolumes = 18;
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/events/v1/generated.proto

      // eventTime is the time when this Event was first observed. It is required.
      optional k8s.io.apimachinery.pkg.apis.meta.v1.MicroTime eventTime = 2;
    
      // series is data about the Event series this event represents or nil if it's a singleton Event.
      // +optional
      optional EventSeries series = 3;
    
      // reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/node/v1alpha1/generated.proto

      // +optional
      optional Overhead overhead = 2;
    
      // scheduling holds the scheduling constraints to ensure that pods running
      // with this RuntimeClass are scheduled to nodes that support it.
      // If scheduling is nil, this RuntimeClass is assumed to be supported by all
      // nodes.
      // +optional
      optional Scheduling scheduling = 3;
    }
    
    // Scheduling specifies the scheduling constraints for nodes supporting a
    // RuntimeClass.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

      repeated ClusterCIDR items = 2;
    }
    
    // ClusterCIDRSpec defines the desired state of ClusterCIDR.
    message ClusterCIDRSpec {
      // nodeSelector defines which nodes the config is applicable to.
      // An empty or nil nodeSelector selects all nodes.
      // This field is immutable.
      // +optional
      optional k8s.io.api.core.v1.NodeSelector nodeSelector = 1;
    
      // perNodeHostBits defines the number of host bits to be configured per node.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. cmd/http-tracer.go

    		}
    
    		// Calculate node name
    		nodeName := r.Host
    		if globalIsDistErasure {
    			nodeName = globalLocalNodeName
    		}
    		if host, port, err := net.SplitHostPort(nodeName); err == nil {
    			if port == "443" || port == "80" {
    				nodeName = host
    			}
    		}
    
    		// Calculate reqPath
    		reqPath := r.URL.RawPath
    		if reqPath == "" {
    			reqPath = r.URL.Path
    		}
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 17:13:00 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top