Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 288 for mentioned (0.13 sec)

  1. doc/next/9-todo.md

    CL 559799 - a Go 1.22 release note edit CL mentioned a Go 1.22 accepted proposal https://go.dev/issue/62039, a little after Go 1.23 development began
    CL 581555 - an x/tools CL mentioned accepted proposal https://go.dev/issue/62292 for x/tools/go/aalysis; doesn't need a Go 1.23 release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/text/template/helper.go

    // If an error occurs, parsing stops and the returned *Template is nil.
    //
    // When parsing multiple files with the same name in different directories,
    // the last one mentioned will be the one that results.
    // For instance, ParseFiles("a/foo", "b/foo") stores "b/foo" as the template
    // named "foo", while "a/foo" is unavailable.
    func ParseFiles(filenames ...string) (*Template, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:54:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_verify.txt

    go mod verify
    
    # Packages below module root should not be mentioned in go.sum.
    rm go.sum
    go mod edit -droprequire rsc.io/quote
    go get rsc.io/quote/buggy
    grep '^rsc.io/quote v1.5.2/go.mod ' go.sum
    ! grep buggy go.sum
    
    # non-existent packages below module root should not be mentioned in go.sum
    go mod edit -droprequire rsc.io/quote
    ! go list rsc.io/quote/morebuggy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. VULNERABILITY_REPORT.md

       reported vulnerability and how it might be exploited. Alternatively,
       a well-established vulnerability identifier, e.g. CVE number, can be
       used instead.
    
    Based on the description mentioned above, a MinIO engineer or security team
    member investigates:
    
    - Whether the reported vulnerability exists.
    - The conditions that are required such that the vulnerability can be exploited.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu-annotate-dynamic-shape-inputs.mlir

      // TODO(b/292540052): Below tf.addV2 instruction is replaced with just
      // returning arg0 due to the workaround mentioned in the above bug. Revert
      // this after the bug is fixed.
        // %0 = "tf.AddV2"(%arg0, %arg1) : (tensor<2048xi32>, tensor<2048xi32>) -> tensor<2048xi32>
        return %arg0 : tensor<2048xi32>
       }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/runtime/tracestatus.go

    	traceProcIdle
    	traceProcSyscall
    
    	// traceProcSyscallAbandoned is a special case of
    	// traceProcSyscall. It's used in the very specific case
    	// where the first a P is mentioned in a generation is
    	// part of a ProcSteal event. If that's the first time
    	// it's mentioned, then there's no GoSyscallBegin to
    	// connect the P stealing back to at that point. This
    	// special state indicates this to the parser, so it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. doc/README.md

    If your CL addresses an accepted proposal, mention the proposal issue number in
    your release note in the form `/issue/NUMBER`. A link to the issue in the text
    will have this form (see below). If you don't want to mention the issue in the
    text, add it as a comment:
    ```
    <!-- go.dev/issue/12345 -->
    ```
    If an accepted proposal is mentioned in a CL but not in the release notes, it will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/hash/adler32/adler32.go

    	"hash"
    	"internal/byteorder"
    )
    
    const (
    	// mod is the largest prime that is less than 65536.
    	mod = 65521
    	// nmax is the largest n such that
    	// 255 * n * (n+1) / 2 + (n+1) * (mod-1) <= 2^32-1.
    	// It is mentioned in RFC 1950 (search for "5552").
    	nmax = 5552
    )
    
    // The size of an Adler-32 checksum in bytes.
    const Size = 4
    
    // digest represents the partial evaluation of a checksum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. src/html/template/template.go

    // If an error occurs, parsing stops and the returned [*Template] is nil.
    //
    // When parsing multiple files with the same name in different directories,
    // the last one mentioned will be the one that results.
    // For instance, ParseFiles("a/foo", "b/foo") stores "b/foo" as the template
    // named "foo", while "a/foo" is unavailable.
    func ParseFiles(filenames ...string) (*Template, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:00:46 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/base/JoinerBenchmark.java

        }
        return dummy;
      }
    
      /**
       * Similar to the above, but keeps a boolean flag rather than checking for the string accumulated
       * so far being empty. As a result, it does not have the above-mentioned bug.
       */
      @Benchmark
      int booleanIfFirst(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          StringBuilder sb = new StringBuilder();
          boolean append = false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.9K bytes
    - Viewed (0)
Back to top