Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for newLru (0.17 sec)

  1. cmd/site-replication.go

    func (c *SiteReplicationSys) PeerBucketVersioningHandler(ctx context.Context, bucket string, versioning *string, updatedAt time.Time) error {
    	if versioning != nil {
    		// skip overwrite if local update is newer than peer update.
    		if !updatedAt.IsZero() {
    			if _, updateTm, err := globalBucketMetadataSys.GetVersioningConfig(bucket); err == nil && updateTm.After(updatedAt) {
    				return nil
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    	if p1.Pod != unschedulablePod {
    		t.Errorf("Expected that test-pod-unscheduled was popped, got %v", p1.Pod.Name)
    	}
    
    	// Assume newer pod was added just after unschedulable pod
    	// being popped and before being pushed back to the queue.
    	newerPod := st.MakePod().Name("test-newer-pod").Namespace("ns1").UID("tp002").CreationTimestamp(metav1.Now()).Priority(highPriority).NominatedNodeName("node1").Obj()
    	q.Add(logger, newerPod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    			if !srcTimestamp.IsZero() {
    				ondiskTimestamp, err := time.Parse(time.RFC3339Nano, lastTaggingTimestamp)
    				// update tagging metadata only if replica  timestamp is newer than what's on disk
    				if err != nil || (err == nil && ondiskTimestamp.Before(srcTimestamp)) {
    					srcInfo.UserDefined[ReservedMetadataPrefixLower+TaggingTimestamp] = srcTimestamp.UTC().Format(time.RFC3339Nano)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // When the latest version of a given module is newer than
    // the current one, list -u sets the Module's Update field
    // to information about the newer module. list -u will also set
    // the module's Retracted field if the current version is retracted.
    // The Module's String method indicates an available upgrade by
    // formatting the newer version in brackets after the current version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	if lease == nil {
    		return nil
    	}
    	newElems := make([]interface{}, 0, 1)
    	newElems = append(newElems, lease)
    	return nc.leaseInformer.Informer().GetStore().Replace(newElems, "newRV")
    }
    
    func (nc *nodeLifecycleController) syncNodeStore(fakeNodeHandler *testutil.FakeNodeHandler) error {
    	nodes, err := fakeNodeHandler.List(context.TODO(), metav1.ListOptions{})
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    	}
    	// Make sure the Pods are in the reverse order of creation time.
    	pods[1].CreationTimestamp = metav1.NewTime(time.Now())
    	pods[0].CreationTimestamp = metav1.NewTime(time.Now().Add(1 * time.Second))
    	// The newer pod should be rejected.
    	notfittingPod := pods[0]
    	fittingPod := pods[1]
    	kl.podWorkers.(*fakePodWorkers).running = map[types.UID]bool{
    		pods[0].UID: true,
    		pods[1].UID: true,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    func getReplicationAction(oi1 ObjectInfo, oi2 minio.ObjectInfo, opType replication.Type) replicationAction {
    	// Avoid resyncing null versions created prior to enabling replication if target has a newer copy
    	if opType == replication.ExistingObjectReplicationType &&
    		oi1.ModTime.Unix() > oi2.LastModified.Unix() && oi1.VersionID == nullVersionID {
    		return replicateNone
    	}
    	sz, _ := oi1.GetActualSize()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    // - stop (stops all the MinIO instances in a setup)
    // - freeze (freezes all incoming S3 API calls)
    // - unfreeze (unfreezes previously frozen S3 API calls)
    //
    // This newer API now returns back status per remote peer and local regarding
    // if a "restart/stop" was successful or not. Service signal now supports
    // a dry-run that helps skip the nodes that may have hung drives. By default
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

      # Windows uses kernelspace proxymode
      flags+=" --proxy-mode=kernelspace"
    
      # Configure kube-proxy to run as a windows service.
      flags+=" --windows-service=true"
    
      # Enabling Windows DSR mode unlocks newer network features and reduces
      # port usage for services.
      # https://techcommunity.microsoft.com/t5/networking-blog/direct-server-return-dsr-in-a-nutshell/ba-p/693710
      if [[ "${WINDOWS_ENABLE_DSR:-}" == "true" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Assigns a new value to a variable.";
    
      let description = [{
    Any ReadVariableOp with a control dependency on this op is guaranteed to return
    this value or a subsequent newer value of the variable.
      }];
    
      let arguments = (ins
        TFL_ResourceTensor:$resource_id,
        TFL_TensorOf<[F32, F64, I1, UI8, I8, QI8, QUI8, I32, I64, QI16, Complex<F<32>>, Complex<F<64>>]>:$value
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top