Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for rebind (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    using tensorflow::shape_inference::InferenceContext;
    using tensorflow::shape_inference::ShapeHandle;
    
    namespace mlir {
    namespace TF {
    namespace {
    
    // Compute a refined type between two types `lhs` and `rhs`, the result type
    // is always more refined (i.e. has more static information) than `lhs`
    // This method will actually merge the information contained in the
    // types, it is capable of refining:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    	_ *v1.Pod,
    	_ []*framework.NodeInfo,
    ) (hostPriorities *extenderv1.HostPriorityList, weight int64, err error) {
    	return nil, 0, nil
    }
    
    func (f *fakeExtender) Bind(binding *v1.Binding) error {
    	if f.isBinder {
    		if f.errBind {
    			return errors.New("bind error")
    		}
    		f.gotBind = true
    		return nil
    	}
    	return errors.New("not a binder")
    }
    
    func (f *fakeExtender) IsBinder() bool {
    	return f.isBinder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        Drop `shape_invariant` attribute from tf.While and tf.WhileRegion op. This
        would allow shape inference pass to further refine operand/result shapes of
        these ops. This is only safe to do when compiling to XLA.
      }];
    
      let constructor = "TF::CreateDropWhileShapeInvariantPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	if a1.built == a.Target {
    		a.built = a.Target
    		if !a.buggyInstall {
    			b.cleanup(a1)
    		}
    		// Whether we're smart enough to avoid a complete rebuild
    		// depends on exactly what the staleness and rebuild algorithms
    		// are, as well as potentially the state of the Go build cache.
    		// We don't really want users to be able to infer (or worse start depending on)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    					errs = AppendValidation(errs, fmt.Errorf("targetPort has no impact on Sidecars"))
    				}
    				bind := egress.GetBind()
    				captureMode := egress.GetCaptureMode()
    				errs = AppendValidation(errs, validateSidecarEgressPortBindAndCaptureMode(egress.Port, bind, captureMode))
    
    				if egress.Port.Number == 0 {
    					if _, found := udsMap[bind]; found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // The reported import path for a test binary is the import path of
    // the package followed by a ".test" suffix, as in "math/rand.test".
    // When building a test, it is sometimes necessary to rebuild certain
    // dependencies specially for that test (most commonly the tested
    // package itself). The reported import path of a package recompiled
    // for a particular test binary is followed by a space and the name of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    	testCases := []struct {
    		name       string
    		failureN   int
    		failureErr error
    		// Note that we can't just re-use the Request object across calls to c.Do
    		// because we need to rewind Body between calls.  (GetBody is only used to
    		// rewind Body on failure and redirects, not just because it's done.)
    		req       func() *Request
    		reqString string
    	}{
    		{
    			name: "IdempotentNoBodySomeWritten",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

      safe-bind-mount "${mountpoint}" "${bindpoint}"
    }
    
    # Bind mounts device at mountpoint to bindpoint
    function safe-bind-mount(){
      local mountpoint="${1}"
      local bindpoint="${2}"
    
      # Mount device to the mountpoint
      mkdir -p "${bindpoint}"
      echo "Binding '${mountpoint}' at '${bindpoint}'"
      mount --bind "${mountpoint}" "${bindpoint}"
      chmod a+w "${bindpoint}"
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		}
    	}()
    	q.Close()
    	wg.Wait()
    }
    
    // TestRecentlyTriedPodsGoBack tests that pods which are recently tried and are
    // unschedulable go behind other pods with the same priority. This behavior
    // ensures that an unschedulable pod does not block head of the queue when there
    // are frequent events that move pods to the active queue.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top