Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 369 for lasta (0.15 sec)

  1. cmd/object-api-datatypes.go

    }
    
    // ObjectInfo - represents object metadata.
    type ObjectInfo struct {
    	// Name of the bucket.
    	Bucket string
    
    	// Name of the object.
    	Name string
    
    	// Date and time when the object was last modified.
    	ModTime time.Time
    
    	// Total object size.
    	Size int64
    
    	// Actual size is the real size of the object uploaded by client.
    	ActualSize *int64
    
    	// IsDir indicates if the object is prefix.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. cmd/global-heal.go

    		if tracker.isHealed(bucket) {
    			continue
    		}
    
    		var forwardTo string
    		// If we resume to the same bucket, forward to last known item.
    		b := tracker.getBucket()
    		if b == bucket {
    			forwardTo = tracker.getObject()
    		}
    		if b != "" {
    			// Reset to where last bucket ended if resuming.
    			tracker.resume()
    		}
    		tracker.setObject("")
    		tracker.setBucket(bucket)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	resourceVersionTooHighRetrySeconds = 1
    
    	// eventFreshDuration is time duration of events we want to keep.
    	// We set it to `defaultBookmarkFrequency` plus epsilon to maximize
    	// chances that last bookmark was sent within kept history, at the
    	// same time, minimizing the needed memory usage.
    	eventFreshDuration = 75 * time.Second
    
    	// defaultLowerBoundCapacity is a default value for event cache capacity's lower bound.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. src/internal/trace/reader.go

    	// (7) Read the next event for the selected M and update the min-heap.
    	// (8) Return the selected event, goto (5) on the next call.
    
    	// Set us up to track the last timestamp and fix up
    	// the timestamp of any event that comes through.
    	defer func() {
    		if err != nil {
    			return
    		}
    		if err = e.validateTableIDs(); err != nil {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/net/resolverdialfunc_test.go

    // else is written.
    func (w ResponseWriter) SetTTL(seconds uint32) {
    	// ... intention is last one wins and mutates all previously
    	// written records too, but that's a little annoying.
    	// But it's also annoying if the requirement is it needs to be set
    	// last.
    	// And it's also annoying if it's possible for users to set
    	// different TTLs per Answer.
    	if w.a.wrote {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/inline.go

    	// that more than maxBackticks backquotes is too many.
    	if n > len(b.last) || b.scanned && b.last[n-1] < i+n {
    		goto NoMatch
    	}
    
    	for end := i + n; end < len(s); {
    		if s[end] != '`' {
    			end++
    			continue
    		}
    		estart := end
    		for end < len(s) && s[end] == '`' {
    			end++
    		}
    		m := end - estart
    		if !b.scanned && m < len(b.last) {
    			b.last[m-1] = estart
    		}
    		if m == n {
    			// Match.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/base.css

    }
    
    .footnote sup {
        vertical-align: baseline;
        font-size: 100%;
    }
    
    .note p:first-child, .tip p:first-child {
        margin-top: 0;
    }
    
    .note > :last-child, .tip > :last-child, .examplelocation > :last-child {
        margin-bottom: 0;
    }
    
    .note, .tip, .exampleLocation {
        border-left: 1px solid #ddddd8;
        color: rgba(0,0,0,0.6);
        margin: 0 0 1.5em 1.25em;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. pkg/kubelet/images/image_gc_manager.go

    type imageRecord struct {
    	// runtime handler used to pull this image
    	runtimeHandlerUsedToPullImage string
    	// Time when this image was first detected.
    	firstDetected time.Time
    
    	// Time when we last saw this image being used.
    	lastUsed time.Time
    
    	// Size of the image in bytes.
    	size int64
    
    	// Pinned status of the image
    	pinned bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDataFlowInfoProvider.kt

        /**
         * local variable reassignments found in given statements.
         */
        public val variableReassignments: List<VariableReassignment>
    ) {
        /**
         * Represents a default expression (generally, a last given statement if it has a meaningful result type).
         * Expressions that always return [Nothing], such as `return`, `break`, `continue` or `throw`, cannot be default expressions.
         */
        public class DefaultExpressionInfo(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/main/java/org/gradle/wrapper/GradleWrapperMain.java

                    new BootstrapMainStarter());
        }
    
        private static void addSystemProperties(Properties systemProperties, File gradleUserHome, File rootDir) {
            // The location with highest priority needs to come last here, as it overwrites any previous entries.
            systemProperties.putAll(SystemPropertiesHandler.getSystemProperties(new File(rootDir, "gradle.properties")));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top