Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 681 for Separator (0.21 sec)

  1. 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)
  2. src/internal/filepathlite/path_windows.go

    // license that can be found in the LICENSE file.
    
    package filepathlite
    
    import (
    	"internal/bytealg"
    	"internal/stringslite"
    	"syscall"
    )
    
    const (
    	Separator     = '\\' // OS-specific path separator
    	ListSeparator = ';'  // OS-specific path list separator
    )
    
    func IsPathSeparator(c uint8) bool {
    	return c == '\\' || c == '/'
    }
    
    func isLocal(path string) bool {
    	if path == "" {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/pathelement.go

    	// Key indicates that the content of this path element is a key value map
    	Key = "k"
    
    	// Separator separates the type of a path element from the contents
    	Separator = ":"
    )
    
    // NewPathElement parses a serialized path element
    func NewPathElement(s string) (fieldpath.PathElement, error) {
    	split := strings.SplitN(s, Separator, 2)
    	if len(split) < 2 {
    		return fieldpath.PathElement{}, fmt.Errorf("missing colon: %v", s)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/DefaultPluginId.java

        private static final String SEPARATOR = ".";
        private final String value;
    
        public DefaultPluginId(String value) {
            this.value = value;
        }
    
        private boolean isQualified() {
            return value.contains(SEPARATOR);
        }
    
        @Nullable
        public String getNamespace() {
            return isQualified() ? value.substring(0, value.lastIndexOf(SEPARATOR)) : null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPath.java

            }
    
            if (path.startsWith(SEPARATOR)) {
                throw new InvalidPathException(String.format("Model path '%s' cannot start with name separator '%s'.", path, SEPARATOR), null);
            }
    
            if (path.endsWith(SEPARATOR)) {
                throw new InvalidPathException(String.format("Model path '%s' cannot end with name separator '%s'.", path, SEPARATOR), null);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/PathUtil.java

     */
    public class PathUtil {
    
        /**
         * The Unix separator character.
         */
        private static final char UNIX_SEPARATOR = '/';
    
        /**
         * The Windows separator character.
         */
        private static final char WINDOWS_SEPARATOR = '\\';
    
        /**
         * The system separator character.
         */
        private static final char SYSTEM_SEPARATOR = File.separatorChar;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/PathUtilTest.groovy

            "/"                                                       | ""
            "C:${File.separator}some-name"                            | "some-name"
            ""                                                        | ""
            "C:${File.separator}Windows/system${File.separator}win32" | "win32"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/internal/bytealg/index_ppc64x.s

    	VSPLTH   $3, V25, V31 // Splat mask
    	VSPLTH   $0, V0, V1   // Splat 1st 2 bytes of sep
    	VSPLTISB $0, V10      // Clear V10
    
    	// First case: 2 byte separator
    	// V1: 2 byte separator splatted
    	// V2: 16 bytes at addr
    	// V4: 16 bytes at addr+1
    	// Compare 2 byte separator at start
    	// and at start+1. Use VSEL to combine
    	// those results to find the first
    	// matching start byte, returning
    	// that value when found. Loop as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10DebugTypeRenderer.kt

                printCollectionIfNotEmpty(arguments, separator = ", ", prefix = "<", postfix = ">") {
                    renderTypeProjection(it, printer)
                }
            }
        }
    
        private fun renderFqName(fqName: FqName, printer: PrettyPrinter) {
            printer.printCollection(fqName.pathSegments(), separator = ".") {
                append(it.render())
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top