Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for aligned (0.21 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      // Create a temporary parallel_execute. This is temporary because the result
      // type is not determined until after it is filled. The parallel_execute has
      // `num_host_regions` assigned to hosts and 1 region for the Device cluster.
      // In the ordinary outside compilation case `num_host_regions` is 1 and in the
      // `map_outside_compilation` case `num_host_regions == num_cores_per_replica`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    //
    //go:linkname writeBarrier
    var writeBarrier struct {
    	enabled bool    // compiler emits a check of this before calling write barrier
    	pad     [3]byte // compiler uses 32-bit load for "enabled" field
    	alignme uint64  // guarantee alignment so that compiler can use a 32 or 64-bit load
    }
    
    // gcBlackenEnabled is 1 if mutator assists and background mark
    // workers are allowed to blacken objects. This must only be set when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    	frame.fp = 0
    
    	// On link register architectures, sighandler saves the LR on stack
    	// before faking a call.
    	if usesLR && injectedCall {
    		x := *(*uintptr)(unsafe.Pointer(frame.sp))
    		frame.sp += alignUp(sys.MinFrameSize, sys.StackAlign)
    		f = findfunc(frame.pc)
    		frame.fn = f
    		if !f.valid() {
    			frame.pc = x
    		} else if funcspdelta(f, frame.pc) == 0 {
    			frame.lr = x
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //
      // If an administrator expects that any of these conditions may become true in
      // the future, they should ensure their meshes have different Mesh IDs
      // assigned.
      //
      // Within a multicluster mesh, each cluster must be (manually or auto)
      // configured to have the same Mesh ID value. If an existing cluster 'joins' a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

    								Check: check.BodyContains(`Hostname=uncaptured-v`), // can hit v1 or v2
    							})
    						})
    				})
    			}
    		})
    }
    
    // Ambient ServiceEntry support for auto assigned vips is lacking for now, but planned.
    // for more, see https://github.com/istio/istio/pull/45621#discussion_r1254970579
    func TestServiceEntryDNSWithAutoAssign(t *testing.T) {
    	framework.NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	// Still healthy
    	s.assertWorkloads(t, "", workloadapi.WorkloadStatus_HEALTHY, "pod1")
    	// Unhealthy
    	s.assertWorkloads(t, "", workloadapi.WorkloadStatus_UNHEALTHY, "pod2", "pod3")
    	// pod3 is pending but have be assigned IP
    	// pod4 is pending and not have IP
    }
    
    func TestAddressInformation(t *testing.T) {
    	s := newAmbientTestServer(t, testC, testNW)
    
    	// Add 2 pods with the "a" label, and one without.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// therefore are "<namespace>/<name>".
    	//
    	// This is necessary to ensure that reconstructing the resource usage
    	// at the start of a pod scheduling cycle doesn't reuse the resources
    	// assigned to such a claim. Alternatively, claim allocation state
    	// could also get tracked across pod scheduling cycles, but that
    	// - adds complexity (need to carefully sync state with informer events
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top