Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 654 for envs (0.04 sec)

  1. src/go/doc/synopsis.go

    // license that can be found in the LICENSE file.
    
    package doc
    
    import (
    	"go/doc/comment"
    	"strings"
    	"unicode"
    )
    
    // firstSentence returns the first sentence in s.
    // The sentence ends after the first period followed by space and
    // not preceded by exactly one uppercase letter.
    func firstSentence(s string) string {
    	var ppp, pp, p rune
    	for i, q := range s {
    		if q == '\n' || q == '\r' || q == '\t' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. .gitignore

    .idea
    .ipynb_checkpoints
    .mypy_cache
    .vscode
    __pycache__
    .pytest_cache
    htmlcov
    dist
    site
    .coverage
    coverage.xml
    .netlify
    test.db
    log.txt
    Pipfile.lock
    env3.*
    env
    docs_build
    site_build
    venv
    docs.zip
    archive.zip
    
    # vim temporary files
    *~
    .*.sw?
    .cache
    
    # macOS
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 13:11:35 UTC 2023
    - 268 bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/Location.java

    public interface Location {
    
        /**
         * Return the line number where the current event ends,
         * returns -1 if none is available.
         * @return the current line number
         */
        int getLineNumber();
    
        /**
         * Return the column number where the current event ends,
         * returns -1 if none is available.
         * @return the current column number
         */
        int getColumnNumber();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/para.go

    	text := s.trimSpaceString()
    
    	if b != nil && b.table != nil {
    		if indented && text != "" && text != "|" {
    			// Continue table.
    			b.table.addRow(text)
    			return line{}, true
    		}
    		// Blank or unindented line ends table.
    		// (So does a new block structure, but the caller has checked that already.)
    		// So does a line with just a pipe:
    		// https://github.com/github/cmark-gfm/pull/127 and
    		// https://github.com/github/cmark-gfm/pull/128
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/path/filepath/path_windows.go

    	var b strings.Builder
    	var lastChar byte
    	for _, e := range elem {
    		switch {
    		case b.Len() == 0:
    			// Add the first non-empty path element unchanged.
    		case os.IsPathSeparator(lastChar):
    			// If the path ends in a slash, strip any leading slashes from the next
    			// path element to avoid creating a UNC path (any path starting with "\\")
    			// from non-UNC elements.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/assembler/groovy/src/main/asm_i386_masm/sum.s

        .386
        .model    flat
    
    PUBLIC    _sum
    _TEXT     SEGMENT
    _sum    PROC
        mov    eax, DWORD PTR 4[esp]
        add    eax, DWORD PTR 8[esp]
        ret    0
    _sum    ENDP
    _TEXT   ENDS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 184 bytes
    - Viewed (0)
  7. cmd/url_test.go

    	b.ResetTimer()
    
    	if err := req.ParseForm(); err != nil {
    		b.Fatal(err)
    	}
    
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			req.Form.Get("uploadId")
    		}
    	})
    
    	// Benchmark ends here. Stop timer.
    	b.StopTimer()
    }
    
    // BenchmarkURLQuery - benchmark URL memory allocations
    func BenchmarkURLQuery(b *testing.B) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 16 17:28:29 UTC 2021
    - 2K bytes
    - Viewed (0)
  8. src/runtime/rt0_linux_s390x.s

    #include "textflag.h"
    
    TEXT _rt0_s390x_linux(SB), NOSPLIT|NOFRAME, $0
    	// In a statically linked binary, the stack contains argc,
    	// argv as argc string pointers followed by a NULL, envv as a
    	// sequence of string pointers followed by a NULL, and auxv.
    	// There is no TLS base pointer.
    
    	MOVD 0(R15), R2  // argc
    	ADD  $8, R15, R3 // argv
    	BR   main(SB)
    
    TEXT _rt0_s390x_linux_lib(SB), NOSPLIT, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 15:54:54 UTC 2017
    - 676 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.9.0.txt

    retract v1.0.0-long
    
    // Ends with a BEL character. Beep!
    retract v1.0.0-unprintable
    
    // block comment
    retract (
    	v1.0.0-block
    
    	// inner comment
    	v1.0.0-blockwithcomment
    )
    
    retract (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/signature_flattening_test.cc

      return spec.name() == expected_name &&
             PartialTensorShape(spec.shape()).IsIdenticalTo(expected_shape) &&
             spec.dtype() == expected_dtype;
    }
    
    // This tests the common case for a tf.function w/o inputs. This ends up
    // being serialized as a tuple of an empty tuple + empty dictionary
    // (corresponding to the args, kwargs) of the function.
    TEST(SignatureFlatteningTest, ZeroArgInputSignature) {
      std::vector<const TensorSpecProto*> flattened;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 06 21:36:59 UTC 2020
    - 5.9K bytes
    - Viewed (0)
Back to top