Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 893 for mapFor (0.27 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    func (b *Builder) Local() *Builder {
    	b.local = true
    	return b
    }
    
    func (b *Builder) isLocal() bool {
    	return b.local
    }
    
    // Mapper returns a copy of the current mapper.
    func (b *Builder) Mapper() *mapper {
    	mapper := *b.mapper
    	return &mapper
    }
    
    // URL accepts a number of URLs directly.
    func (b *Builder) URL(httpAttemptCount int, urls ...*url.URL) *Builder {
    	for _, u := range urls {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  2. cluster/images/etcd/migrate/versions_test.go

    		match  bool
    	}{
    		{&EtcdVersion{semver.Version{Major: 3, Minor: 1, Patch: 2}}, &EtcdVersion{semver.Version{Major: 3, Minor: 1, Patch: 0}}, true},
    		{&EtcdVersion{semver.Version{Major: 3, Minor: 1, Patch: 2}}, &EtcdVersion{semver.Version{Major: 3, Minor: 1, Patch: 2}}, true},
    
    		{&EtcdVersion{semver.Version{Major: 3, Minor: 0, Patch: 0}}, &EtcdVersion{semver.Version{Major: 3, Minor: 1, Patch: 0}}, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ContentFilterableExtensions.kt

     * Import `org.apache.tools.ant.filters.*` for access to all the standard Ant filters.
     *
     * Examples:
     *
     * ```
     * filter<HeadFilter>(mapOf("lines" to 25, "skip" to 2))
     * filter<ReplaceTokens>(mapOf("tokens" to mapOf("copyright" to "2009", "version" to "2.3.1")))
     * ```
     *
     * @param T type of the filter to add
     * @param properties map of filter properties
     * @return this
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_init_invalid_major.txt

    ! go mod init example.com/user/repo/v0
    stderr '(?s)^go: invalid module path "example.com/user/repo/v0": major version suffixes must be in the form of /vN and are only allowed for v2 or later(.*)go mod init example.com/user/repo/v2$'
    
    ! go mod init example.com/user/repo/v02
    stderr '(?s)^go: invalid module path "example.com/user/repo/v02": major version suffixes must be in the form of /vN and are only allowed for v2 or later(.*)go mod init example.com/user/repo/v2$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 21:34:32 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authorization/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *LocalSubjectAccessReview) APILifecycleIntroduced() (major, minor int) {
    	return 1, 2
    }
    
    // APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *Ingress) APILifecycleIntroduced() (major, minor int) {
    	return 1, 14
    }
    
    // APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *FlowSchema) APILifecycleIntroduced() (major, minor int) {
    	return 1, 20
    }
    
    // APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 03 18:04:51 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1beta2/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *FlowSchema) APILifecycleIntroduced() (major, minor int) {
    	return 1, 23
    }
    
    // APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 03 18:04:51 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  9. src/testing/fstest/mapfs.go

    	}
    	return n, nil
    }
    
    // A mapDir is a directory fs.File (so also an fs.ReadDirFile) open for reading.
    type mapDir struct {
    	path string
    	mapFileInfo
    	entry  []mapFileInfo
    	offset int
    }
    
    func (d *mapDir) Stat() (fs.FileInfo, error) { return &d.mapFileInfo, nil }
    func (d *mapDir) Close() error               { return nil }
    func (d *mapDir) Read(b []byte) (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/result.go

    func (r *Result) IgnoreErrors(fns ...ErrMatchFunc) *Result {
    	for _, fn := range fns {
    		r.ignoreErrors = append(r.ignoreErrors, utilerrors.Matcher(fn))
    	}
    	return r
    }
    
    // Mapper returns a copy of the builder's mapper.
    func (r *Result) Mapper() *mapper {
    	return r.mapper
    }
    
    // Err returns one or more errors (via a util.ErrorList) that occurred prior
    // to visiting the elements in the visitor. To see all errors including those
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 7.3K bytes
    - Viewed (0)
Back to top