Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 232 for Types (0.05 sec)

  1. plugin/pkg/admission/noderestriction/admission_test.go

    func makeTestPod(namespace, name, node string, mirror bool) (*api.Pod, *corev1.Pod) {
    	corePod := &api.Pod{}
    	corePod.Namespace = namespace
    	corePod.UID = types.UID("pod-uid")
    	corePod.Name = name
    	corePod.Spec.NodeName = node
    	v1Pod := &corev1.Pod{}
    	v1Pod.Namespace = namespace
    	v1Pod.UID = types.UID("pod-uid")
    	v1Pod.Name = name
    	v1Pod.Spec.NodeName = node
    	if mirror {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route_test.go

    	envoyroute "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	matcher "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    	. "github.com/onsi/gomega"
    	"google.golang.org/protobuf/types/known/durationpb"
    	"k8s.io/apimachinery/pkg/types"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core"
    	"istio.io/istio/pilot/pkg/networking/core/route"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    // The encoded public key is a SubjectPublicKeyInfo structure
    // (see RFC 5280, Section 4.1).
    //
    // The following key types are currently supported: *[rsa.PublicKey],
    // *[ecdsa.PublicKey], [ed25519.PublicKey] (not a pointer), and *[ecdh.PublicKey].
    // Unsupported key types result in an error.
    //
    // This kind of key is commonly encoded in PEM blocks of type "PUBLIC KEY".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    		metrics.JobFinishedNum.WithLabelValues(completionMode, "failed", finishedCond.Reason).Inc()
    	}
    	return true
    }
    
    func filterInUncountedUIDs(uncounted []types.UID, include sets.Set[string]) []types.UID {
    	var newUncounted []types.UID
    	for _, uid := range uncounted {
    		if include.Has(string(uid)) {
    			newUncounted = append(newUncounted, uid)
    		}
    	}
    	return newUncounted
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    	"google.golang.org/protobuf/types/known/durationpb"
    	"google.golang.org/protobuf/types/known/structpb"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/config/memory"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    			continue
    		}
    		n := inp.Name
    
    		// Param is spread across one or more registers. Walk through
    		// each piece to see whether we've seen an arg reg op for it.
    		types, offsets := inp.RegisterTypesAndOffsets()
    		for k, t := range types {
    			// Note: this recipe for creating a LocalSlot is designed
    			// to be compatible with the one used in expand_calls.go
    			// as opposed to decompose.go. The expand calls code just
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	requireImmutableNames bool
    	// requireOpenAPISchema requires an openapi V3 schema be specified
    	requireOpenAPISchema bool
    	// requireValidPropertyType requires property types specified in the validation schema to be valid openapi v3 types
    	requireValidPropertyType bool
    	// requireStructuralSchema indicates that any schemas present must be structural
    	requireStructuralSchema bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Futures.java

       *     different kind of exception, that exception itself. To avoid hiding bugs and other
       *     unrecoverable errors, callers should prefer more specific types, avoiding {@code
       *     Throwable.class} in particular.
       * @param fallback the {@link Function} to be called if {@code input} fails with the expected
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  9. src/go/printer/nodes.go

    			var name *ast.Ident // first name, or nil
    			if len(f.Names) > 0 {
    				name = f.Names[0]
    			}
    			if i > 0 {
    				// don't do a line break (min == 0) if we are printing a list of types
    				// TODO(gri) this doesn't work quite right if the list of types is
    				//           spread across multiple lines
    				min := 1
    				if prev != nil && name == prev {
    					min = 0
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. tests/migrate_test.go

    		t.Fatalf("failed to auto migrate, got error: %v", err)
    	}
    
    	columnTypes, err := DB.Table("user_migrate_columns").Migrator().ColumnTypes(&UserMigrateColumn{})
    	if err != nil {
    		t.Fatalf("failed to get column types, got error: %v", err)
    	}
    
    	for _, columnType := range columnTypes {
    		switch columnType.Name() {
    		case "name":
    			if length, _ := columnType.Length(); (fullSupported || length != 0) && length != 128 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
Back to top