Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for describeTo (0.18 sec)

  1. okhttp/src/test/java/okhttp3/EventListenerTest.kt

          assertThat(listener.recordedEventTypes()).doesNotContain("ResponseBodyEnd")
        }
      }
    
      private fun greaterThan(value: Long): Matcher<Long?> {
        return object : BaseMatcher<Long?>() {
          override fun describeTo(description: Description?) {
            description!!.appendText("> $value")
          }
    
          override fun matches(o: Any?): Boolean {
            return (o as Long?)!! > value
          }
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    	cmd := &cobra.Command{
    		Use:     "pod <pod>",
    		Aliases: []string{"po"},
    		Short:   "Describe pods and their Istio configuration [kube-only]",
    		Long: `Analyzes pod, its Services, DestinationRules, and VirtualServices and reports
    the configuration objects that affect that pod.`,
    		Example: `  istioctl experimental describe pod productpage-v1-c7765c886-7zzd4`,
    		RunE: func(cmd *cobra.Command, args []string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    	// StatefulSetPersistentVolumeClaimRetentionPolicy.
    	DeletePersistentVolumeClaimRetentionPolicyType PersistentVolumeClaimRetentionPolicyType = "Delete"
    )
    
    // StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs
    // created from the StatefulSet VolumeClaimTemplates.
    type StatefulSetPersistentVolumeClaimRetentionPolicy struct {
    	// WhenDeleted specifies what happens to PVCs created from StatefulSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/types.go

    	// +optional
    	ObjectSelector *metav1.LabelSelector
    	// ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches.
    	// The policy cares about an operation if it matches _any_ Rule.
    	// +optional
    	ResourceRules []NamedRuleWithOperations
    	// ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches.
      // The policy cares about an operation if it matches _any_ Rule.
      // +listType=atomic
      // +optional
      repeated NamedRuleWithOperations resourceRules = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches.
      // The policy cares about an operation if it matches _any_ Rule.
      // +listType=atomic
      // +optional
      repeated NamedRuleWithOperations resourceRules = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    	// ServiceUpdate describes a push triggered by a Service change
    	ServiceUpdate TriggerReason = "service"
    	// ProxyUpdate describes a push triggered by a change to an individual proxy (such as label change)
    	ProxyUpdate TriggerReason = "proxy"
    	// GlobalUpdate describes a push triggered by a change to global config, such as mesh config
    	GlobalUpdate TriggerReason = "global"
    	// AmbientUpdate describes a push triggered by a change to ambient mesh config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches.
    	// The policy cares about an operation if it matches _any_ Rule.
    	// +listType=atomic
    	// +optional
    	ResourceRules []NamedRuleWithOperations `json:"resourceRules,omitempty" protobuf:"bytes,3,rep,name=resourceRules"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches.
    	// The policy cares about an operation if it matches _any_ Rule.
    	// +listType=atomic
    	// +optional
    	ResourceRules []NamedRuleWithOperations `json:"resourceRules,omitempty" protobuf:"bytes,3,rep,name=resourceRules"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    // separate packages.
    package v1
    
    import (
    	"fmt"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // TypeMeta describes an individual object in an API response or request
    // with strings representing the type of the object and its API schema version.
    // Structures that are versioned or persisted should inline TypeMeta.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
Back to top