Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 181 for endPos (0.11 sec)

  1. src/net/textproto/reader.go

    // to a method on r.
    //
    // Dot encoding is a common framing used for data blocks
    // in text protocols such as SMTP.  The data consists of a sequence
    // of lines, each of which ends in "\r\n".  The sequence itself
    // ends at a line containing just a dot: ".\r\n".  Lines beginning
    // with a dot are escaped with an additional dot to avoid
    // looking like the end of the sequence.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. docs/yo/docs/index.md

    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor -%}
    {%- for sponsor in sponsors.silver -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor %}
    {% endif %}
    
    <!-- /sponsors -->
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. pilot/pkg/security/model/authentication.go

    		CertificatePath:   proxy.Metadata.TLSServerCertChain,
    		PrivateKeyPath:    proxy.Metadata.TLSServerKey,
    		CaCertificatePath: proxy.Metadata.TLSServerRootCert,
    	}
    
    	// TODO: if subjectAltName ends with *, create a prefix match as well.
    	// TODO: if user explicitly specifies SANs - should we alter his explicit config by adding all spifee aliases?
    	matchSAN := util.StringToExactMatch(subjectAltNames)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/script/engine.go

    //
    // Execute stops and returns an error at the first command that does not succeed.
    // The returned error's text begins with "file:line: ".
    //
    // If the script runs to completion or ends by a 'stop' command,
    // Execute returns nil.
    //
    // Execute does not stop background commands started by the script
    // before returning. To stop those, use [State.CloseAndWait] or the
    // [Wait] command.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/link.go

    	To       Addr      // destination operand (second is RegTo2 below)
    	Pool     *Prog     // constant pool entry, for arm,arm64 back ends
    	Forwd    *Prog     // for x86 back end
    	Rel      *Prog     // for x86, arm back ends
    	Pc       int64     // for back ends or assembler: virtual or actual program counter, depending on phase
    	Pos      src.XPos  // source position of this instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

          })) {
        return errors::FailedPrecondition("op node '", op_name.str(),
                                          "' was not a TF op!");
      }
      // Control dialect NextIteration sink ends with ".sink" and Executor dialect
      // NextIteration sink ends with ".Sink".
      if (!op_name.consume_back(".sink")) op_name.consume_back(".Sink");
      return op_name;
    }
    
    absl::StatusOr<std::unique_ptr<NodeDef>> GetOperationNodeDef(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ContiguousSet.java

       * ContiguousSet} instances.
       */
      public abstract ContiguousSet<C> intersection(ContiguousSet<C> other);
    
      /**
       * Returns a range, closed on both ends, whose endpoints are the minimum and maximum values
       * contained in this set. This is equivalent to {@code range(CLOSED, CLOSED)}.
       *
       * @throws NoSuchElementException if this set is empty
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. pkg/volume/util/atomic_writer.go

    //     NOTE(claudiub): We need to create these symlinks AFTER we've finished creating and
    //     linking everything else. On Windows, if a target does not exist, the created symlink
    //     will not work properly if the target ends up being a directory.
    //
    //  11. Old paths are removed from the user-visible portion of the target directory.
    //
    //  12. The previous timestamped directory is removed, if it exists.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/Ints.java

        // (1) "Reversal", the one we have here.
        // (2) "Dolphin". If we're rotating an array a of size n by a distance of d, then element a[0]
        //     ends up at a[d], which in turn ends up at a[2d], and so on until we get back to a[0].
        //     (All indices taken mod n.) If d and n are mutually prime, all elements will have been
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  10. src/image/jpeg/reader_test.go

    	// Sanity check that the encoded JPEG is long enough, that it ends in a
    	// "\xff\xd9" EOI marker, and that it contains a "\xff\xda" SOS marker
    	// somewhere in the final 64 bytes.
    	if len(enc) < 64 {
    		t.Fatalf("encoded JPEG is too short: %d bytes", len(enc))
    	}
    	if got, want := enc[len(enc)-2:], "\xff\xd9"; got != want {
    		t.Fatalf("encoded JPEG ends with %q, want %q", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top