Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 209 for LAST (0.21 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// Status of the condition, one of True, False, Unknown.
    	Status ConditionStatus `json:"status"`
    	// (brief) machine readable reason for the condition's last transition.
    	// +optional
    	Reason string `json:"reason,omitempty"`
    	// Human readable message indicating details about last transition.
    	// +optional
    	Message string `json:"message,omitempty"`
    }
    
    type RowConditionType string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  2. cmd/object-api-listobjects_test.go

    		1: "test-bucket-empty-dir",
    		// Will not store any objects in this bucket,
    		// Its to test ListObjects on an empty bucket.
    		2: "empty-bucket",
    		// Listing the case where the marker > last object.
    		3: "test-bucket-single-object",
    		// Listing uncommon delimiter.
    		4: "test-bucket-delimiter",
    		// Listing prefixes > maxKeys
    		5: "test-bucket-max-keys-prefixes",
    		// Listing custom delimiters
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  3. src/go/printer/testdata/parser.go

    	trace  bool // == (mode & Trace != 0)
    	indent uint // indentation used for tracing output
    
    	// Comments
    	comments    []*ast.CommentGroup
    	leadComment *ast.CommentGroup // last lead comment
    	lineComment *ast.CommentGroup // last line comment
    
    	// Next token
    	pos token.Pos   // token position
    	tok token.Token // one token look-ahead
    	lit string      // token literal
    
    	// Non-syntactic parser control
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "{{endpoint}},{{server}}",
              "refId": "A"
            }
          ],
          "title": "Last Hour Failed Data",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "fieldConfig": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. tests/query_test.go

    		} else {
    			CheckUser(t, first, users[0])
    		}
    	})
    
    	t.Run("Last", func(t *testing.T) {
    		var last User
    		if err := DB.Where("name = ?", "find").Last(&last).Error; err != nil {
    			t.Errorf("errors happened when query last: %v", err)
    		} else {
    			CheckUser(t, last, users[2])
    		}
    	})
    
    	var all []User
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/CacheBuilder.java

     *   <li>least-recently-used eviction when a maximum size is exceeded (note that the cache is
     *       divided into segments, each of which does LRU internally)
     *   <li>time-based expiration of entries, measured since last access or last write
     *   <li>keys automatically wrapped in {@code WeakReference}
     *   <li>values automatically wrapped in {@code WeakReference} or {@code SoftReference}
     *   <li>notification of evicted (or otherwise removed) entries
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. src/go/parser/parser.go

    	trace  bool // == (mode&Trace != 0)
    	indent int  // indentation used for tracing output
    
    	// Comments
    	comments    []*ast.CommentGroup
    	leadComment *ast.CommentGroup // last lead comment
    	lineComment *ast.CommentGroup // last line comment
    	top         bool              // in top of file (before package clause)
    	goVersion   string            // minimum Go version found in //go:build comment
    
    	// Next token
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "{{server}}",
              "refId": "A"
            }
          ],
          "title": "Last Minute Queued",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "fieldConfig": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  9. src/time/time.go

    	// Cut off 100-year cycles.
    	// The last cycle has one extra leap year, so on the last day
    	// of that year, day / daysPer100Years will be 4 instead of 3.
    	// Cut it back down to 3 by subtracting n>>2.
    	n = d / daysPer100Years
    	n -= n >> 2
    	y += 100 * n
    	d -= daysPer100Years * n
    
    	// Cut off 4-year cycles.
    	// The last cycle has a missing leap year, which does not
    	// affect the computation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/proxier.go

    		}
    		klog.V(logLevel).InfoS(logMsg, "svcPortName", svcPortName, "endpoints", epInfo)
    	}
    }
    
    // This will cleanup stale load balancers which are pending delete
    // in last iteration. This function will act like a self healing of stale
    // loadbalancer entries.
    func (proxier *Proxier) cleanupStaleLoadbalancers() {
    	i := 0
    	countStaleLB := len(proxier.mapStaleLoadbalancers)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
Back to top