Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,900 for holds (0.04 sec)

  1. cmd/kube-controller-manager/app/options/deprecatedcontroller.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"github.com/spf13/pflag"
    
    	kubectrlmgrconfig "k8s.io/kubernetes/pkg/controller/apis/config"
    )
    
    // DeprecatedControllerOptions holds the DeprecatedController options, those option are deprecated.
    // TODO remove these fields once the deprecated flags are removed.
    type DeprecatedControllerOptions struct {
    	*kubectrlmgrconfig.DeprecatedControllerConfiguration
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 22 12:28:12 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/util/helpers.go

    limitations under the License.
    */
    
    package util
    
    import (
    	"sort"
    
    	"k8s.io/kubernetes/pkg/apis/flowcontrol"
    )
    
    var _ sort.Interface = FlowSchemaSequence{}
    
    // FlowSchemaSequence holds sorted set of pointers to FlowSchema objects.
    // FlowSchemaSequence implements `sort.Interface`
    type FlowSchemaSequence []*flowcontrol.FlowSchema
    
    func (s FlowSchemaSequence) Len() int {
    	return len(s)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 29 04:26:12 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  3. pkg/apis/apidiscovery/types.go

    	Items []APIGroupDiscovery
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // APIGroupDiscovery holds information about which resources are being served for all version of the API Group.
    // It contains a list of APIVersionDiscovery that holds a list of APIResourceDiscovery types served for a version.
    // Versions are in descending order of preference, with the first version being the preferred entry.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authentication/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Spec holds information about the request being evaluated
      optional TokenRequestSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the token can be authenticated.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixResolver.java

    /**
     * Resolves a plugin prefix.
     *
     * @since 3.0
     */
    public interface PluginPrefixResolver {
    
        /**
         * Resolves the plugin prefix for the specified request.
         *
         * @param request The request that holds the details about the plugin and the repositories to consult, must not be
         *            {@code null}.
         * @return The result of the prefix resolution, never {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/sym/compilation_unit.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sym
    
    import "cmd/internal/dwarf"
    
    // LoaderSym holds a loader.Sym value. We can't refer to this
    // type from the sym package since loader imports sym.
    type LoaderSym uint32
    
    // A CompilationUnit represents a set of source files that are compiled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:39:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. pkg/typemap/map.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package typemap
    
    import (
    	"reflect"
    
    	"istio.io/istio/pkg/ptr"
    )
    
    // TypeMap provides a map that holds a map of Type -> Value. There can be only a single value per type.
    // The value stored for a type must be of the same type as the key.
    type TypeMap struct {
    	inner map[reflect.Type]any
    }
    
    func NewTypeMap() TypeMap {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

        receiver: Any?,
        property: KProperty<*>
    ) = ExistingDomainObjectDelegate.of(
        delegateProvider.register(property.name, type.java, action)
    )
    
    
    /**
     * Holds the delegate provider for the `registering` property delegate with
     * the purpose of providing specialized implementations for the `provideDelegate` operator
     * based on the static type of the provider.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. cmd/bucket-stats.go

    package cmd
    
    import (
    	"fmt"
    	"math"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    )
    
    //go:generate msgp -file $GOFILE
    
    // ReplicationLatency holds information of bucket operations latency, such us uploads
    type ReplicationLatency struct {
    	// Single & Multipart PUTs latency
    	UploadHistogram LastMinuteHistogram
    }
    
    // Merge two replication latency into a new one
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/composition/DependencyManagementImporter.java

         * @param sources The dependency management sections to import, may be <code>null</code>.
         * @param request The model building request that holds further settings, must not be {@code null}.
         * @param problems The container used to collect problems that were encountered, must not be {@code null}.
         */
        Model importManagement(
                Model target,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top