Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for IMMEDIATE (0.74 sec)

  1. docs/metrics/v3.md

    | `minio_cluster_ilm_transition_missed_immediate_tasks` | `counter` | Number of missed immediate ILM transition tasks                            | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/list.md

    | `minio_node_ilm_transition_missed_immediate_tasks`           | Number of missed immediate ILM transition tasks.                                                           |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	log := log.WithLabels("gateway", req)
    
    	gw := d.gateways.Get(req.Name, req.Namespace)
    	if gw == nil {
    		log.Debugf("gateway no longer exists")
    		// we'll ignore not-found errors, since they can't be fixed by an immediate
    		// requeue (we'll need to wait for a new notification), and we can get them
    		// on deleted requests.
    		return nil
    	}
    
    	var controller gateway.GatewayController
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. pkg/controller/daemon/update.go

    	// * Expect manage loop will handle failed pods
    	// * Deleted pods do not count as unavailable so that updates make progress when nodes are down
    	// Invariants:
    	// * A node with an unavailable old pod is a candidate for immediate new pod creation
    	// * An old available pod is deleted if a new pod is available
    	// * No more than maxSurge new pods are created for old available pods at any one time
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  5. src/net/net.go

    			s += "->"
    		} else {
    			s += " "
    		}
    		s += e.Addr.String()
    	}
    	s += ": " + e.Err.Error()
    	return s
    }
    
    var (
    	// aLongTimeAgo is a non-zero time, far in the past, used for
    	// immediate cancellation of dials.
    	aLongTimeAgo = time.Unix(1, 0)
    
    	// noDeadline and noCancel are just zero values for
    	// readability with functions taking too many parameters.
    	noDeadline = time.Time{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. cmd/bucket-lifecycle.go

    	select {
    	case <-t.ctx.Done():
    	case t.transitionCh <- task:
    	default:
    		switch src {
    		case lcEventSrc_s3PutObject, lcEventSrc_s3CopyObject, lcEventSrc_s3CompleteMultipartUpload:
    			// Update missed immediate tasks only for incoming requests.
    			t.missedImmediateTasks.Add(1)
    		}
    	}
    }
    
    var globalTransitionState *transitionState
    
    // newTransitionState returns a transitionState object ready to be initialized
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1/types.go

    const (
    	// VolumeBindingImmediate indicates that PersistentVolumeClaims should be
    	// immediately provisioned and bound.  This is the default mode.
    	VolumeBindingImmediate VolumeBindingMode = "Immediate"
    
    	// VolumeBindingWaitForFirstConsumer indicates that PersistentVolumeClaims
    	// should not be provisioned and bound until the first Pod is created that
    	// references the PeristentVolumeClaim.  The volume provisioning and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    }
    
    /* MD-form 2-register, 2 6-bit immediate operands */
    func AOP_MD(op uint32, a uint32, s uint32, sh uint32, m uint32) uint32 {
    	return op | (s&31)<<21 | (a&31)<<16 | (sh&31)<<11 | ((sh&32)>>5)<<1 | (m&31)<<6 | ((m&32)>>5)<<5
    }
    
    /* MDS-form 3-register, 1 6-bit immediate operands. rsh argument is a register. */
    func AOP_MDS(op, to, from, rsh, m uint32) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. cmd/object-multipart-handlers.go

    			Status:    http.StatusText(http.StatusOK),
    		})
    	}
    
    	// Remove the transitioned object whose object version is being overwritten.
    	if !globalTierConfigMgr.Empty() {
    		// Schedule object for immediate transition if eligible.
    		enqueueTransitionImmediate(objInfo, lcEventSrc_s3CompleteMultipartUpload)
    		os.Sweep()
    	}
    }
    
    // AbortMultipartUploadHandler - Abort multipart upload
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    		RespElements: extractRespElements(w),
    		UserAgent:    r.UserAgent(),
    		Host:         handlers.GetSourceIP(r),
    	})
    
    	if !remoteCallRequired && !globalTierConfigMgr.Empty() {
    		// Schedule object for immediate transition if eligible.
    		objInfo.ETag = origETag
    		enqueueTransitionImmediate(objInfo, lcEventSrc_s3CopyObject)
    		// Remove the transitioned object whose object version is being overwritten.
    		os.Sweep()
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top