Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Newlines (0.34 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dependencies": {
            "is-number": "^7.0.0"
          },
          "engines": {
            "node": ">=8.0"
          }
        },
        "node_modules/trim-newlines": {
          "version": "3.0.1",
          "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz",
          "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==",
          "dev": true,
          "engines": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    </li>
    </ol>
    
    <p>
    A comment cannot start inside a <a href="#Rune_literals">rune</a> or
    <a href="#String_literals">string literal</a>, or inside a comment.
    A general comment containing no newlines acts like a space.
    Any other comment acts like a newline.
    </p>
    
    <h3 id="Tokens">Tokens</h3>
    
    <p>
    Tokens form the vocabulary of the Go language.
    There are four classes: <i>identifiers</i>, <i>keywords</i>, <i>operators
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			expectedRemainingBudget: -1,
    		},
    		{
    			name:                  "messageExpression is not allowed to generate a string with newlines",
    			message:               "message not messageExpression",
    			messageExpression:     `"str with \na newline"`,
    			costBudget:            celconfig.RuntimeCELCostBudget,
    			expectedLogErr:        "messageExpression should not contain line breaks",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. src/encoding/json/testdata/code.json.gz

    n_t":1236205616,"max_t":1238022568,"mean_t":1237114092},{"name":"pre-wrap-spaces-after-newline-expected.checksum","kids":[],"cl_weight":0.002678367169605431,"touches":4,"min_t":1228525763,"max_t":1238022568,"mean_t":1233057123},{"name":"024-expected.checksum","kids":[],"cl_weight":0.0013052204272979951,"touches":2,"min_t":1236205616,"max_t":1238022568,"mean_t":1237114092},{"name":"pre-wrap-spaces-after-newline-expected.png","kids":[],"cl_weight":0.002678367169605431,"touches":4,"min_t":122852576...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	// the codec includes a trailing newline that is not present during decode
    	encodedBody = bytes.TrimSpace(encodedBody)
    
    	encodedBodyV1, err := runtime.Encode(metainternalversionscheme.Codecs.LegacyCodec(metav1.SchemeGroupVersion), partial)
    	if err != nil {
    		t.Fatal(err)
    	}
    	// the codec includes a trailing newline that is not present during decode
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&NegativeThinSpace;":               "\u200b",
    	"&NegativeVeryThinSpace;":           "\u200b",
    	"&NestedGreaterGreater;":            "\u226b",
    	"&NestedLessLess;":                  "\u226a",
    	"&NewLine;":                         "\u000a",
    	"&Nfr;":                             "\U0001d511",
    	"&NoBreak;":                         "\u2060",
    	"&NonBreakingSpace;":                "\u00a0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  7. src/html/entity.go

    		"NegativeThinSpace;":               '\U0000200B',
    		"NegativeVeryThinSpace;":           '\U0000200B',
    		"NestedGreaterGreater;":            '\U0000226B',
    		"NestedLessLess;":                  '\U0000226A',
    		"NewLine;":                         '\U0000000A',
    		"Nfr;":                             '\U0001D511',
    		"NoBreak;":                         '\U00002060',
    		"NonBreakingSpace;":                '\U000000A0',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //		directives whose full original source text (excluding
    //		any trailing spaces and final newline) matches the
    //		expression.
    //
    //	-skip=""
    //		if non-empty, specifies a regular expression to suppress
    //		directives whose full original source text (excluding
    //		any trailing spaces and final newline) matches the
    //		expression. If a directive matches both the -run and
    //		the -skip arguments, it is skipped.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    				default:
    					// Not an escape character after all.
    					flag = append(flag, '\\', c)
    					escaped = false
    					continue
    				}
    			}
    
    			if c == '\n' {
    				// “If a <newline> follows the <backslash>, the shell shall interpret
    				// this as line continuation.”
    			} else {
    				flag = append(flag, c)
    			}
    			escaped = false
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.4.md

    * Wait for the port to be ready before starting ([#38260](https://github.com/kubernetes/kubernetes/pull/38260), [@fraenkel](https://github.com/fraenkel))
    * Ensure the GCI metadata files do not have newline at the end ([#38727](https://github.com/kubernetes/kubernetes/pull/38727), [@Amey-D](https://github.com/Amey-D))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
Back to top