Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,900 for holds (0.07 sec)

  1. pkg/config/analysis/analyzers/virtualservice/util.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package virtualservice
    
    import (
    	"istio.io/api/networking/v1alpha3"
    )
    
    // AnnotatedDestination holds metadata about a Destination object that is used for analyzing
    type AnnotatedDestination struct {
    	RouteRule        string
    	ServiceIndex     int
    	DestinationIndex int
    	Destination      *v1alpha3.Destination
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authentication/v1/types.go

    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Spec holds information about the request being evaluated
    	Spec TokenReviewSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"`
    
    	// Status is filled in by the server and indicates whether the request can be authenticated.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      // (BorrowingCL) and is a limit on the total number of seats that this
      // level may borrow at any one time.
      // This field holds the ratio of that limit to the level's nominal
      // concurrency limit. When this field is non-nil, it must hold a
      // non-negative integer and the limit is calculated as follows.
      //
      // BorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // (BorrowingCL) and is a limit on the total number of seats that this
      // level may borrow at any one time.
      // This field holds the ratio of that limit to the level's nominal
      // concurrency limit. When this field is non-nil, it must hold a
      // non-negative integer and the limit is calculated as follows.
      //
      // BorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelBuildingEvent.java

    import java.util.function.Consumer;
    
    import org.apache.maven.api.model.Model;
    import org.apache.maven.api.services.ModelBuilderRequest;
    import org.apache.maven.api.services.ModelProblemCollector;
    
    /**
     * Holds data relevant for a model building event.
     *
     */
    public interface ModelBuildingEvent {
    
        /**
         * Gets the model being built. The precise state of this model depends on the event being fired.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/garbagecollectorcontroller.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"github.com/spf13/pflag"
    
    	garbagecollectorconfig "k8s.io/kubernetes/pkg/controller/garbagecollector/config"
    )
    
    // GarbageCollectorControllerOptions holds the GarbageCollectorController options.
    type GarbageCollectorControllerOptions struct {
    	*garbagecollectorconfig.GarbageCollectorControllerConfiguration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/validatingadmissionpolicycontroller.go

    import (
    	"fmt"
    
    	"github.com/spf13/pflag"
    
    	validatingadmissionpolicystatusconfig "k8s.io/kubernetes/pkg/controller/validatingadmissionpolicystatus/config"
    )
    
    // ValidatingAdmissionPolicyStatusControllerOptions holds the ValidatingAdmissionPolicyStatusController options.
    type ValidatingAdmissionPolicyStatusControllerOptions struct {
    	*validatingadmissionpolicystatusconfig.ValidatingAdmissionPolicyStatusControllerConfiguration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuilder.java

     *
     */
    public interface SettingsBuilder {
    
        /**
         * Builds the effective settings of the specified settings files.
         *
         * @param request The settings building request that holds the parameters, must not be {@code null}.
         * @return The result of the settings building, never {@code null}.
         * @throws SettingsBuildingException If the effective settings could not be built.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/version/PluginVersionResolver.java

     * Resolves a version for a plugin.
     *
     * @since 3.0
     */
    public interface PluginVersionResolver {
    
        /**
         * Resolves the version 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 version 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)
  10. staging/src/k8s.io/api/authentication/v1beta1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"spec":     "Spec holds information about the request being evaluated",
    	"status":   "Status is filled in by the server and indicates whether the token can be authenticated.",
    }
    
    func (TokenReview) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top