Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 367 for xBuckets (0.21 sec)

  1. pkg/credentialprovider/plugin/metrics.go

    		&metrics.HistogramOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           "credential_provider_plugin_duration",
    			Help:           "Duration of execution in seconds for credential provider plugin",
    			Buckets:        metrics.DefBuckets,
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"plugin_name"},
    	)
    )
    
    // registerMetrics registers credential provider metrics.
    func registerMetrics() {
    	registerOnce.Do(func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 20:59:53 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. ci/official/envs/public_cache_push

    # limitations under the License.
    # ==============================================================================
    # Sourcing this enables Bazel remote cache (read and write)
    # Note that "_push" cache configs write to GCS buckets and require
    # authentication. If you are not a Googler, source "public_cache" to enable the
    # public read-only cache.
    # The cache configs are different for MacOS and Linux
    if [[ $(uname -s) == "Darwin" ]]; then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. cmd/server-main.go

    		})
    
    		var buckets []BucketInfo
    		// List buckets to initialize bucket metadata sub-sys.
    		bootstrapTrace("listBuckets", func() {
    			for {
    				buckets, err = newObject.ListBuckets(GlobalContext, BucketOptions{})
    				if err != nil {
    					if configRetriableErrors(err) {
    						logger.Info("Waiting for list buckets to succeed to initialize buckets.. possible cause (%v)", err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. docs/sts/keycloak.md

    2018/12/26 17:49:36 listening on http://localhost:8888/
    ```
    
    This will open the login page of keycloak, upon successful login, STS credentials along with any buckets discovered using the credentials will be printed on the screen, for example:
    
    ```
    {
      "buckets": [
        "bucket-x"
      ],
      "credentials": {
        "AccessKeyID": "6N2BALX7ELO827DXS3GK",
        "SecretAccessKey": "23JKqAD+um8ObHqzfIh+bfqwG9V8qs9tFY6MqeFR+xxx",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_experimental_test.cc

                         ->histogram_value.sum());
      TFE_MonitoringDeleteBuckets(buckets);
      TFE_MonitoringDeleteSampler0(sampler);
      TF_DeleteStatus(status);
    }
    
    TEST(CAPI, MonitoringMultipleSampler) {
      TF_Status* status = TF_NewStatus();
      auto* buckets = TFE_MonitoringNewExponentialBuckets(1.0, 2.0, 2);
      auto* sampler1 = TFE_MonitoringNewSampler1("test/sampler1", buckets, status,
                                                 "test", "label1");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 03:14:26 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  6. src/runtime/metrics.go

    		v.pointer = unsafe.Pointer(hist)
    	}
    	hist.buckets = buckets
    	if len(hist.counts) != len(hist.buckets)-1 {
    		hist.counts = make([]uint64, len(buckets)-1)
    	}
    	return hist
    }
    
    // metricFloat64Histogram is a runtime copy of runtime/metrics.Float64Histogram
    // and must be kept structurally identical to that type.
    type metricFloat64Histogram struct {
    	counts  []uint64
    	buckets []float64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. pkg/controller/cronjob/metrics/metrics.go

    			Name:           "job_creation_skew_duration_seconds",
    			Help:           "Time between when a cronjob is scheduled to be run, and when the corresponding job is created",
    			StabilityLevel: metrics.STABLE,
    			Buckets:        metrics.ExponentialBuckets(1, 2, 10),
    		},
    	)
    )
    
    var registerMetrics sync.Once
    
    // Register registers CronjobController metrics.
    func Register() {
    	registerMetrics.Do(func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 04 12:55:32 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. helm-releases/minio-3.6.2.tgz

    "minio-trusted-certs" or --set trustedCertsSecret=minio-trusted-certs ``` ### Create buckets after install Install the chart, specifying the buckets you want to create after install: ```bash helm install --set buckets[0].name=bucket1,buckets[0].policy=none,buckets[0].purge=false minio/minio ``` Description of the configuration parameters used above - - `buckets[].name` - name of the bucket to create, must be a string with length > 0 - `buckets[].policy` - can be one of none|download|upload|public - `buckets[].purge`...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 17 18:30:55 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  9. helm-releases/minio-5.0.6.tgz

    "minio-trusted-certs" or --set trustedCertsSecret=minio-trusted-certs ``` ### Create buckets after install Install the chart, specifying the buckets you want to create after install: ```bash helm install --set buckets[0].name=bucket1,buckets[0].policy=none,buckets[0].purge=false minio/minio ``` Description of the configuration parameters used above - - `buckets[].name` - name of the bucket to create, must be a string with length > 0 - `buckets[].policy` - can be one of none|download|upload|public - `buckets[].purge`...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 13 06:53:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  10. helm-releases/minio-2.0.1.tgz

    "minio-trusted-certs" or --set trustedCertsSecret=minio-trusted-certs ``` Create buckets after install ---------- Install the chart, specifying the buckets you want to create after install: ```bash helm install --set buckets[0].name=bucket1,buckets[0].policy=none,buckets[0].purge=false minio/minio ``` Description of the configuration parameters used above - - `buckets[].name` - name of the bucket to create, must be a string with length > 0 - `buckets[].policy` - can be one of none|download|upload|public - `buckets[].purge`...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 31 09:09:09 UTC 2021
    - 13.6K bytes
    - Viewed (0)
Back to top