Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for expiring (0.19 sec)

  1. cmd/iam-etcd-store.go

    	}
    	if u.Credentials.SessionToken != "" {
    		jwtClaims, err := extractJWTClaims(u)
    		if err != nil {
    			if u.Credentials.IsTemp() {
    				// We should delete such that the client can re-request
    				// for the expiring credentials.
    				deleteKeyEtcd(ctx, ies.client, getUserIdentityPath(user, userType))
    				deleteKeyEtcd(ctx, ies.client, getMappedPolicyPath(user, userType, false))
    			}
    			return nil
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. pkg/scheduler/scheduler.go

    	internalqueue "k8s.io/kubernetes/pkg/scheduler/internal/queue"
    	"k8s.io/kubernetes/pkg/scheduler/metrics"
    	"k8s.io/kubernetes/pkg/scheduler/profile"
    )
    
    const (
    	// Duration the scheduler will wait before expiring an assumed pod.
    	// See issue #106361 for more details about this parameter and its value.
    	durationToExpireAssumedPod time.Duration = 0
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

            // Only consider repositories serving at least one version of the requested module.
            // This is meant to avoid repetitively expiring cache entries due to a 404 response for the requested module metadata
            // from one of the configured repositories.
            if (versions.isEmpty()) return
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  4. cmd/iam-object-store.go

    	}
    
    	if u.Credentials.SessionToken != "" {
    		jwtClaims, err := extractJWTClaims(u)
    		if err != nil {
    			if u.Credentials.IsTemp() {
    				// We should delete such that the client can re-request
    				// for the expiring credentials.
    				iamOS.deleteIAMConfig(ctx, getUserIdentityPath(user, userType))
    				iamOS.deleteIAMConfig(ctx, getMappedPolicyPath(user, userType, false))
    			}
    			return nil
    
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    		}
    		expNumWorkers := MetricV2{
    			Description: MetricDescription{
    				Namespace: nodeMetricNamespace,
    				Subsystem: ilmSubsystem,
    				Name:      expiryNumWorkers,
    				Help:      "Number of workers expiring object versions currently",
    				Type:      gaugeMetric,
    			},
    		}
    		trPendingTasks := MetricV2{
    			Description: getTransitionPendingTasksMD(),
    		}
    		trActiveTasks := MetricV2{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    			if retries.Add(1) != 1 {
    				return nil, errors.New("too many retries")
    			}
    			return nil, nil
    		}
    
    		res, err := cst.c.Get(cst.ts.URL)
    		if err != nil {
    			// Probably caused by the write timeout expiring before the handler runs.
    			t.Logf("Get error, retrying: %v", err)
    			cst.close()
    			continue
    		}
    		defer res.Body.Close()
    		_, err = io.Copy(io.Discard, res.Body)
    		if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. src/iter/pull_test.go

    			wantNG(0)
    
    			stop()
    			stop()
    			stop()
    			wantNG(0)
    		})
    	}
    }
    
    // stableNumGoroutine is like NumGoroutine but tries to ensure stability of
    // the value by letting any exiting goroutines finish exiting.
    func stableNumGoroutine() int {
    	// The idea behind stablizing the value of NumGoroutine is to
    	// see the same value enough times in a row in between calls to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/build.gradle.kts

        api(project(":hashing"))
        api(project(":internal-testing")) {
            because("Part of the public API")
        }
        api(project(":stdlib-java-extensions"))
        api(project(":jvm-services")) {
            because("Exposing jvm metadata via AvailableJavaHomes")
        }
        api(project(":launcher"))
        api(project(":logging"))
        api(project(":logging-api"))
        api(project(":native"))
        api(project(":persistent-cache"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/start.go

    	// Start crashmonitoring and uploading depending on what's requested
    	// and wait for the longer running child to complete before exiting:
    	// if we collected a crash before the upload finished, wait for the
    	// upload to finish before exiting
    	var g errgroup.Group
    
    	if reportCrashes {
    		g.Go(func() error {
    			crashmonitor.Child()
    			return nil
    		})
    	}
    	if upload {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/cni-watcher.go

    		select {
    		case <-s.ctx.Done():
    			// ctx done, we should silently go away
    			return
    		default:
    			// If the cniListener exits, at least we should record an error log
    			log.Errorf("CNI listener server exiting unexpectedly: %v", err)
    		}
    	}()
    
    	context.AfterFunc(s.ctx, func() {
    		if err := s.cniListenServer.Close(); err != nil {
    			log.Errorf("CNI listen server terminated with error: %v", err)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top