Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 627 for kSeparator (0.28 sec)

  1. src/packaging/deb/packaging.properties

    packaging.env.file=/etc/default/fess
    
    # Simple marker to check that properties are correctly overridden
    packaging.type=deb
    
    # Custom header for package scripts
    packaging.scripts.header=#!/bin/sh${line.separator}set -e
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 401 bytes
    - Viewed (0)
  2. src/internal/filepathlite/path_plan9.go

    package filepathlite
    
    import (
    	"internal/bytealg"
    	"internal/stringslite"
    )
    
    const (
    	Separator     = '/'    // OS-specific path separator
    	ListSeparator = '\000' // OS-specific path list separator
    )
    
    func IsPathSeparator(c uint8) bool {
    	return Separator == c
    }
    
    func isLocal(path string) bool {
    	return unixIsLocal(path)
    }
    
    func localize(path string) (string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 952 bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

        public TextUtil() {
            logDeprecation();
        }
    
        /**
         * Returns the line separator for Windows.
         */
        public static String getWindowsLineSeparator() {
            logDeprecation();
            return "\r\n";
        }
    
        /**
         * Returns the line separator for Unix.
         */
        public static String getUnixLineSeparator() {
            logDeprecation();
            return "\n";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/internal/filepathlite/path.go

    }
    
    // ToSlash is filepath.ToSlash.
    func ToSlash(path string) string {
    	if Separator == '/' {
    		return path
    	}
    	return replaceStringByte(path, Separator, '/')
    }
    
    // FromSlash is filepath.ToSlash.
    func FromSlash(path string) string {
    	if Separator == '/' {
    		return path
    	}
    	return replaceStringByte(path, '/', Separator)
    }
    
    func replaceStringByte(s string, old, new byte) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/process/internal/worker/DefaultWorkerProcessBuilderIntegrationTest.groovy

                    classpath += files(System.getProperty("user.home"),
                            System.getProperty("user.home") + File.separator + "*",
                            System.getProperty("user.home") + File.separator + "Non exist path",
                            System.getProperty("user.home") + File.separator + "Non exist path" + File.separator + "*")
                }
            }
            """
    
            expect:
            succeeds("test")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/AbstractLineChoppingStyledTextOutputTest.groovy

            System.setProperty("line.separator", "\r\n")
            def output = output()
    
            when:
            output.text('\r')
            output.text("\r\na")
    
            then:
            result.toString() == "[\r]{eol}{start}[a]"
        }
    
        def "can append data after a carriage return on Windows"() {
            System.setProperty("line.separator", "\r\n")
            def output = output()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/BaseEncoding.java

        public BaseEncoding withSeparator(String separator, int afterEveryChars) {
          for (int i = 0; i < separator.length(); i++) {
            checkArgument(
                !alphabet.matches(separator.charAt(i)),
                "Separator (%s) cannot contain alphabet characters",
                separator);
          }
          if (paddingChar != null) {
            checkArgument(
                separator.indexOf(paddingChar.charValue()) < 0,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/CrawlJob.java

                    "WEB-INF" + File.separator + "lib" + File.separator);
            // WEB-INF/env/crawler/lib
            appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/env/" + getExecuteType() + "/lib")),
                    "WEB-INF" + File.separator + "env" + File.separator + getExecuteType() + File.separator + "lib" + File.separator);
            // WEB-INF/plugin
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionFailure.java

         *
         * @return this
         */
        ExecutionFailure assertHasFailure(String description, Consumer<? super Failure> action);
    
        /**
         * Asserts that there is a failure present with the given cause (ie the bit after the description).
         *
         * <p>Error messages are normalized to use new-line char as line separator.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/CompactTree.kt

    internal
    fun compactStringFor(files: Iterable<File>) =
        compactStringFor(files.map { it.path }, File.separatorChar)
    
    
    internal
    fun compactStringFor(paths: Iterable<String>, separator: Char) =
        CompactTree.of(paths.map { it.splitIncluding(separator).toList() }).toString()
    
    
    private
    sealed class CompactTree {
    
        companion object {
    
            fun of(paths: Iterable<List<String>>): CompactTree =
                paths
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top