Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 960 for outdated (0.17 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCleanupIntegrationTest.groovy

            gcFile.createFile().lastModified = daysAgo(8)
    
            and:
            def outdated = createCacheEntryDir("outdated")
            writeLastFileAccessTimeToJournal(outdated, daysAgo(15))
    
            expect:
            ConcurrentTestUtil.poll(60, 0, 10) {
                configurationCacheRun 'help'
                run '--stop'
                assert !outdated.isDirectory()
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. hack/lint-dependencies.sh

    outdated=$(go list -m -json all | jq -r "
      select(.Replace.Version != null) |
      select(.Version != .Replace.Version) |
      select(.Path) |
      \"\(.Path)
        pinned:    \(.Replace.Version)
        preferred: \(.Version)
        hack/pin-dependency.sh \(.Path) \(.Version)\"
    ")
    if [[ -n "${outdated}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access_test.go

    			namespace:     namespace,
    			expectedQuota: resourceQuota,
    		},
    		{
    			description:   "object is outdated and not found with client",
    			cacheInput:    []*corev1.ResourceQuota{resourceQuota},
    			ttl:           -30 * time.Second,
    			namespace:     namespace,
    			expectedQuota: nil,
    		},
    		{
    			description:   "object is outdated but is found with client",
    			cacheInput:    []*corev1.ResourceQuota{resourceQuota},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal.go

    		Reason:  reason,
    		Message: fmt.Sprintf("the HPA was unable to compute the replica count: %v", err),
    	}
    }
    
    // storeScaleEvent stores (adds or replaces outdated) scale event.
    // outdated events to be replaced were marked as outdated in the `markScaleEventsOutdated` function
    func (a *HorizontalController) storeScaleEvent(behavior *autoscalingv2.HorizontalPodAutoscalerBehavior, key string, prevReplicas, newReplicas int32) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal_test.go

    				{6, time.Now().Add(-time.Second * time.Duration(59)), false},
    				{7, time.Now().Add(-time.Second * time.Duration(61)), false}, // outdated event, should be marked as outdated
    				{9, time.Now().Add(-time.Second * time.Duration(61)), false}, // outdated event, should be replaced
    			},
    			newScaleEvents: []timestampedScaleEvent{
    				{8, time.Now(), false},
    				{6, time.Now(), false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  6. scripts/docs.py

        generated_content = generate_readme_content()
        readme_content = readme_path.read_text("utf-8")
        if generated_content != readme_content:
            typer.secho(
                "README.md outdated from the latest index.md", color=typer.colors.RED
            )
            raise typer.Abort()
        typer.echo("Valid README ✅")
    
    
    @app.command()
    def build_all() -> None:
        """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. cmd/erasure-healing.go

    		err := fmt.Errorf("unexpected file distribution (%v) from outdated disks (%v), looks like backend disks have been manually modified refusing to heal %s/%s(%s)",
    			latestMeta.Erasure.Distribution, outDatedDisks, bucket, object, versionID)
    		healingLogOnceIf(ctx, err, "heal-object-outdated-disks")
    		return er.defaultHealResult(latestMeta, storageDisks, storageEndpoints, errs,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  8. src/os/path_windows.go

    		// We don't want to call syscall.Getwd here, as that call is expensive to do
    		// every time fixLongPath is called with a relative path, so we use a cache.
    		// Note that getwdCache might be outdated if the working directory has been
    		// changed without using os.Chdir, i.e. using syscall.Chdir directly or cgo.
    		// This is fine, as the worst that can happen is that we fail to fix the path.
    		getwdCache.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. cmd/metacache-bucket.go

    	// Create new and add.
    	best := o.newMetacache()
    	b.caches[o.ID] = best
    	b.cachesRoot[best.root] = append(b.cachesRoot[best.root], best.id)
    	b.updated = true
    	b.debugf("returning new cache %s, bucket: %v", best.id, best.bucket)
    	return best
    }
    
    // cleanup removes redundant and outdated entries.
    func (b *bucketMetacache) cleanup() {
    	// Entries to remove.
    	remove := make(map[string]struct{})
    
    	// Test on a copy
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	// First update, so originalPod is outdated.
    	updatedPod := &example.Pod{}
    	if err := store.GuaranteedUpdate(ctx, key, updatedPod, false, nil,
    		storage.SimpleUpdate(func(obj runtime.Object) (runtime.Object, error) {
    			pod := obj.(*example.Pod)
    			pod.ObjectMeta.Labels = map[string]string{"foo": "bar"}
    			return pod, nil
    		}), nil); err != nil {
    		t.Errorf("Unexpected failure during updated: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top