Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for DELIMITED (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/common/maplist.go

    	var delimited strings.Builder
    	for _, key := range ks.sts.XListMapKeys() {
    		v, ok := obj[key]
    		if !ok {
    			return nil, false
    		}
    
    		switch v.(type) {
    		case bool:
    			fmt.Fprintf(&delimited, keyDelimiter+"%t", v)
    		case float64:
    			fmt.Fprintf(&delimited, keyDelimiter+"%f", v)
    		case int64:
    			fmt.Fprintf(&delimited, keyDelimiter+"%d", v)
    		case string:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 02:56:51 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. pkg/test/framework/features/README.md

    ## Adding New Feature Constants
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http1/HeadersReader.kt

     * limitations under the License.
     */
    package okhttp3.internal.http1
    
    import okhttp3.Headers
    import okio.BufferedSource
    
    /**
     * Parse all headers delimited by "\r\n" until an empty line. This throws if headers exceed 256 KiB.
     */
    class HeadersReader(val source: BufferedSource) {
      private var headerLimit = HEADER_LIMIT.toLong()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. security/pkg/pki/util/dual_use.go

    // limitations under the License.
    
    package util
    
    import (
    	"fmt"
    	"strings"
    )
    
    // DualUseCommonName extracts a valid CommonName from a comma-delimited host string
    // for dual-use certificates.
    func DualUseCommonName(host string) (string, error) {
    	// cn uses one hostname, drop the rest
    	first := strings.SplitN(host, ",", 2)[0]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/util/internal/ArgumentsSplitter.java

    import java.util.ArrayList;
    import java.util.List;
    
    public class ArgumentsSplitter {
    
        /**
         * Splits the arguments string (for example, a program command line) into a collection.
         * Only supports space-delimited and/or quoted command line arguments. This currently does not handle escaping characters such as quotes.
         *
         * @param arguments the arguments, for example command line args.
         * @return separate command line arguments.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 2.2K bytes
    - Viewed (0)
  6. src/net/http/example_filesystem_test.go

    package http_test
    
    import (
    	"io/fs"
    	"log"
    	"net/http"
    	"strings"
    )
    
    // containsDotFile reports whether name contains a path element starting with a period.
    // The name is assumed to be a delimited by forward slashes, as guaranteed
    // by the http.FileSystem interface.
    func containsDotFile(name string) bool {
    	parts := strings.Split(name, "/")
    	for _, part := range parts {
    		if strings.HasPrefix(part, ".") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 02:32:42 UTC 2020
    - 2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    		"admission plugins that should be enabled in addition to default enabled ones ("+
    		strings.Join(a.defaultEnabledPluginNames(), ", ")+"). "+
    		"Comma-delimited list of admission plugins: "+strings.Join(a.Plugins.Registered(), ", ")+". "+
    		"The order of plugins in this flag does not matter.")
    	fs.StringSliceVar(&a.DisablePlugins, "disable-admission-plugins", a.DisablePlugins, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. src/html/template/url.go

    func urlEscaper(args ...any) string {
    	return urlProcessor(false, args...)
    }
    
    // urlNormalizer normalizes URL content so it can be embedded in a quote-delimited
    // string or parenthesis delimited url(...).
    // The normalizer does not encode all HTML specials. Specifically, it does not
    // encode '&' so correct embedding in an HTML attribute requires escaping of
    // '&' to '&'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/options/admission.go

    		"The names in the below list may represent a validating plugin, a mutating plugin, or both. "+
    		"The order of plugins in which they are passed to this flag does not matter. "+
    		"Comma-delimited list of: "+strings.Join(a.GenericAdmission.Plugins.Registered(), ", ")+".")
    	fs.MarkDeprecated("admission-control", "Use --enable-admission-plugins or --disable-admission-plugins instead. Will be removed in a future version.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/Hasher.java

     * must be identical across languages. Also beware that {@link Charset} definitions may occasionally
     * change between Java releases.
     *
     * <p><b>Warning:</b> Chunks of data that are put into the {@link Hasher} are not delimited. The
     * resulting {@link HashCode} is dependent only on the bytes inserted, and the order in which they
     * were inserted, not how those bytes were chunked into discrete put() operations. For example, the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top