Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 681 for Separator (0.23 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/CollectionUtilsTest.groovy

            when:
            join(separator, objects)
    
            then:
            def e = thrown(NullPointerException)
            e.message == "The '$param' cannot be null"
    
            where:
            separator | objects            | param
            null      | [] as Object[]     | "separator"
            ""        | null as Object[]   | "objects"
            null      | []                 | "separator"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/file/util/kubeyaml/kubeyaml.go

    		if !bytes.Equal(line, []byte("\n")) && !bytes.Equal(line, []byte(yamlSeparator)) && !foundStart {
    			startLine = r.currLine
    			foundStart = true
    		}
    
    		sep := len([]byte(separator))
    		if i := bytes.Index(line, []byte(separator)); i == 0 {
    			// We have a potential document terminator
    			i += sep
    			after := line[i:]
    			if len(strings.TrimRightFunc(string(after), unicode.IsSpace)) == 0 {
    				if buffer.Len() != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 12 02:41:40 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/EstablishBuildEnvironment.java

                    + System.getProperty("line.separator") + "  "
                    + setEnvironmentResult
                    + System.getProperty("line.separator") + "  "
                    + "If the daemon was started with a significantly different environment from the client, and your build "
                    + System.getProperty("line.separator") + "  "
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentBinariesIntegrationTest.groovy

            then:
            output.contains("""
    SampleLibrary 'sampleLib'
    -------------------------
    
    Source sets
        Library source 'sampleLib:librarySource'
            srcDir: src${File.separator}sampleLib${File.separator}librarySource
    
    Binaries
        SampleBinary 'sampleLib:binary'
            build using task: :sampleLibBinary
        OtherSampleBinary 'sampleLib:otherBinary'
            build using task: :sampleLibOtherBinary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

            problems.assertFailureHasProblems(failure) {
                withProblem("Build file 'buildSrc/build.gradle': line 11: invocation of 'Task.project' at execution time is unsupported.".replace('/', File.separator))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/LanguageTypeIntegrationTest.groovy

            succeeds "components"
            and:
            output.contains """
    SampleComponent 'main'
    ----------------------
    
    Source sets
        Custom source 'main:custom'
            srcDir: src${File.separator}main${File.separator}custom
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/SignedBytes.java

       * For example, {@code join(":", 0x01, 0x02, -0x01)} returns the string {@code "1:2:-1"}.
       *
       * @param separator the text that should appear between consecutive values in the resulting string
       *     (but not at the start or end)
       * @param array an array of {@code byte} values, possibly empty
       */
      public static String join(String separator, byte... array) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultPathTranslator.java

                File file = new File(path);
                if (file.isAbsolute()) {
                    // path was already absolute, just normalize file separator and we're done
                    result = file.getPath();
                } else if (file.getPath().startsWith(File.separator)) {
                    // drive-relative Windows path, don't align with project directory but with drive root
                    result = file.getAbsolutePath();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedInputAccessListener.kt

        "java.vm.version",
        "java.vm.vendor",
        "java.vm.name",
        "java.class.version",
        "java.home",
        "java.class.path",
        "java.library.path",
        "java.compiler",
        "file.separator",
        "path.separator",
        "line.separator",
        "user.name",
        "user.home",
        "java.runtime.version"
        // Not java.io.tmpdir and user.dir at this stage
    )
    
    
    @ServiceScope(Scope.BuildTree::class)
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. src/path/filepath/symlink_windows.go

    }
    
    // baseIsDotDot reports whether the last element of path is "..".
    // The given path should be 'Clean'-ed in advance.
    func baseIsDotDot(path string) bool {
    	i := strings.LastIndexByte(path, Separator)
    	return path[i+1:] == ".."
    }
    
    // toNorm returns the normalized path that is guaranteed to be unique.
    // It should accept the following formats:
    //   - UNC paths                              (e.g \\server\share\foo\bar)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 07:42:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top