Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,422 for indicators (0.23 sec)

  1. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    includes, but is not limited to the following well known keys: * kubernetes.io/hostname: the value indicates the hostname of the node\n  where the endpoint is located. This should match the corresponding\n  node label.\n* topology.kubernetes.io/zone: the value indicates the zone where the\n  endpoint is located. This should match the corresponding node label.\n* topology.kubernetes.io/region: the value indicates the region where the\n  endpoint is located. This should match the corresponding node label.\nThis...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. pkg/config/constants/constants.go

    	// ServiceTraffic indicates that service traffic should go through the intended waypoint.
    	ServiceTraffic = "service"
    	// WorkloadTraffic indicates that workload traffic should go through the intended waypoint.
    	WorkloadTraffic = "workload"
    	// AllTraffic indicates that all traffic should go through the intended waypoint.
    	AllTraffic = "all"
    	// NoTraffic indicates that no traffic should go through the intended waypoint.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/cmd/internal/objabi/pkgspecial.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package objabi
    
    import "sync"
    
    // PkgSpecial indicates special build properties of a given runtime-related
    // package.
    type PkgSpecial struct {
    	// Runtime indicates that this package is "runtime" or imported by
    	// "runtime". This has several effects (which maybe should be split out):
    	//
    	// - Implicit allocation is disallowed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. operator/pkg/helmreconciler/common.go

    	// operatorReconcileStr indicates that the operator will reconcile the resource.
    	operatorReconcileStr = "Reconcile"
    	// IstioComponentLabelStr indicates which Istio component a resource belongs to.
    	IstioComponentLabelStr = name.OperatorAPINamespace + "/component"
    	// istioVersionLabelStr indicates the Istio version of the installation.
    	istioVersionLabelStr = name.OperatorAPINamespace + "/version"
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. src/packaging/common/scripts/prerm

    ${packaging.scripts.header}
    
    #
    # This script is executed in the pre-remove phase
    #
    #   On Debian,
    #       $1=remove    : indicates a removal
    #       $1=upgrade   : indicates an upgrade
    #
    #   On RedHat,
    #       $1=0         : indicates a removal
    #       $1=1         : indicates an upgrade
    
    
    
    STOP_REQUIRED=false
    
    case "$1" in
    
        # Debian ####################################################
        remove)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  6. cmd/object-api-datatypes.go

    	ActualSize *int64
    
    	// IsDir indicates if the object is prefix.
    	IsDir bool
    
    	// Hex encoded unique entity tag of the object.
    	ETag string
    
    	// Version ID of this object.
    	VersionID string
    
    	// IsLatest indicates if this is the latest current version
    	// latest can be true for delete marker or a version.
    	IsLatest bool
    
    	// DeleteMarker indicates if the versionId corresponds
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. operator/pkg/metrics/monitoring.go

    		"Number of component manifests rendered",
    	)
    
    	// OwnedResourceTotal indicates the number of resources
    	// currently owned by the CR with given name and revision.
    	OwnedResourceTotal = monitoring.NewGauge(
    		"owned_resource_total",
    		"Number of resources currently owned by the operator",
    	)
    
    	// ResourceCreationTotal indicates the number of resources
    	// created by the operator for a CR and revision.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conditions.go

    	// InvalidDestinationPermit indicates a destination was not permitted
    	InvalidDestinationPermit ConfigErrorReason = ConfigErrorReason(k8s.RouteReasonRefNotPermitted)
    	// InvalidDestinationKind indicates an issue with the destination kind
    	InvalidDestinationKind ConfigErrorReason = ConfigErrorReason(k8s.RouteReasonInvalidKind)
    	// InvalidDestinationNotFound indicates a destination does not exist
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepository.java

         *
         * @since 4.5
         *
         */
        interface MetadataSources {
            /**
             * Indicates that this repository will contain Gradle metadata.
             */
            void gradleMetadata();
    
            /**
             * Indicates that this repository will contain Ivy descriptors.
             * If the Ivy file contains a marker telling that Gradle metadata exists
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 02 20:32:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/errors/errors.go

    }
    
    // NewBadRequest creates an error that indicates that the request is invalid and can not be processed.
    func NewBadRequest(reason string) *StatusError {
    	return &StatusError{metav1.Status{
    		Status:  metav1.StatusFailure,
    		Code:    http.StatusBadRequest,
    		Reason:  metav1.StatusReasonBadRequest,
    		Message: reason,
    	}}
    }
    
    // NewTooManyRequests creates an error that indicates that the client must try again later because
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 21 03:41:32 UTC 2022
    - 30.5K bytes
    - Viewed (0)
Back to top