Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,423 for Trailing (0.14 sec)

  1. src/internal/types/testdata/fixedbugs/issue49482.go

    // The following parse as invalid array types due to parsing ambiguitiues.
    type _ [P *int /* ERROR "int (type) is not an expression" */ ]int
    type _ [P /* ERROR "non-function P" */ (*int)]int
    
    // Adding a trailing comma or an enclosing interface resolves the ambiguity.
    type _[P *int,] int
    type _[P (*int),] int
    type _[P interface{*int}] int
    type _[P interface{(*int)}] int
    
    // The following parse correctly as valid generic types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 906 bytes
    - Viewed (0)
  2. common/config/.yamllint.yml

      indentation: disable
      key-duplicates: enable
      key-ordering: disable
      line-length: disable
      new-line-at-end-of-file: disable
      new-lines: enable
      octal-values: disable
      quoted-strings: disable
      trailing-spaces: disable
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 30 23:53:31 UTC 2020
    - 863 bytes
    - Viewed (0)
  3. src/math/big/floatmarsh.go

    	if x.form == finite {
    		// add space for mantissa and exponent
    		n = int((x.prec + (_W - 1)) / _W) // required mantissa length in words for given precision
    		// actual mantissa slice could be shorter (trailing 0's) or longer (unused bits):
    		// - if shorter, only encode the words present
    		// - if longer, cut off unused words when encoding in bytes
    		//   (in practice, this should never happen since rounding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/go/doc/testdata/a0.go

    // license that can be found in the LICENSE file.
    
    // comment 0
    package a
    
    //BUG(uid): bug0
    
    //TODO(uid): todo0
    
    // A note with some spaces after it, should be ignored (watch out for
    // emacs modes that remove trailing whitespace).
    //NOTE(uid):
    
    // SECBUG(uid): sec hole 0
    // need to fix asap
    
    // Multiple notes may be in the same comment group and should be
    // recognized individually. Notes may start in the middle of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  5. internal/hash/reader.go

    	cs, err := GetContentChecksum(req.Header)
    	if err != nil {
    		return ErrInvalidChecksum
    	}
    	if cs == nil {
    		return nil
    	}
    	r.contentHash = *cs
    	if cs.Type.Trailing() {
    		r.trailer = req.Trailer
    	}
    	return r.AddNonTrailingChecksum(cs, ignoreValue)
    }
    
    // AddChecksumNoTrailer will add checksum checks as specified in
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. ci/official/envs/versions_upload

    # ==============================================================================
    # Release jobs are very basic. They don't use any caching or RBE,
    # but they do upload logs to resultstore.
    # IMPORTANT: trailing slash is required on GCS URIs, as it tells gcloud to
    # pretend the path is a directory.
    TFCI_ARTIFACT_FINAL_GCS_ENABLE=1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 19 19:07:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/internal/pkgpattern/pkgpattern.go

    	return matchPatternInternal(pattern, false)
    }
    
    func matchPatternInternal(pattern string, vendorExclude bool) func(name string) bool {
    	// Convert pattern to regular expression.
    	// The strategy for the trailing /... is to nest it in an explicit ? expression.
    	// The strategy for the vendor exclusion is to change the unmatchable
    	// vendor strings to a disallowed code point (vendorChar) and to use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  8. cmd/genutils/genutils.go

    limitations under the License.
    */
    
    package genutils
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    )
    
    // OutDir creates the absolute path name from path and checks path exists.
    // Returns absolute path including trailing '/' or error if path does not exist.
    func OutDir(path string) (string, error) {
    	outDir, err := filepath.Abs(path)
    	if err != nil {
    		return "", err
    	}
    
    	stat, err := os.Stat(outDir)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 01:48:15 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/Names.java

        public abstract String withSuffix(String suffix);
    
        public abstract String getTaskName(String action);
    
        public abstract String getCompileTaskName(String language);
    
        // Includes trailing '/'
        public abstract String getDirName();
    
        private static class Main extends Names {
            @Override
            public String getName() {
                return "main";
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http/DateFormatting.kt

      var result = STANDARD_DATE_FORMAT.get().parse(this, position)
      if (position.index == length) {
        // STANDARD_DATE_FORMAT must match exactly; all text must be consumed, e.g. no ignored
        // non-standard trailing "+01:00". Those cases are covered below.
        return result
      }
      synchronized(BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS) {
        for (i in 0 until BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS.size) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top