Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for Newlines (0.1 sec)

  1. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        cache.close()
        writeFile(getCleanFile("k1", 0), "A")
        writeFile(getCleanFile("k1", 1), "B")
        filesystem.write(journalFile) {
          writeUtf8(
            // No trailing newline.
            """
            |${DiskLruCache.MAGIC}
            |${DiskLruCache.VERSION_1}
            |100
            |2
            |
            |CLEAN k1 1 1
            """.trimMargin(),
          )
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    }
    
    var newlineMatcher = regexp.MustCompile(`[\n\r]+`) // valid newline chars in CEL grammar
    func hasNewlines(s string) bool {
    	return newlineMatcher.MatchString(s)
    }
    
    func validateMapListKeysMapSet(schema *apiextensions.JSONSchemaProps, fldPath *field.Path) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      GTEST_INFO,
      GTEST_WARNING,
      GTEST_ERROR,
      GTEST_FATAL
    };
    
    // Formats log entry severity, provides a stream object for streaming the
    // log message, and terminates the message with a newline when going out of
    // scope.
    class GTEST_API_ GTestLog {
     public:
      GTestLog(GTestLogSeverity severity, const char* file, int line);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    	if strings.ContainsAny(srcfile, "\r\n") {
    		// This should have been checked when the file path was first resolved,
    		// but we double check here just to be sure.
    		fatalf("internal error: writeOutput: srcfile contains unexpected newline character: %q", srcfile)
    	}
    	fmt.Fprintf(fgo1, "//line %s:1:1\n", srcfile)
    	fgo1.Write(f.Edit.Bytes())
    
    	// While we process the vars and funcs, also write gcc output.
    	// Gcc output starts with the preamble.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top