Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 267 for span1 (0.04 sec)

  1. src/cmd/internal/obj/mips/obj0.go

    	Init:           buildop,
    	Preprocess:     preprocess,
    	Assemble:       span0,
    	Progedit:       progedit,
    	DWARFRegisters: MIPSDWARFRegisters,
    }
    
    var Linkmips64le = obj.LinkArch{
    	Arch:           sys.ArchMIPS64LE,
    	Init:           buildop,
    	Preprocess:     preprocess,
    	Assemble:       span0,
    	Progedit:       progedit,
    	DWARFRegisters: MIPSDWARFRegisters,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_cluster_util_test.cc

    }
    
    void CreateSubgraphCallingFunctionWithRefVar(const Scope& s) {
      NameAttrList ref_float_function;
      ref_float_function.set_name("RefFloatFn");
      ops::PartitionedCall call(s.WithOpName("RefFloat"), {absl::Span<Input>{}},
                                {DT_FLOAT}, ref_float_function);
      Output constant =
          ops::Const(s.WithOpName("constant_ref_pco"), Input::Initializer(0.0));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.cc

    #include <memory>
    #include <optional>
    #include <string>
    #include <unordered_set>
    #include <utility>
    #include <vector>
    
    #include "absl/status/status.h"
    #include "absl/types/span.h"
    #include "llvm/ADT/StringSet.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/compilability_check_util.cc

        }
      }
    
      return absl::OkStatus();
    }
    
    tensorflow::MemoryTypeVector GetInputMemoryTypes(
        const tensorflow::FunctionBody* fbody,
        absl::Span<int const> constant_arg_indices,
        absl::Span<int const> resource_arg_indices) {
      // Set input and output memory types.
      tensorflow::MemoryTypeVector input_memory_types(fbody->arg_types.size(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. src/runtime/mfinal.go

    	}
    
    	// find the containing object
    	base, span, _ := findObject(uintptr(e.data), 0, 0)
    
    	if base == 0 {
    		if isGoPointerWithoutSpan(e.data) {
    			return
    		}
    		throw("runtime.SetFinalizer: pointer not in allocated block")
    	}
    
    	// Move base forward if we've got an allocation header.
    	if !span.spanclass.noscan() && !heapBitsInSpan(span.elemsize) && span.spanclass.sizeclass() != 0 {
    		base += mallocHeaderSize
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/cmd/trace/regions.go

    		<td>
    			<div class="stacked-bar-graph">
    			{{$Region := .}}
    			{{range $.NonOverlappingStats}}
    				{{$Time := index $Region.NonOverlappingStats .}}
    				{{if $Time}}
    					<span {{barStyle . $Time $.MaxTotal}}>&nbsp;</span>
    				{{end}}
    			{{end}}
    			</div>
    		</td>
    		{{$Region := .}}
    		{{range $.NonOverlappingStats}}
    			{{$Time := index $Region.NonOverlappingStats .}}
    			<td> {{$Time.String}}</td>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. docs/ru/docs/tutorial/security/first-steps.md

    Запустите ваш сервер:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    ## Проверка
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Range.java

       * other}. For example, the span of {@code [1..3]} and {@code (5..7)} is {@code [1..7)}.
       *
       * <p><i>If</i> the input ranges are {@linkplain #isConnected connected}, the returned range can
       * also be called their <i>union</i>. If they are not, note that the span might contain values
       * that are not contained in either input range.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/RangeSet.java

       * range set.
       *
       * @throws NoSuchElementException if this range set is {@linkplain #isEmpty() empty}
       */
      Range<C> span();
    
      // Views
    
      /**
       * Returns a view of the {@linkplain Range#isConnected disconnected} ranges that make up this
       * range set. The returned set may be empty. The iterators returned by its {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

    #include <iostream>
    #include <memory>
    #include <optional>
    #include <string>
    #include <unordered_set>
    #include <vector>
    
    #include "absl/status/statusor.h"
    #include "absl/strings/str_split.h"
    #include "absl/types/span.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringExtras.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/CommandLine.h"
    #include "llvm/Support/FormatVariadic.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top