Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for END (0.12 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                                                  update_window_dims_mlir.end());
      std::vector<int64_t> inserted_window_dims_vec(
          inserted_window_dims_mlir.begin(), inserted_window_dims_mlir.end());
      std::vector<int64_t> scatter_dims_to_operand_dims_vec(
          scatter_dims_to_operand_dims_mlir.begin(),
          scatter_dims_to_operand_dims_mlir.end());
    
      int64_t index_vector_dim = scatter_dimension_numbers.getIndexVectorDim();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    		// end symbols. Unset them and define separate symbols, so we
    		// keep both.
    		etext := ldr.Lookup("runtime.etext", 0)
    		edata := ldr.Lookup("runtime.edata", 0)
    		end := ldr.Lookup("runtime.end", 0)
    		ldr.SetSymExtname(etext, "runtime.etext")
    		ldr.SetSymExtname(edata, "runtime.edata")
    		ldr.SetSymExtname(end, "runtime.end")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    	for i, testCase := range testCases {
    		// initialize HTTP NewRecorder, this records any mutations to response writer inside the handler.
    		rec := httptest.NewRecorder()
    		// construct HTTP request for Get Object end point.
    		req, err := newTestSignedRequestV4(http.MethodHead, getHeadObjectURL("", testCase.bucketName, testCase.objectName),
    			0, nil, testCase.accessKey, testCase.secretKey, nil)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        // The input type has bounded dynamic dimension.
        if (!bounds.empty()) {
          SmallVector<int64_t> new_bounds(bounds.begin(), bounds.end());
          SmallVector<int64_t> new_shape(shape.begin(), shape.end());
          // If dimension of the input type is dynamic. Update the
          // bounds of the dim with the new type if needed.
          for (int i = 0; i < input_ty.getShape().size(); i++) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    				// Find start of line.
    				start := bytes.LastIndex(src[:idx], []byte("\n"))
    				if start == -1 {
    					start = 0
    				}
    
    				// Find end of line.
    				end := bytes.Index(src[idx:], []byte("\n"))
    				if end == -1 {
    					end = len(src)
    				} else {
    					end += idx
    				}
    
    				// Check for first line comment in line.
    				// We don't worry about /* */ comments,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               /*default=*/"MoveTransposeDirection::kBegin", "Move transposes to the beginning or"
               " the end of the block where they are defined.",
               "llvm::cl::values(clEnumValN(MoveTransposeDirection::kBegin, \"begin\", \"beginning of the block\"),"
               "clEnumValN(MoveTransposeDirection::kEnd, \"end\", \"end of the block\"))">
      ];
    }
    
    def BroadcastFoldPass : Pass<"tf-broadcast-fold", "mlir::func::FuncOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      log-proto "${bootstep}" "${LOG_STATUS_STARTED}"
    }
    
    # Logs a bootstrap step end. Prefer log-wrap.
    # Args:
    #   $1 : bootstrap step name.
    #
    # NOTE: this function is duplicated in configure.sh, any changes here should be
    # duplicated there as well.
    function log-end {
      local bootstep="$1"
    
      log-proto "${bootstep}" "${LOG_STATUS_COMPLETED}"
      log-trap-pop
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. src/net/http/server.go

    // (Therefore it is invalid for a "..." wildcard to appear anywhere but at the end of a pattern.)
    // The match for a wildcard can be obtained by calling [Request.PathValue] with the wildcard's name.
    // A trailing slash in a path acts as an anonymous "..." wildcard.
    //
    // The special wildcard {$} matches only the end of the URL.
    // For example, the pattern "/{$}" matches only the path "/",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	))
    	klog.V(4).InfoS("SyncPod enter", "pod", klog.KObj(pod), "podUID", pod.UID)
    	defer func() {
    		klog.V(4).InfoS("SyncPod exit", "pod", klog.KObj(pod), "podUID", pod.UID, "isTerminal", isTerminal)
    		otelSpan.End()
    	}()
    
    	// Latency measurements for the main workflow are relative to the
    	// first time the pod was seen by kubelet.
    	var firstSeenTime time.Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // End-to-end serving tests
    
    package http_test
    
    import (
    	"bufio"
    	"bytes"
    	"compress/gzip"
    	"compress/zlib"
    	"context"
    	"crypto/tls"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"log"
    	"math/rand"
    	"mime/multipart"
    	"net"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top