Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 150 for RESTORED (0.24 sec)

  1. docs/metrics/prometheus/list.md

    | `minio_node_ilm_action_count_delete_restored_action`         | Total action outcome of lifecycle checks since server start for deletion of temporarily restored object    |
    | `minio_node_ilm_action_count_delete_restored_version_action` | Total action outcome of lifecycle checks since server start for deletion of a temporarily restored version |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  2. pkg/scheduler/util/assumecache/assume_cache.go

    		// This could be expected if object got deleted
    		c.logger.V(5).Info("Restore object", "description", c.description, "cacheKey", objName, "err", err)
    	} else {
    		objInfo.latestObj = objInfo.apiObj
    		c.logger.V(4).Info("Restored object", "description", c.description, "cacheKey", objName)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

            writeLastFileAccessTimeToJournal(buildscriptClasses.parentFile, daysAgo(MAX_CACHE_AGE_IN_DAYS + 1))
    
            and:
            createBuildFileThatPrintsClasspathURLs()
            // start as new process so journal is not restored from in-memory cache
            executer.withTasks("showBuildscript").start().waitForFinish()
    
            then:
            buildscriptClasses.assertDoesNotExist()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. pkg/scheduler/extender.go

    		}
    		nodeNameToVictims[nodeName] = victims
    	}
    	return nodeNameToVictims, nil
    }
    
    // convertPodUIDToPod returns v1.Pod object for given MetaPod and node info.
    // The v1.Pod object is restored by nodeInfo.Pods().
    // It returns an error if there's cache inconsistency between default scheduler
    // and extender, i.e. when the pod is not found in nodeInfo.Pods.
    func (h *HTTPExtender) convertPodUIDToPod(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/runtime/cgocall.go

    // of the callback will be done below the existing stack frames.
    // Before overwriting m.g0.sched.sp, it pushes the old value on the
    // m.g0 stack, so that it can be restored later.
    //
    // runtime.cgocallbackg (below) is now running on a real goroutine
    // stack (not an m.g0 stack).  First it calls runtime.exitsyscall, which will
    // block until the $GOMAXPROCS limit allows running this goroutine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. cmd/global-heal.go

    			objInfo := fi.ToObjectInfo(bucket, object, versioned)
    
    			evt := evalActionFromLifecycle(ctx, *lc, lr, rcfg, objInfo)
    			switch {
    			case evt.Action.DeleteRestored(): // if restored copy has expired,delete it synchronously
    				applyExpiryOnTransitionedObject(ctx, newObjectLayerFn(), objInfo, evt, lcEventSrc_Heal)
    				return false
    			case evt.Action.Delete():
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. cmd/metacache-server-pool.go

    			if evt.Action.Delete() {
    				globalExpiryState.enqueueByDays(objInfo, evt, lcEventSrc_s3ListObjects)
    				if !evt.Action.DeleteRestored() {
    					continue
    				} // queue version for replication upon expired restored copies if needed.
    			}
    		}
    
    		queueReplicationHeal(ctx, o.Bucket, objInfo, o.Replication, 0)
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    This will speed up your GitHub Actions build by avoiding the need to re-download Gradle versions and project dependencies,
    as well as re-using state from the previous workflow execution.
    
    Details about what entries are saved/restored from the cache can be viewed in the generated Job Summary:
    
    image::ci-systems/github-actions-cache-details.png[View cache entry details]
    
    == Detect vulnerable dependencies with a dependency-submission workflow
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		origState, err = s.getStateFromObject(cachedExistingObject)
    	} else {
    		origState, err = getCurrentState()
    		origStateIsCurrent = true
    	}
    	if err != nil {
    		return err
    	}
    	span.AddEvent("initial value restored")
    
    	transformContext := authenticatedDataString(preparedKey)
    	for {
    		if err := preconditions.Check(preparedKey, origState.obj); err != nil {
    			// If our data is already up to date, return the error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. src/math/big/arith_amd64.s

    // This file provides fast assembly versions for the elementary
    // arithmetic operations on vectors implemented in arith.go.
    
    // The carry bit is saved with SBBQ Rx, Rx: if the carry was set, Rx is -1, otherwise it is 0.
    // It is restored with ADDQ Rx, Rx: if Rx was -1 the carry is set, otherwise it is cleared.
    // This is faster than using rotate instructions.
    
    // func addVV(z, x, y []Word) (c Word)
    TEXT ·addVV(SB),NOSPLIT,$0
    	MOVQ z_len+8(FP), DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top