Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for lasta (0.32 sec)

  1. cmd/xl-storage-disk-id-check.go

    	e.init.Do(func() {
    		e.cached.Store(&AccElem{})
    		atomic.StoreInt64(&e.cachedSec, t)
    	})
    	acc := e.cached.Load()
    	if lastT := atomic.LoadInt64(&e.cachedSec); lastT != t {
    		// Check if lastT was changed by someone else.
    		if atomic.CompareAndSwapInt64(&e.cachedSec, lastT, t) {
    			// Now we swap in a new.
    			newAcc := &AccElem{}
    			old := e.cached.Swap(newAcc)
    			var a AccElem
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

            then:
            result.groupedOutput.task(":a:some").assertOutputContains("FIRST").assertOutputContains("LAST")
    
            when:
            configurationCacheRun ":a:some"
    
            then:
            result.groupedOutput.task(":a:some").assertOutputContains("FIRST").assertOutputContains("LAST")
    
            when: // rebuild task graph, with tasks from the same set of scripts
            configurationCacheRun ":a:some", ":a:other"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/ztunnel-dashboard.gen.json

                "w": 8,
                "x": 0,
                "y": 1
             },
             "id": 2,
             "interval": "5s",
             "options": {
                "legend": {
                   "calcs": [
                      "last",
                      "max"
                   ],
                   "displayMode": "table"
                }
             },
             "pluginVersion": "v11.0.0",
             "targets": [
                {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/pilot-dashboard.gen.json

                "w": 6,
                "x": 0,
                "y": 2
             },
             "id": 4,
             "interval": "5s",
             "options": {
                "legend": {
                   "calcs": [
                      "last",
                      "max"
                   ],
                   "displayMode": "table"
                }
             },
             "pluginVersion": "v11.0.0",
             "targets": [
                {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/SystemPropertiesCompositeBuildFixture.groovy

                    expectedValue = isBuildSrcDefinition && isIncludedBuildDefinition
                        ? spec.systemPropertyDefinitions.findAll { it instanceof IncludedBuild }.last()
                        : expectedExecutionTimeValue()
                    break
                case SystemPropertyAccess.NO_ACCESS:
                    expectedValue = null
                    break
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. cmd/metacache-entries.go

    					best.cached = xl
    				}
    			}
    			toMerge = toMerge[:0]
    		}
    		if best.name > last {
    			select {
    			case <-ctxDone:
    				return ctx.Err()
    			case out <- *best:
    				last = best.name
    			}
    		} else if serverDebugLog {
    			console.Debugln("mergeEntryChannels: discarding duplicate", best.name, "<=", last)
    		}
    		// Replace entry we just sent.
    		if err := selectFrom(bestIdx); err != nil {
    			return err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. cmd/bucket-replication-utils.go

    type ReplicationState struct {
    	ReplicaTimeStamp          time.Time              // timestamp when last replica update was received
    	ReplicaStatus             replication.StatusType // replica statusstringis
    	DeleteMarker              bool                   // represents DeleteMarker replication state
    	ReplicationTimeStamp      time.Time              // timestamp when last replication activity happened
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. cmd/object-api-utils.go

    }
    
    // pathJoin - like path.Join() but retains trailing SlashSeparator of the last element
    func pathJoin(elem ...string) string {
    	sb := bytebufferpool.Get()
    	defer func() {
    		sb.Reset()
    		bytebufferpool.Put(sb)
    	}()
    
    	return pathJoinBuf(sb, elem...)
    }
    
    // pathJoinBuf - like path.Join() but retains trailing SlashSeparator of the last element.
    // Provide a string builder to reduce allocation.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top