Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for describeTo (0.22 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/extensions/v1beta1/types.go

    }
    
    // DEPRECATED 1.9 - This group version of IPBlock is deprecated by networking/v1/IPBlock.
    // IPBlock describes a particular CIDR (Ex. "192.168.1.0/24","2001:db8::/64") that is allowed
    // to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs
    // that should not be included within this rule.
    type IPBlock struct {
    	// CIDR is a string representing the IP Block
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/types.go

    	DeprecatedTemplateGeneration   = "deprecated.daemonset.template.generation"
    	StatefulSetPodNameLabel        = "statefulset.kubernetes.io/pod-name"
    )
    
    // ScaleSpec describes the attributes of a scale subresource
    type ScaleSpec struct {
    	// desired number of instances for the scaled object.
    	// +optional
    	Replicas int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top