Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfoIntegrationSpec.groovy

            } else {
                executer.withArgument('waitForExpiration')
            }
            executer.run()
    
            then:
            file(EXPIRATION_EVENT).text.startsWith "onExpirationEvent fired with: expiring daemon with TestExpirationStrategy uuid:"
    
            where:
            continuous << [true, false]
        }
    
        def "daemon expiration listener is implicitly for the current build only"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonRegistryUnavailableExpirationStrategy.java

                final File daemonRegistryDir = daemonContext.getDaemonRegistryDir();
                if (!new DaemonDir(daemonRegistryDir).getRegistry().canRead()) {
                    LOG.warn("Daemon registry {} became unreadable. Expiring daemon.", daemonRegistryDir);
                    return new DaemonExpirationResult(GRACEFUL_EXPIRE, REGISTRY_BECAME_UNREADABLE);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/cache/lruexpirecache.go

    	maxSize      int
    	evictionList list.List
    	entries      map[interface{}]*list.Element
    }
    
    // NewLRUExpireCache creates an expiring cache with the given size
    func NewLRUExpireCache(maxSize int) *LRUExpireCache {
    	return NewLRUExpireCacheWithClock(maxSize, realClock{})
    }
    
    // NewLRUExpireCacheWithClock creates an expiring cache with the given size, using the specified clock to obtain the current time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    //
    // GoCreate events can happen on bare Ps in a variety of situations and
    // and earlier version of the parser assumed this wasn't possible. At
    // the time of writing, one such example is goroutines created by expiring
    // timers.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/CookieJar.kt

     * implementations may store cookies in memory; sophisticated ones may use the file system or
     * database to hold accepted cookies. The [cookie storage model][rfc_6265_53] specifies policies for
     * updating and expiring cookies.
     *
     * [rfc_6265_53]: https://tools.ietf.org/html/rfc6265#section-5.3
     */
    interface CookieJar {
      /**
       * Saves [cookies] from an HTTP response to this store according to this jar's policy.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/cache.go

    import (
    	"bytes"
    	"time"
    	"unsafe"
    
    	utilcache "k8s.io/apimachinery/pkg/util/cache"
    	"k8s.io/apiserver/pkg/storage/value"
    	"k8s.io/utils/clock"
    )
    
    type simpleCache struct {
    	cache *utilcache.Expiring
    	ttl   time.Duration
    }
    
    func newSimpleCache(clock clock.Clock, ttl time.Duration) *simpleCache {
    	cache := utilcache.NewExpiringWithClock(clock)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. cmd/license-update.go

    			licenseUpdateTimer.Reset(licUpdateCycle)
    		}
    	}
    }
    
    func performLicenseUpdate(ctx context.Context, objectAPI ObjectLayer) {
    	// the subnet license renewal api renews the license only
    	// if required e.g. when it is expiring soon
    	url := globalSubnetConfig.BaseURL + licRenewPath
    
    	resp, err := globalSubnetConfig.Post(url, nil)
    	if err != nil {
    		subnetLogIf(ctx, fmt.Errorf("error from %s: %w", url, err))
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/cache.go

    // this is relevant in the context of nonce collision since transformers that are created
    // from encrypted DEKs retrieved from etcd cannot maintain their nonce counter state.
    type simpleCache struct {
    	cache *utilcache.Expiring
    	ttl   time.Duration
    	// hashPool is a per cache pool of hash.Hash (to avoid allocations from building the Hash)
    	// SHA-256 is used to prevent collisions
    	hashPool        *sync.Pool
    	providerName    string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 31 20:26:58 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

     * whenever unhealthy conditions are detected. Currently, this strategy monitors JVM memory
     * health by detecting GC thrashing and excessive heap or metaspace usage. In addition to
     * expiring the daemon, whenever unhealthy conditions are detected, this strategy will
     * print a warning log to the console informing the user of the issue and instructing them
     * on how to adjust daemon memory settings.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. docs/site-replication/run-multi-site-oidc.sh

    	echo "expecting the command to succeed, exiting.."
    	exit_1
    fi
    ./mc admin policy info minio3 projecta >/dev/null 2>&1
    if [ $? -ne 0 ]; then
    	echo "expecting the command to succeed, exiting.."
    	exit_1
    fi
    
    ./mc admin policy remove minio3 projecta
    
    sleep 10
    ./mc admin policy info minio1 projecta
    if [ $? -eq 0 ]; then
    	echo "expecting the command to fail, exiting.."
    	exit_1
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top