Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 91 for Hyphen (0.15 sec)

  1. pkg/proxy/nftables/proxier.go

    		}
    	}
    	proxier.serviceCIDRs = strings.Join(cidrsForProxier, ",")
    }
    
    const (
    	// Maximum length for one of our chain name prefixes, including the trailing
    	// hyphen.
    	chainNamePrefixLengthMax = 16
    
    	// Maximum length of the string returned from servicePortChainNameBase or
    	// servicePortEndpointChainNameBase.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. src/net/http/request.go

    	//
    	// HTTP defines that header names are case-insensitive. The
    	// request parser implements this by using CanonicalHeaderKey,
    	// making the first character and any characters following a
    	// hyphen uppercase and the rest lowercase.
    	//
    	// For client requests, certain headers such as Content-Length
    	// and Connection are automatically written when needed and
    	// values in Header may be ignored. See the documentation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(parse("http://ABCD").host).isEqualTo("abcd")
        assertThat(parse("http://Σ").host).isEqualTo("xn--4xa")
      }
    
      @Test
      fun hostnameIgnoredCharacters() {
        // The soft hyphen (­) should be ignored.
        assertThat(parse("http://AB\u00adCD").host).isEqualTo("abcd")
      }
    
      @Test
      fun hostnameMultipleCharacterMapping() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                      type: string
                                  type: object
                                description: The header keys must be lowercase and use
                                  hyphen as the separator, e.g.
                                type: object
                              ignoreUriCase:
                                description: Flag to specify whether the URI matching
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

    contain duplicates. At least one element is required. The indexes are represented as intervals separated by commas. The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen. The number are listed in represented by the first and last element of the series, separated by a hyphen. For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as \"1,3-5,7\". When this field is null, this field doesn't default to any value and is never evaluated at any time.",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                                      type: string
                                  type: object
                                description: The header keys must be lowercase and use
                                  hyphen as the separator, e.g.
                                type: object
                              ignoreUriCase:
                                description: Flag to specify whether the URI matching
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  7. docs/de/docs/python-types.md

    ```
    
    ### Generische Typen mit Typ-Parametern
    
    Es gibt Datenstrukturen, die andere Werte enthalten können, wie etwa `dict`, `list`, `set` und `tuple`. Die inneren Werte können auch ihren eigenen Typ haben.
    
    Diese Typen mit inneren Typen werden „**generische**“ Typen genannt. Es ist möglich, sie mit ihren inneren Typen zu deklarieren.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:25 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/body-nested-models.md

    * Datenkonvertierung
    * Datenvalidierung
    * Automatische Dokumentation
    
    ## Spezielle Typen und Validierungen
    
    Abgesehen von normalen einfachen Typen, wie `str`, `int`, `float`, usw. können Sie komplexere einfache Typen verwenden, die von `str` erben.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                      type: string
                                  type: object
                                description: The header keys must be lowercase and use
                                  hyphen as the separator, e.g.
                                type: object
                              ignoreUriCase:
                                description: Flag to specify whether the URI matching
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  10. cmd/kubelet/app/options/globalflags.go

    	addCadvisorFlags(fs)
    	addCredentialProviderFlags(fs)
    	verflag.AddFlags(fs)
    	logs.AddFlags(fs, logs.SkipLoggingConfigurationFlags())
    }
    
    // normalize replaces underscores with hyphens
    // we should always use hyphens instead of underscores when registering kubelet flags
    func normalize(s string) string {
    	return strings.Replace(s, "_", "-", -1)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top