Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 693 for minuti (0.25 sec)

  1. .github/workflows/run-mint.sh

    export JOB_NAME="$4"
    export MINT_MODE="full"
    
    docker system prune -f || true
    docker volume prune -f || true
    docker volume rm $(docker volume ls -f dangling=true) || true
    
    ## change working directory
    cd .github/workflows/mint
    
    docker-compose -f minio-${MODE}.yaml up -d
    sleep 1m
    
    docker system prune -f || true
    docker volume prune -f || true
    docker volume rm $(docker volume ls -q -f dangling=true) || true
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/time.gox

    >;
     func (t <type 3>) ISOWeek () (year <type -11>, week <type -11>);
     func (t <type 3>) Clock () (hour <type -11>, min <type -11>, sec <type -11>);
     func (t <type 3>) Hour () <type -11>;
     func (t <type 3>) Minute () <type -11>;
     func (t <type 3>) Second () <type -11>;
     func (t <type 3>) Nanosecond () <type -11>;
     func (t <type 3>) YearDay () <type -11>;
     func (t <type 3>) Add (d <type 1>) <type 3>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  3. pilot/pkg/leaderelection/k8sleaderelection/healthzadaptor_test.go

    				config: LeaderElectionConfig{
    					Lock:          &fakeLock{identity: "healthTest"},
    					LeaseDuration: time.Minute,
    					Name:          "foo",
    				},
    				observedRecord: rl.LeaderElectionRecord{
    					HolderIdentity: "healthTest",
    				},
    				observedTime: current,
    				clock:        clock.NewFakeClock(current.Add(time.Minute).Add(time.Second)),
    			},
    		},
    	}
    
    	for _, test := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 12 18:41:53 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager_test.go

    				diskGC := &mockDiskGC{err: nil}
    				nodeRef := &v1.ObjectReference{Kind: "Node", Name: "test", UID: types.UID("test"), Namespace: ""}
    
    				config := Config{
    					PressureTransitionPeriod: time.Minute * 5,
    					Thresholds: []evictionapi.Threshold{
    						{
    							Signal:   evictionapi.SignalMemoryAvailable,
    							Operator: evictionapi.OpLessThan,
    							Value: evictionapi.ThresholdValue{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. plugin/pkg/admission/imagepolicy/config.go

    	maxRetryBackoff     = time.Duration(5) * time.Minute
    	defaultAllowTTL     = time.Duration(5) * time.Minute
    	defaultDenyTTL      = time.Duration(30) * time.Second
    	minAllowTTL         = time.Duration(1) * time.Second
    	maxAllowTTL         = time.Duration(30) * time.Minute
    	minDenyTTL          = time.Duration(1) * time.Second
    	maxDenyTTL          = time.Duration(30) * time.Minute
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 04:07:36 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. pkg/ledger/ledger_test.go

    	"golang.org/x/sync/errgroup"
    
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestLongKeys(t *testing.T) {
    	longKey := "virtual-service/frontend/default"
    	l := smtLedger{tree: newSMT(hasher, nil, time.Minute)}
    	_, err := l.Put(longKey+"1", "1")
    	assert.NoError(t, err)
    	_, err = l.Put(longKey+"2", "2")
    	assert.NoError(t, err)
    	res, err := l.Get(longKey + "1")
    	assert.NoError(t, err)
    	assert.Equal(t, res, "1")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 12 16:12:59 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. pkg/proxy/config/config_test.go

    	stopCh := make(chan struct{})
    	defer close(stopCh)
    
    	sharedInformers := informers.NewSharedInformerFactory(client, time.Minute)
    
    	config := NewServiceConfig(ctx, sharedInformers.Core().V1().Services(), time.Minute)
    	handler := NewServiceHandlerMock()
    	config.RegisterEventHandler(handler)
    	go sharedInformers.Start(stopCh)
    	go config.Run(stopCh)
    
    	service := &v1.Service{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. cmd/metrics-v3-cluster-iam.go

    	pluginAuthnServiceSuccMaxRttMsMinuteMD   = NewCounterMD(pluginAuthnServiceSuccMaxRttMsMinute, "When plugin authentication is configured, returns maximum round-trip-time of successful requests in the last full minute")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 02 08:20:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. tests/integration/telemetry/policy/testdata/rate-limit-configmap.yaml

    data:
      config.yaml: |
        domain: echo-ratelimit
        descriptors:
          - key: PATH
            value: "/"
            rate_limit:
              unit: minute
              requests_per_unit: 1
          - key: PATH
            rate_limit:
              unit: minute
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 15 19:50:52 UTC 2021
    - 901 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/time_budget_test.go

    	nextTime = nextTime.Add(-2 * time.Minute)
    	fakeClock.SetTime(nextTime)
    	if res := budget.takeAvailable(); res != time.Duration(0) {
    		t.Errorf("Expected: %v, got: %v", time.Duration(0), res)
    	}
    	// wait for longer than the maxBudget
    	// verify that adding a negative value didn't affected
    	nextTime = nextTime.Add(10 * time.Minute)
    	fakeClock.SetTime(nextTime)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 2.8K bytes
    - Viewed (0)
Back to top