Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 681 for Separator (0.17 sec)

  1. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/SystemDefaultSSLContextFactory.java

            return System.getProperty("java.home") + File.separator + "lib" + File.separator + "security";
        }
    
        private static String getDefaultTrustStore(){
            return getDefaultSecurityPath() + File.separator + "cacerts";
        }
    
        private static String getDefaultJsseTrustStore(){
            return getDefaultSecurityPath() + File.separator + "jssecacerts";
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

            is Map<*, *> -> if (isEmpty()) "{}" else entries.joinToString(
                separator = ",\n  ",
                prefix = "{\n  ",
                postfix = "\n}"
            ) { (k, v) -> "${k?.let { stringRepresentation(it).indented() }} -> (${v?.let { stringRepresentation(it).indented() }})" }
            is Collection<*> -> if (isEmpty()) "[]" else joinToString(
                separator = ",\n  ",
                prefix = "[\n  ",
                postfix = "\n]"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

        }
    
        def packageName(int classNumber, Integer subProjectNumber = null, String separator = '.') {
            def projectPackage = subProjectNumber == null ? "" : "${separator}project$subProjectNumber"
            def subPackage = "${separator}p${(int) (classNumber / 20)}"
            "org${separator}gradle${separator}test${separator}performance${separator}${config.projectName.toLowerCase()}${projectPackage}$subPackage"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/util/Path.java

        private static final Comparator<String> STRING_COMPARATOR = GUtil.caseInsensitive();
        public static final String SEPARATOR = ":";
    
        public static Path path(@Nullable String path) {
            validatePath(path);
            if (SEPARATOR.equals(path)) {
                return ROOT;
            } else {
                return parsePath(path);
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 13:03:23 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractorTest.java

     * @author shinsuke
     *
     */
    public class CommandExtractorTest extends PlainTestCase {
    
        private File createScriptTempFile(final int sleep) {
            String extention;
            String content;
            if (File.separator.equals("/")) {
                // Unix
                extention = ".sh";
                content = "#!/bin/bash\nsleep " + sleep + ";cp $1 $2";
            } else {
                // Windows
                extention = ".bat";
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. operator/pkg/util/errs.go

    }
    
    // ToString returns a string representation of errors, with elements separated by separator string. Any nil errors in the
    // slice are skipped.
    func ToString(errors []error, separator string) string {
    	var out string
    	for i, e := range errors {
    		if e == nil {
    			continue
    		}
    		if i != 0 {
    			out += separator
    		}
    		out += e.Error()
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/PropertiesUtils.java

         * <ul>
         *     <li>no timestamp comment is generated at the beginning of the file</li>
         *     <li>the lines in the resulting files are separated by a pre-set separator instead of the system default line separator</li>
         *     <li>the properties are sorted alphabetically</li>
         * </ul>
         *
         * <p>Like with {@link java.util.Properties#store(java.io.OutputStream, String)}, Unicode characters are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 14:17:21 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/string.kt

    package org.gradle.kotlin.dsl.fixtures
    
    
    fun <T> Iterable<T>.joinLines(transform: (T) -> String) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 157 bytes
    - Viewed (0)
  9. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/action/AnnotationGeneratorWorkAction.kt

        fun String.withTrimmableMargin(): String =
            lines().joinToString(separator = "\n        |")
    
        private
        fun groovyImports(): String {
            val imports: List<String> =
                generateImportPackages()
                    .map { "$it.*" } + "" +
                    AnnotationGenerator.ADDITIONAL_DEFAULT_IMPORTS
            return imports.joinToString(separator = "\n") {
                if (it.isBlank()) "" else "import $it"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 22 10:58:31 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/path/PathTranslator.java

     *
     */
    public interface PathTranslator {
    
        /**
         * Resolves the specified path against the given base directory. The resolved path will be absolute and uses the
         * platform-specific file separator if a base directory is given. Otherwise, the input path will be returned
         * unaltered.
         *
         * @param path The path to resolve, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top