Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 926 for typeA (0.03 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      bool passed() const { return type_ == kSuccess; }
    
      // Returns true iff the test part failed.
      bool failed() const { return type_ != kSuccess; }
    
      // Returns true iff the test part non-fatally failed.
      bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
    
      // Returns true iff the test part fatally failed.
      bool fatally_failed() const { return type_ == kFatalFailure; }
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. src/database/sql/driver/types.go

    		return rv.Bool(), nil
    	case reflect.Slice:
    		ek := rv.Type().Elem().Kind()
    		if ek == reflect.Uint8 {
    			return rv.Bytes(), nil
    		}
    		return nil, fmt.Errorf("unsupported type %T, a slice of %s", v, ek)
    	case reflect.String:
    		return rv.String(), nil
    	}
    	return nil, fmt.Errorf("unsupported type %T, a %s", v, rv.Kind())
    }
    
    type decimalDecompose interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:30:20 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    }
    
    // Arg represents an argument with a name and a value.
    type Arg struct {
    	Name  string `json:"name"`
    	Value string `json:"value"`
    }
    
    // EnvVar represents an environment variable present in a Container.
    type EnvVar struct {
    	corev1.EnvVar `json:",inline"`
    }
    
    // EncryptionAlgorithmType can define an asymmetric encryption algorithm type.
    type EncryptionAlgorithmType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/output/types.go

    // BootstrapToken represents information for the bootstrap token output produced by kubeadm
    type BootstrapToken struct {
    	metav1.TypeMeta
    
    	bootstraptokenv1.BootstrapToken
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Images represents information for the output produced by 'kubeadm config images list'
    type Images struct {
    	metav1.TypeMeta
    
    	Images []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pkg/apis/storagemigration/types.go

    	// Indicates that the migration has failed.
    	MigrationFailed MigrationConditionType = "Failed"
    )
    
    // Describes the state of a migration at a certain point.
    type MigrationCondition struct {
    	// Type of the condition.
    	Type MigrationConditionType
    	// Status of the condition, one of True, False, Unknown.
    	Status corev1.ConditionStatus
    	// The last time this condition was updated.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. pkg/apis/batch/types.go

    }
    
    // PodFailurePolicyOnPodConditionsPattern describes a pattern for matching
    // an actual pod condition type.
    type PodFailurePolicyOnPodConditionsPattern struct {
    	// Specifies the required Pod condition type. To match a pod condition
    	// it is required that specified type equals the pod condition type.
    	Type api.PodConditionType
    	// Specifies the required Pod condition status. To match a pod condition
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authorization/v1/types.go

    	// +optional
    	Version string `json:"version,omitempty" protobuf:"bytes,4,opt,name=version"`
    	// Resource is one of the existing resource types.  "*" means all.
    	// +optional
    	Resource string `json:"resource,omitempty" protobuf:"bytes,5,opt,name=resource"`
    	// Subresource is one of the existing resource types.  "" means none.
    	// +optional
    	Subresource string `json:"subresource,omitempty" protobuf:"bytes,6,opt,name=subresource"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v1/types.go

    type MetricStatus struct {
    	// type is the type of metric source.  It will be one of "ContainerResource",
    	// "External", "Object", "Pods" or "Resource", each corresponds to a matching field in the object.
    	// Note: "ContainerResource" type is available on when the feature-gate
    	// HPAContainerMetrics is enabled
    	Type MetricSourceType `json:"type" protobuf:"bytes,1,name=type"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1beta1/types.go

    }
    
    // RoleRef contains information that points to the role being used
    type RoleRef struct {
    	// APIGroup is the group for the resource being referenced
    	APIGroup string `json:"apiGroup" protobuf:"bytes,1,opt,name=apiGroup"`
    	// Kind is the type of resource being referenced
    	Kind string `json:"kind" protobuf:"bytes,2,opt,name=kind"`
    	// Name is the name of resource being referenced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/policy/v1/types.go

    	//                   disruptions are provided by the disruptionsAllowed property.
    	//
    	// +optional
    	// +patchMergeKey=type
    	// +patchStrategy=merge
    	// +listType=map
    	// +listMapKey=type
    	Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,7,rep,name=conditions"`
    }
    
    const (
    	// DisruptionAllowedCondition is a condition set by the disruption controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top