Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 223 for whitespaces (0.15 sec)

  1. pkg/volume/util/volumepathhandler/volume_path_handler_linux_test.go

    		},
    		{
    			name:          "path is suffixed with whitespaces",
    			input:         fmt.Sprintf("%s\r\t\n ", defaultPath),
    			expectedOuput: defaultPath,
    		},
    		{
    			name:          "path is suffixed with \"(deleted)\"",
    			input:         pathWithSuffix("(deleted)"),
    			expectedOuput: defaultPath,
    		},
    		{
    			name:          "path is suffixed with \"(deleted)\" and whitespaces",
    			input:         pathWithSuffix(" (deleted)\t"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 13:53:00 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. .editorconfig

    indent_style = space
    indent_size = 4
    
    # We recommend you to keep these unchanged
    end_of_line = lf
    charset = utf-8
    trim_trailing_whitespace = true
    insert_final_newline = true
    
    # Markdown files sometimes need trailing whitespaces.
    [*.md]
    trim_trailing_whitespace = false
    
    [*.{yml,yaml}]
    indent_size = 2
    
    [gradle/verification-metadata.xml]
    indent_size = 3
    
    [subprojects/launcher/src/main/resources/release-features.txt]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 11:48:19 UTC 2023
    - 643 bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/PredicatesFile.java

                )
            )) {
                return reader.lines()
                    // If a line starts with #, it's a comment
                    .filter(line -> !line.startsWith("#"))
                    // We are not interested in whitespaces on the line level
                    .map(String::trim)
                    // If the line was empty, or only contained space (which was cut by the trim before), we skip the line
                    .filter(line -> !line.isEmpty())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r34/BuildActionCrossVersionSpec.groovy

    @TargetGradleVersion('>=3.4')
    class BuildActionCrossVersionSpec extends ToolingApiSpecification {
    
        @Issue("https://github.com/gradle/gradle/issues/1180")
        def "can load custom action from url containing whitespaces"() {
            setup:
            toolingApi.requireIsolatedDaemons()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

            'semerujdk17'    | semeruJvm17()            | JavaVersion.VERSION_17  | 'IBM JDK 17'                 | false
            'whitespaces'    | whitespaces('11.0.3')    | JavaVersion.VERSION_11  | 'AdoptOpenJDK JRE 11'        | true
        }
    
        def "probes whether #jdk is a j9 virtual machine"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/testFixtures/groovy/org/gradle/tooling/internal/provider/AbstractClassGraphSpec.groovy

            return new TestClassLoader(parent, classpath)
        }
    
        /**
         * Returns an URLClassloader containing URLs with un-encoded whitespaces.
         */
        ClassLoader faultyClassLoader(ClassLoader parent = ClassLoader.systemClassLoader.parent, List<File> classpath) {
            return new URLClassLoader(classpath.collect { it.toURL() } as URL[], parent)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/gofmt/internal.go

    			// Gofmt has turned the "; " into a "\n\n".
    			// There will be two non-blank lines with indent, hence 2*indent.
    			src = src[2*indent+len("package p\n\nfunc _() {"):]
    			// Remove only the "}\n" suffix: remaining whitespaces will be trimmed anyway
    			src = src[:len(src)-len("}\n")]
    			return bytes.TrimSpace(src)
    		}
    		// Gofmt has also indented the function body one level.
    		// Adjust that with indentAdj.
    		indentAdj = -1
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  8. src/go/format/internal.go

    			// Gofmt has turned the "; " into a "\n\n".
    			// There will be two non-blank lines with indent, hence 2*indent.
    			src = src[2*indent+len("package p\n\nfunc _() {"):]
    			// Remove only the "}\n" suffix: remaining whitespaces will be trimmed anyway
    			src = src[:len(src)-len("}\n")]
    			return bytes.TrimSpace(src)
    		}
    		// Gofmt has also indented the function body one level.
    		// Adjust that with indentAdj.
    		indentAdj = -1
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/openapi/openapi.go

    const (
    	extensionGVK = "x-kubernetes-group-version-kind"
    )
    
    // ToValidOperationID makes an string a valid op ID (e.g. removing punctuations and whitespaces and make it camel case)
    func ToValidOperationID(s string, capitalizeFirstLetter bool) string {
    	var buffer bytes.Buffer
    	capitalize := capitalizeFirstLetter
    	for i, r := range s {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 09 18:11:41 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  10. cluster/validate-cluster.sh

      # We are assigning the result of kubectl_retry get nodes operation to the res
      # variable in that way, to prevent stopping the whole script on an error.
      #
      # Bash command substitution $(kubectl_...) removes all trailing whitespaces
      # which are important for line counting.
      # Use trick from https://unix.stackexchange.com/a/383411 to avoid
      # newline truncation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
Back to top