Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 71 for max_line (0.15 sec)

  1. src/internal/trace/trace_test.go

    			match  string
    			frames []frame
    		}
    		// mainLine is the line number of `func main()` in testprog/stacks.go.
    		const mainLine = 21
    		want := []evDesc{
    			{trace.EventStateTransition, "Goroutine Running->Runnable", []frame{
    				{"main.main", mainLine + 82},
    			}},
    			{trace.EventStateTransition, "Goroutine NotExist->Runnable", []frame{
    				{"main.main", mainLine + 11},
    			}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/cmd/gofmt/gofmt_test.go

    // gofmtFlags looks for a comment of the form
    //
    //	//gofmt flags
    //
    // within the first maxLines lines of the given file,
    // and returns the flags string, if any. Otherwise it
    // returns the empty string.
    func gofmtFlags(filename string, maxLines int) string {
    	f, err := os.Open(filename)
    	if err != nil {
    		return "" // ignore errors - they will be found later
    	}
    	defer f.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 19:22:49 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/common/source_code.h

      void AddBlankLine();
      void IncreaseIndent();
      void DecreaseIndent();
    
     private:
      struct Line {
        int indent;
        string text;
      };
    
      void ValidateAndAddLine(int indent_level, const string &raw_line);
    
      int spaces_per_indent_ = 2;
      int current_indent_ = 0;
      std::vector<Line> lines_;
    };
    
    }  // namespace generator
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/convert-tf-quant-types.mlir

      // CHECK-DAG: %[[MIN_QINT:.*]] = "tf.Cast"(%arg1) <{Truncate = false}> : (tensor<i32>) -> tensor<!tf_type.qint32>
      // CHECK-DAG: %[[MAX_QINT:.*]] = "tf.Cast"(%arg1) <{Truncate = false}> : (tensor<i32>) -> tensor<!tf_type.qint32>
      // CHECK: "tf.UniformQuantizedClipByValue"(%[[INPUT_QINT]], %[[MIN_QINT]], %[[MAX_QINT]]
      %output = "tf.UniformQuantizedClipByValue"(%q_input, %arg1, %arg1, %scale, %zp)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/term/terminal.go

    	// cursorX contains the current X value of the cursor where the left
    	// edge is 0. cursorY contains the row number where the first row of
    	// the current line is 0.
    	cursorX, cursorY int
    	// maxLine is the greatest value of cursorY so far.
    	maxLine int
    
    	termWidth, termHeight int
    
    	// outBuf contains the terminal data to be sent.
    	outBuf []byte
    	// remainder contains the remainder of any partial key sequences after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

         * Returns the tail of a file.
         *
         * @param file to read from tail
         * @param maxLines max lines to read
         * @return tail content
         * @throws org.gradle.util.GFileUtils.TailReadingException when reading failed
         */
        @SuppressWarnings("DefaultCharset")
        public static String tail(File file, int maxLines) throws TailReadingException {
            logDeprecation();
            BufferedReader reader = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

      auto get_value_at = [](ArrayRef<T> v, size_t i) -> T {
        if (v.size() == 1) return v.front();
        return v[i];
      };
    
      size_t max_size = std::max(a.size(), b.size());
      SmallVector<T> result(max_size);
      for (size_t i : llvm::seq<size_t>(0, max_size)) {
        result[i] = get_value_at(a, i) * get_value_at(b, i);
      }
      return result;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/admin/KeyMatchTests.java

            final String keyProp = NAME_PREFIX + id;
            requestBody.put(KEY_PROPERTY, keyProp);
            requestBody.put(KEY_PROPERTY, keyProp);
            requestBody.put("query", "query" + id);
            requestBody.put("max_size", new Integer(id).toString());
            requestBody.put("boost", 100);
            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

                private static final int MAX_LEN = 1000;
    
                private final ByteArrayOutputStream buf = new ByteArrayOutputStream(MAX_LEN);
    
                @Override
                public void write(final int b) throws IOException {
                    if (b == '\n' || b == '\r' || buf.size() >= MAX_LEN) {
                        try {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/union_content.go

    	currCABundle := c.CurrentCABundleContent()
    	if len(currCABundle) == 0 {
    		return x509.VerifyOptions{}, false
    	}
    
    	// TODO make more efficient.  This isn't actually used in any of our mainline paths.  It's called to build the TLSConfig
    	// TODO on file changes, but the actual authentication runs against the individual items, not the union.
    	ret, err := newCABundleAndVerifier(c.Name(), c.CurrentCABundleContent())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 14:37:01 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top