Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 641 for indices (0.48 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker.go

    // the purpose of estimating the cost of incoming mutating requests.
    type watchTracker struct {
    	// indexes represents a set of registered indexes.
    	// It can't change after creation.
    	indexes builtinIndexes
    
    	lock       sync.Mutex
    	watchCount map[watchIdentifier]int
    }
    
    func NewWatchTracker() WatchTracker {
    	return &watchTracker{
    		indexes:    getBuiltinIndexes(),
    		watchCount: make(map[watchIdentifier]int),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  3. 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)
  4. pkg/kubelet/container/testing/mockdirentry.go

    func (m *MockDirEntry) Info() (fs.FileInfo, error) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "Info")
    	ret0, _ := ret[0].(fs.FileInfo)
    	ret1, _ := ret[1].(error)
    	return ret0, ret1
    }
    
    // Info indicates an expected call of Info.
    func (mr *MockDirEntryMockRecorder) Info() *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Info", reflect.TypeOf((*MockDirEntry)(nil).Info))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/config/BuildScanConfig.java

     *
     * @since 4.0
     */
    public interface BuildScanConfig {
    
        /**
         * Indicates whether a scan was <b>explicitly</b> requested.
         *
         * This effectively maps to {@link StartParameter#isBuildScan()}.
         */
        boolean isEnabled();
    
        /**
         * Indicates whether a scan was <b>explicitly not</b> requested.
         *
         * This effectively maps to {@link StartParameter#isNoBuildScan()}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. pkg/test/framework/label/labels.go

    // limitations under the License.
    
    package label
    
    const (
    	// Postsubmit indicates that the test should be run as part of a postsubmit run only.
    	Postsubmit Instance = "postsubmit"
    
    	// CustomSetup indicates that the test requires a custom Istio installation.
    	CustomSetup Instance = "customsetup"
    
    	// IPv4 indicates a test is only compatible with IPv4 clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 18 17:08:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/attributes/Category.java

     * <ul>
     *     <li>{@code library}: Indicates that the variant is a library, that usually means a binary and a set of dependencies</li>
     *     <li>{@code platform}: Indicates that the variant is a platform, that usually means a definition of dependency constraints</li>
     *     <li>{@code documentation}: Indicates that the variant is documentation of the software module</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 30 17:48:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. security/pkg/server/ca/monitoring.go

    		"The unix timestamp, in seconds, when Citadel root cert will expire. "+
    			"A negative time indicates the cert is expired.",
    	)
    	rootCertExpirySeconds = monitoring.NewDerivedGauge(
    		"citadel_server_root_cert_expiry_seconds",
    		"The time remaining, in seconds, before the root certificate will expire. "+
    			"A negative value indicates the cert is expired.",
    	)
    	certChainExpiryTimestamp = monitoring.NewGauge(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:09 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. pkg/volume/util/types/types.go

    	}
    	// Handle panic, if any, from operationFunc()
    	defer runtime.RecoverFromPanic(&detailedErr)
    
    	context = o.OperationFunc()
    	return context.EventErr, context.DetailedErr
    }
    
    // FailedPrecondition error indicates CSI operation returned failed precondition
    // error
    type FailedPrecondition struct {
    	msg string
    }
    
    func (err *FailedPrecondition) Error() string {
    	return err.msg
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/chans.go

    // Next method to retrieve values. The Sender provides a Send method
    // to send values and a Close method to stop sending values. The Next
    // method indicates when the Sender has been closed, and the Send
    // method indicates when the Receiver has been freed.
    //
    // This is a convenient way to exit a goroutine sending values when
    // the receiver stops reading them.
    func Ranger[T any]() (*Sender[T], *Receiver[T]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top