Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,054 for inter (0.06 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{29, "SIGPROF", "profiling Timer Expired"},
    	{30, "SIGXCPU", "cpu Limit Exceeded"},
    	{31, "SIGXFSZ", "file Size Limit Exceeded"},
    	{32, "SIGWAITING", "no runnable lwp"},
    	{33, "SIGLWP", "inter-lwp signal"},
    	{34, "SIGFREEZE", "checkpoint Freeze"},
    	{35, "SIGTHAW", "checkpoint Thaw"},
    	{36, "SIGCANCEL", "thread Cancellation"},
    	{37, "SIGLOST", "resource Lost"},
    	{38, "SIGXRES", "resource Control Exceeded"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/types.go

    		Gated:                   pqi.Gated,
    	}
    }
    
    // PodInfo is a wrapper to a Pod with additional pre-computed information to
    // accelerate processing. This information is typically immutable (e.g., pre-processed
    // inter-pod affinity selectors).
    type PodInfo struct {
    	Pod                        *v1.Pod
    	RequiredAffinityTerms      []AffinityTerm
    	RequiredAntiAffinityTerms  []AffinityTerm
    	PreferredAffinityTerms     []WeightedAffinityTerm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/interpodaffinity/scoring_test.go

    		},
    		// Test the symmetry cases for affinity, the difference between affinity and symmetry is not the pod wants to run together with some existing pods,
    		// but the existing pods have the inter pod affinity preference while the pod to schedule satisfy the preference.
    		{
    			name: "Affinity symmetry: considered only the preferredDuringSchedulingIgnoredDuringExecution in pod affinity symmetry",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 44.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/expr.go

    	typeAssertGen++
    	c := rttype.NewCursor(lsym, 0, rttype.TypeAssert)
    	c.Field("Cache").WritePtr(typecheck.LookupRuntimeVar("emptyTypeAssertCache"))
    	c.Field("Inter").WritePtr(reflectdata.TypeLinksym(target))
    	c.Field("CanFail").WriteBool(canFail)
    	objw.Global(lsym, int32(rttype.TypeAssert.Size()), obj.LOCAL)
    	lsym.Gotype = reflectdata.TypeLinksym(rttype.TypeAssert)
    	return lsym
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    func TestInterfaceGet(t *testing.T) {
    	var inter struct {
    		E any
    	}
    	inter.E = 123.456
    	v1 := ValueOf(&inter)
    	v2 := v1.Elem().Field(0)
    	assert(t, v2.Type().String(), "interface {}")
    	i2 := v2.Interface()
    	v3 := ValueOf(i2)
    	assert(t, v3.Type().String(), "float64")
    }
    
    func TestInterfaceValue(t *testing.T) {
    	var inter struct {
    		E any
    	}
    	inter.E = 123.456
    	v1 := ValueOf(&inter)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    how many dependencies you have between subprojects.
    A build whose execution time is dominated by a single subproject won't benefit much at all.
    Neither will a project with lots of inter-subproject dependencies.
    But most multi-subproject builds see a reduction in build times.
    
    === Visualize parallelism with build scans
    
    Build scans give you a visual timeline of task execution. In the following
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. src/go/types/infer.go

    // partially instantiated generic functions may be assigned
    // (incl. returned) to variables of function type and type
    // inference will attempt to infer the missing type arguments.
    // Available with go1.21.
    const enableReverseTypeInference = true // disable for debugging
    
    // infer attempts to infer the complete set of type arguments for generic function instantiation/call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        This pass converts the control outputs of a while loop body function to data
        outputs. Thus, inter iteration control dependencies are transformed to
        data dependencies. Since data dependencies can express which particular
        operations in the while loop body are dependent on which inputs, it captures
        inter iteration parallelism in while loop. Control dependencies on the other
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. pkg/apis/certificates/validation/validation_test.go

    			},
    		}, {
    			description: "valid, with signer name, with inter-block garbage",
    			bundle: &capi.ClusterTrustBundle{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "k8s.io:foo:abc",
    				},
    				Spec: capi.ClusterTrustBundleSpec{
    					SignerName:  "k8s.io/foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/infer.go

    // partially instantiated generic functions may be assigned
    // (incl. returned) to variables of function type and type
    // inference will attempt to infer the missing type arguments.
    // Available with go1.21.
    const enableReverseTypeInference = true // disable for debugging
    
    // infer attempts to infer the complete set of type arguments for generic function instantiation/call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top