Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,074 for Types (0.17 sec)

  1. staging/src/k8s.io/api/networking/v1beta1/types.go

    	//   the IngressClass. Implementations can treat this as a separate PathType
    	//   or treat it identically to Prefix or Exact path types.
    	// Implementations are required to support all path types.
    	// Defaults to ImplementationSpecific.
    	PathType *PathType `json:"pathType,omitempty" protobuf:"bytes,3,opt,name=pathType"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/types.go

    }
    
    // FieldTypeMap constructs a map of the field and object types nested within a given type.
    func FieldTypeMap(path string, t *DeclType) map[string]*DeclType {
    	if t.IsObject() && t.TypeName() != "object" {
    		path = t.TypeName()
    	}
    	types := make(map[string]*DeclType)
    	buildDeclTypes(path, t, types)
    	return types
    }
    
    func buildDeclTypes(path string, t *DeclType, types map[string]*DeclType) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/discovery/v1beta1/types.go

    	// addressType specifies the type of address carried by this EndpointSlice.
    	// All addresses in this slice must be the same type. This field is
    	// immutable after creation. The following address types are currently
    	// supported:
    	// * IPv4: Represents an IPv4 Address.
    	// * IPv6: Represents an IPv6 Address.
    	// * FQDN: Represents a Fully Qualified Domain Name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1/types.go

    	// addressType specifies the type of address carried by this EndpointSlice.
    	// All addresses in this slice must be the same type. This field is
    	// immutable after creation. The following address types are currently
    	// supported:
    	// * IPv4: Represents an IPv4 Address.
    	// * IPv6: Represents an IPv6 Address.
    	// * FQDN: Represents a Fully Qualified Domain Name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

            }
        }
    
        /**
         * Returns the most common type among given types
         */
        public static Type getUppermostType(Type[] types) {
            Type result = types[0];
            for (int i = 1; i < types.length; i++) {
                Type type = types[i];
                if (isAssignable(type, result)) {
                    result = type;
                    continue;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. pkg/kubelet/types/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package types
    
    import (
    	"net/http"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/cri-client/pkg/logs"
    )
    
    // TODO: Reconcile custom types in kubelet/types and this subpackage
    
    // HTTPDoer encapsulates http.Do functionality
    type HTTPDoer interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/types.go

    			types.Int16,
    			types.Int32,
    			types.Int64,
    			types.Uint,
    			types.Uint8,
    			types.Uint16,
    			types.Uint32,
    			types.Uint64,
    			types.Uintptr:
    			return m.t&argInt != 0
    
    		case types.UntypedFloat,
    			types.Float32,
    			types.Float64:
    			return m.t&argFloat != 0
    
    		case types.UntypedComplex,
    			types.Complex64,
    			types.Complex128:
    			return m.t&argComplex != 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. pkg/proto/types.go

    // limitations under the License.
    
    package proto
    
    import (
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    )
    
    var (
    	// BoolTrue is a bool true pointer of types.BoolValue.
    	BoolTrue = &wrappers.BoolValue{
    		Value: true,
    	}
    
    	// BoolFalse is a bool false pointer of types.BoolValue.
    	BoolFalse = &wrappers.BoolValue{
    		Value: false,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 19 21:53:59 UTC 2021
    - 902 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	// +optional
    	Transport *Transport `json:"transport,omitempty"`
    }
    
    // ProtocolType is a set of valid values for Connection.ProtocolType
    type ProtocolType string
    
    // Valid types for ProtocolType for konnectivity server
    const (
    	// Use HTTPConnect to connect to konnectivity server
    	ProtocolHTTPConnect ProtocolType = "HTTPConnect"
    	// Use grpc to connect to konnectivity server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/Types.java

    import java.util.ArrayDeque;
    import java.util.Collection;
    import java.util.HashSet;
    import java.util.Queue;
    import java.util.Set;
    
    public class Types {
        private static final Collection<Class<?>> OBJECT_TYPE = ImmutableList.<Class<?>>of(Object.class);
    
        /**
         * Visits all types in a type hierarchy in breadth-first order, super-classes first and then implemented interfaces.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top