Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 449 for typed (0.09 sec)

  1. src/cmd/compile/internal/ssa/schedule.go

    		}
    	}
    
    	return order
    }
    
    // isFlagOp reports if v is an OP with the flag type.
    func (v *Value) isFlagOp() bool {
    	if v.Type.IsFlags() || v.Type.IsTuple() && v.Type.FieldType(1).IsFlags() {
    		return true
    	}
    	// PPC64 carry generators put their carry in a non-flag-typed register
    	// in their output.
    	switch v.Op {
    	case OpPPC64SUBC, OpPPC64ADDC, OpPPC64SUBCconst, OpPPC64ADDCconst:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. pkg/controller/tainteviction/taint_eviction.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apiserver/pkg/util/feature"
    	corev1informers "k8s.io/client-go/informers/core/v1"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/kubernetes/scheme"
    	v1core "k8s.io/client-go/kubernetes/typed/core/v1"
    	corelisters "k8s.io/client-go/listers/core/v1"
    	"k8s.io/client-go/tools/cache"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. architecture/ambient/ztunnel.md

    In our testing, even the most generous representations give custom types a 10x edge (in size, allocations, and CPU time) over Envoy types.
    In addition, they are more clear and strictly typed; using Envoy types would require us to put a lot of information in untyped `metadata` maps.
    
    With this in mind, Ztunnel supports two xDS resources: `Address` and `Authorization`.
    
    ### Address Type
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set.go

    	"k8s.io/klog/v2"
    )
    
    // controllerKind contains the schema.GroupVersionKind for this controller type.
    var controllerKind = apps.SchemeGroupVersion.WithKind("StatefulSet")
    
    // podKind contains the schema.GroupVersionKind for pods.
    var podKind = v1.SchemeGroupVersion.WithKind("Pod")
    
    // StatefulSetController controls statefulsets.
    type StatefulSetController struct {
    	// client interface
    	kubeClient clientset.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. pkg/kubelet/container/helpers_test.go

    	assert.Equal(t, false, actual)
    
    	var nilObj *v1.ObjectReference = nil
    	_, actual = innerEventRecorder.shouldRecordEvent(nilObj)
    	assert.Equal(t, false, actual, "should not panic if the typed nil was used, see https://github.com/kubernetes/kubernetes/issues/95552")
    }
    
    func TestHasWindowsHostProcessContainer(t *testing.T) {
    	trueVar := true
    	falseVar := false
    	const containerName = "container"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/deadcode.go

    	}
    }
    
    // methodsig is a typed method signature (name + type).
    type methodsig struct {
    	name string
    	typ  loader.Sym // type descriptor symbol of the function
    }
    
    // methodref holds the relocations from a receiver type symbol to its
    // method. There are three relocations, one for each of the fields in
    // the reflect.method struct: mtyp, ifn, and tfn.
    type methodref struct {
    	m   methodsig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. pkg/controller/resourcequota/resource_quota_controller.go

    	corev1client "k8s.io/client-go/kubernetes/typed/core/v1"
    	corelisters "k8s.io/client-go/listers/core/v1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/util/workqueue"
    	"k8s.io/controller-manager/pkg/informerfactory"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/controller"
    )
    
    // NamespacedResourcesFunc knows how to discover namespaced resources.
    type NamespacedResourcesFunc func() ([]*metav1.APIResourceList, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * ClosingFuture)}.
         *
         * @param <V1> the type returned by the first future
         * @param <V2> the type returned by the second future
         * @param <V3> the type returned by the third future
         * @param <V4> the type returned by the fourth future
         * @param <V5> the type returned by the fifth future
         * @param <U> the type returned by the function
         */
        public interface ClosingFunction5<
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    Usually, referencing a task by name is a fragile pattern and should be avoided.
    Although the task name is available on the `TaskProvider`, an effort should be made to use references from a strongly typed model instead.
    
    7. **Use the new task API as much as possible.** +
    Eagerly realizing some tasks may cause a cascade of other tasks to be realized.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    		route.Param(b.ws.PathParameter("name", "name of the "+b.kind).DataType("string"))
    	}
    
    	// Build consume media types
    	if httpMethod == "PATCH" {
    		supportedTypes := []string{
    			string(types.JSONPatchType),
    			string(types.MergePatchType),
    			string(types.ApplyPatchType),
    		}
    		route.Consumes(supportedTypes...)
    	} else {
    		route.Consumes(runtime.ContentTypeJSON, runtime.ContentTypeYAML)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top