Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for type_ (0.09 sec)

  1. staging/src/k8s.io/api/apps/v1beta2/types.go

    // necessary to perform the update for the indicated strategy.
    type StatefulSetUpdateStrategy struct {
    	// Type indicates the type of the StatefulSetUpdateStrategy.
    	// Default is RollingUpdate.
    	// +optional
    	Type StatefulSetUpdateStrategyType `json:"type,omitempty" protobuf:"bytes,1,opt,name=type,casttype=StatefulSetStrategyType"`
    	// RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/types.go

    	// +optional
    	// +listType=map
    	// +listMapKey=type
    	Conditions []metav1.Condition
    }
    
    // ValidatingAdmissionPolicyConditionType is the condition type of admission validation policy.
    type ValidatingAdmissionPolicyConditionType string
    
    // TypeChecking contains results of type checking the expressions in the
    // ValidatingAdmissionPolicy
    type TypeChecking struct {
    	// The type checking warnings for each expression.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    // +protobuf=false
    type TableColumnDefinition struct {
    	// name is a human readable name for the column.
    	Name string `json:"name"`
    	// type is an OpenAPI type definition for this column, such as number, integer, string, or
    	// array.
    	// See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more.
    	Type string `json:"type"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  4. src/reflect/type.go

    	// The string representation may use shortened package names
    	// (e.g., base64 instead of "encoding/base64") and is not
    	// guaranteed to be unique among types. To test for type identity,
    	// compare the Types directly.
    	String() string
    
    	// Kind returns the specific kind of this type.
    	Kind() Kind
    
    	// Implements reports whether the type implements the interface type u.
    	Implements(u Type) bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    //   - Types[TANY] is the placeholder "any" type recognized by SubstArgTypes.
    //   - Types[TBLANK] represents the blank variable's type.
    //   - Types[TINTER] is the canonical "interface{}" type.
    //   - Types[TNIL] represents the predeclared "nil" value's type.
    //   - Types[TUNSAFEPTR] is package unsafe's Pointer type.
    var Types [NTYPE]*Type
    
    var (
    	// Predeclared alias types. These are actually created as distinct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/crdclient/types.gen.go

    		}, metav1.UpdateOptions{})
    	default:
    		return nil, fmt.Errorf("unsupported type: %v", cfg.GroupVersionKind)
    	}
    }
    
    func patch(c kube.Client, orig config.Config, origMeta metav1.ObjectMeta, mod config.Config, modMeta metav1.ObjectMeta, typ types.PatchType) (metav1.Object, error) {
    	if orig.GroupVersionKind != mod.GroupVersionKind {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  7. src/net/dnsclient_unix_test.go

    			ID:       q.ID,
    			Response: true,
    		},
    		Questions: q.Questions,
    	}
    	if len(q.Questions) == 1 && q.Questions[0].Type == dnsmessage.TypeA {
    		r.Answers = []dnsmessage.Resource{
    			{
    				Header: dnsmessage.ResourceHeader{
    					Name:   q.Questions[0].Name,
    					Type:   dnsmessage.TypeA,
    					Class:  dnsmessage.ClassINET,
    					Length: 4,
    				},
    				Body: &dnsmessage.AResource{
    					A: TestAddr,
    				},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.DefaultTask.doLast(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (DefaultTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      ::testing::internal::ScopedTrace GTEST_CONCAT_TOKEN_(gtest_trace_, __LINE__)(\
        __FILE__, __LINE__, ::testing::Message() << (message))
    
    // Compile-time assertion for type equality.
    // StaticAssertTypeEq<type1, type2>() compiles iff type1 and type2 are
    // the same type.  The value it returns is not interesting.
    //
    // Instead of making StaticAssertTypeEq a class template, we make it a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/api_test.go

    	}{
    		// void
    		{`package n0; func f() { f() }`, `f()`, `void`},
    
    		// types
    		{`package t0; type _ int`, `int`, `type`},
    		{`package t1; type _ []int`, `[]int`, `type`},
    		{`package t2; type _ func()`, `func()`, `type`},
    		{`package t3; type _ func(int)`, `int`, `type`},
    		{`package t3; type _ func(...int)`, `...int`, `type`},
    
    		// built-ins
    		{`package b0; var _ = len("")`, `len`, `builtin`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
Back to top