Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for Mounts (0.11 sec)

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

          auto shape = llvm::to_vector<4>(inputType.getShape());
          llvm::SmallVector<int64_t, 4> bounds(shape.begin(), shape.end());
          // Mark the dim as dynamic dim.
          shape[0] = ShapedType::kDynamic;
          auto extensions =
              mhlo::TypeExtensionsAttr::get(func->getContext(), bounds);
          auto resultType =
              RankedTensorType::get(shape, inputType.getElementType(), extensions);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/goroot_executable_trimpath.txt

    stderr '^go: cannot find GOROOT directory: ''go'' binary is trimmed and GOROOT is not set$'
    ! stderr 'GOPATH set to GOROOT'
    
    # Relocated Tree:
    # If the binary is sitting in a bin dir next to ../pkg/tool, that counts as a GOROOT,
    # so it should find the new tree.
    mkdir $WORK/new/pkg/tool
    exec $WORK/bin/check$GOEXE $WORK/new/bin/go$GOEXE $WORK/new
    exec $WORK/bin/check$GOEXE $WORK/new/bin/${GOOS}_${GOARCH}/go$GOEXE $WORK/new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. pkg/proxy/util/linebuffer.go

    func (buf *realLineBuffer) MarshalLog() any {
    	return strings.Split(buf.b.String(), "\n")
    }
    
    type discardLineBuffer struct {
    	lines int
    }
    
    // NewDiscardLineBuffer returns a dummy LineBuffer that counts the number of writes but
    // throws away the data. (This is used for iptables proxy partial syncs, to keep track of
    // how many rules we managed to avoid having to sync.)
    func NewDiscardLineBuffer() LineBuffer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/internal/chacha8rand/chacha8.go

    // It must be used from one goroutine at a time.
    // If used by multiple goroutines at a time, the goroutines
    // may see the same random values, but the code will not
    // crash or cause out-of-bounds memory accesses.
    type State struct {
    	buf  [32]uint64
    	seed [4]uint64
    	i    uint32
    	n    uint32
    	c    uint32
    }
    
    // Next returns the next random value, along with a boolean
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/internal/coverage/cformat/format.go

    // - a map recording the index/ID of each func encountered so far
    // - a table storing execution count for the coverable units in each func
    type pstate struct {
    	// slice of unique functions
    	funcs []fnfile
    	// maps function to index in slice above (index acts as function ID)
    	funcTable map[fnfile]uint32
    
    	// A table storing coverage counts for each coverable unit.
    	unitTable map[extcu]uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.cc

    using mlir::PassManager;
    using mlir::func::FuncOp;
    
    auto *tf_dialect_to_executor_dialect_status = tsl::monitoring::Counter<1>::New(
        "/tensorflow/core/tf2xla/api/v2/tf_dialect_to_executor_dialect_status",
        "Counts how often a successful export from TF Dialect to Executor Dialect "
        "is",
        "status");
    
    constexpr char kExportSuccess[] = "success";
    constexpr char kExportFailed[] = "failed";
    
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    		return U // for non-interface types,
    	}
    
    	terms, err := NormalTerms(U)
    	if len(terms) == 0 || err != nil {
    		// len(terms) -> empty type set of interface.
    		// err != nil => U is invalid, exceeds complexity bounds, or has an empty type set.
    		return nil // no core type.
    	}
    
    	U = terms[0].Type().Underlying()
    	var identical int // i in [0,identical) => Identical(U, terms[i].Type().Underlying())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/tf_dialect_to_executor.cc

    using mlir::PassManager;
    using mlir::func::FuncOp;
    
    auto *tf_dialect_to_executor_dialect_status = tsl::monitoring::Counter<1>::New(
        "/tensorflow/core/tf2xla/api/v1/tf_dialect_to_executor_dialect_status",
        "Counts how often a successful export from TF Dialect to Executor Dialect "
        "is",
        "status");
    
    constexpr char kExportSuccess[] = "success";
    constexpr char kExportFailed[] = "failed";
    
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 03:41:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. testing/soak/src/integTest/groovy/org/gradle/workers/internal/WorkerPruningSoakTest.groovy

     */
    
    package org.gradle.workers.internal
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.workers.fixtures.WorkerExecutorFixture
    
    /**
     * Verifies that we can spawn large amounts of workers without running out of memory, because the old ones will be killed
     * if necessary.
     *
     * <p>
     *     This mostly is a test for Windows, as other OSes have effectively-unlimited virtual memory, and won't need to kill
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/RangeMap.java

       * this range map are guaranteed to read through to the returned {@code Map}.
       *
       * <p>The returned {@code Map} iterates over entries in ascending order of the bounds of the
       * {@code Range} entries.
       *
       * <p>It is guaranteed that no empty ranges will be in the returned {@code Map}.
       */
      Map<Range<K>, V> asMapOfRanges();
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top