Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,910 for nvalid (0.12 sec)

  1. operator/pkg/object/testdata/invalid.yaml

    Xiaopeng Han <******@****.***> 1690313976 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 132 bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/invalid.md

    Eric Van Norman <******@****.***> 1675805314 -0600
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 21:28:34 UTC 2023
    - 29 bytes
    - Viewed (0)
  3. src/go/parser/testdata/issue42951/not_a_file.go/invalid.go

    Carlos Alexandro Becker <******@****.***> 1606943053 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 02 23:05:56 UTC 2020
    - 44 bytes
    - Viewed (0)
  4. cmd/testdata/config/invalid.yaml

    Anis Eleuch <******@****.***> 1701941636 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 866 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/versions/versions.go

    func Compare(x, y string) int { return compare(stripGo(x), stripGo(y)) }
    
    // IsValid reports whether the version x is valid.
    func IsValid(x string) bool { return isValid(stripGo(x)) }
    
    // stripGo converts from a "go1.21" version to a "1.21" version.
    // If v does not start with "go", stripGo returns the empty string (a known invalid version).
    func stripGo(v string) string {
    	v, _, _ = strings.Cut(v, "-") // strip -bigcorp suffix.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-filter-wrong-field.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-filter-wrong-field
    spec:
      rules:
      - filters:
        - type: RequestHeaderModifier
          requestRedirect: 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 212 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-filter-duplicate-header.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-filter-duplicate-header
    spec:
      rules:
      - filters:
        - type: RequestHeaderModifier
          requestHeaderModifier:
            remove:
            - foo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 247 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-path-alphanum-specialchars-mix.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-path-alphanum-specialchars-mix
    spec:
      rules:
      - matches:
        - path:
            type: PathPrefix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 212 bytes
    - Viewed (0)
  9. cni/pkg/install/testdata/invalid-arr.conflist

    Pengyuan Bian <******@****.***> 1625172474 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 01 20:47:54 UTC 2021
    - 3 bytes
    - Viewed (0)
  10. src/go/types/version.go

    // contain release numbers ("go1.20.1" is not a valid goVersion).
    type goVersion string
    
    // asGoVersion returns v as a goVersion (e.g., "go1.20.1" becomes "go1.20").
    // If v is not a valid Go version, the result is the empty string.
    func asGoVersion(v string) goVersion {
    	return goVersion(version.Lang(v))
    }
    
    // isValid reports whether v is a valid Go version.
    func (v goVersion) isValid() bool {
    	return v != ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 23:12:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top