Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for WhiteSpace (0.2 sec)

  1. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	}
    
    	// Make sure the compared CAs are whitespace-trimmed. The function clientcmd.LoadFromFile() just decodes
    	// the base64 CA and places it raw in the v1.Config object. In case the user has extra whitespace
    	// in the CA they used to create a kubeconfig this comparison to a generated v1.Config will otherwise fail.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. hack/tools/go.mod

    	github.com/tomarrell/wrapcheck/v2 v2.8.1 // indirect
    	github.com/tommy-muehle/go-mnd/v2 v2.5.1 // indirect
    	github.com/ultraware/funlen v0.1.0 // indirect
    	github.com/ultraware/whitespace v0.1.0 // indirect
    	github.com/uudashr/gocognit v1.1.2 // indirect
    	github.com/xen0n/gosmopolitan v1.2.2 // indirect
    	github.com/yagipy/maintidx v1.0.0 // indirect
    	github.com/yeya24/promlinter v0.2.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. src/encoding/xml/read.go

    // setting it to the boolean value represented by the string. Whitespace
    // is trimmed and ignored.
    //
    // Unmarshal maps an XML element or attribute value to an integer or
    // floating-point field by setting the field to the result of
    // interpreting the string value in decimal. There is no check for
    // overflow. Whitespace is trimmed and ignored.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

         */
        doExtensiveTest("testdata/simplifypathnoprefixtests.txt");
      }
    
      private void doExtensiveTest(String resourceName) throws IOException {
        Splitter splitter = Splitter.on(CharMatcher.whitespace());
        URL url = getClass().getResource(resourceName);
        for (String line : Resources.readLines(url, UTF_8)) {
          Iterator<String> iterator = splitter.split(line).iterator();
          String input = iterator.next();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 11K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

            unitSuccess
        }
    
    
        internal
        fun notWhiteSpace(): Parser<Unit> = {
            when {
                tokenType == WHITE_SPACE -> {
                    ParserResult.Failure("Unexpected whitespace")
                }
    
                tokenType in COMMENTS -> {
                    ParserResult.Failure("Unexpected comments")
                }
    
                else -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. src/testing/benchmark.go

    // and by convention units should end in "/op".
    // ReportMetric overrides any previously reported value for the same unit.
    // ReportMetric panics if unit is the empty string or if unit contains
    // any whitespace.
    // If unit is a unit normally reported by the benchmark framework itself
    // (such as "allocs/op"), ReportMetric will override that metric.
    // Setting "ns/op" to 0 will suppress that built-in metric.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. pkg/util/iptables/testing/parse.go

    			return &fValue, field.Tag.Get("negatable") == "true"
    		}
    	}
    	return nil, false
    }
    
    // wordRegex matches a single word or a quoted string (at the start of the string, or
    // preceded by whitespace)
    var wordRegex = regexp.MustCompile(`(?:^|\s)("[^"]*"|[^"]\S*)`)
    
    // Used by ParseRule
    var boolPtrType = reflect.PointerTo(reflect.TypeOf(true))
    var ipTablesValuePtrType = reflect.TypeOf((*IPTablesValue)(nil))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. src/testing/slogtest/slogtest.go

    	explanation string
    	// f executes a single log event using its argument logger.
    	// So that mkdescs.sh can generate the right description,
    	// the body of f must appear on a single line whose first
    	// non-whitespace characters are "l.".
    	f func(*slog.Logger)
    	// If mod is not nil, it is called to modify the Record
    	// generated by the Logger before it is passed to the Handler.
    	mod func(*slog.Record)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    	configWithSameClusterCaByExternalFile.Clusters[currentCtx.Cluster].CertificateAuthority = tmpfile.Name()
    
    	// create a valid config but with whitespace around the CA PEM.
    	// validateKubeConfig() should tolerate that.
    	configWhitespace := config.DeepCopy()
    	configWhitespaceCtx := configWhitespace.Contexts[configWhitespace.CurrentContext]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/CacheBuilderSpec.java

     * representing days, hours, minutes, or seconds respectively. (There is currently no syntax to
     * request expiration in milliseconds, microseconds, or nanoseconds.)
     *
     * <p>Whitespace before and after commas and equal signs is ignored. Keys may not be repeated; it is
     * also illegal to use the following pairs of keys in a single value:
     *
     * <ul>
     *   <li>{@code maximumSize} and {@code maximumWeight}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 22 14:27:44 UTC 2022
    - 18.1K bytes
    - Viewed (0)
Back to top