Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 679 for lasta (0.06 sec)

  1. src/runtime/mgclimit.go

    	// assistTimePool is the accumulated assist time since the last update.
    	assistTimePool atomic.Int64
    
    	// idleMarkTimePool is the accumulated idle mark time since the last update.
    	idleMarkTimePool atomic.Int64
    
    	// idleTimePool is the accumulated time Ps spent on the idle list since the last update.
    	idleTimePool atomic.Int64
    
    	// lastUpdate is the nanotime timestamp of the last time update was called.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/runtime/os2_aix.go

    //go:nosplit
    func syscall0(fn *libFunc) (r, err uintptr) {
    	gp := getg()
    	mp := gp.m
    	resetLibcall := true
    	if mp.libcallsp == 0 {
    		mp.libcallg.set(gp)
    		mp.libcallpc = getcallerpc()
    		// sp must be the last, because once async cpu profiler finds
    		// all three values to be non-zero, it will use them
    		mp.libcallsp = getcallersp()
    	} else {
    		resetLibcall = false // See comment in sys_darwin.go:libcCall
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      optional string status = 2;
    
      // lastTransitionTime is the last time the condition transitioned from
      // one status to another
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // reason is the reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2/generated.proto

      optional string status = 2;
    
      // lastTransitionTime is the last time the condition transitioned from
      // one status to another
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // reason is the reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v2/types_swagger_doc_generated.go

    	"status":             "status is the status of the condition (True, False, Unknown)",
    	"lastTransitionTime": "lastTransitionTime is the last time the condition transitioned from one status to another",
    	"reason":             "reason is the reason for the condition's last transition.",
    	"message":            "message is a human-readable explanation containing details about the transition",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2beta2/generated.proto

      optional string status = 2;
    
      // lastTransitionTime is the last time the condition transitioned from
      // one status to another
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // reason is the reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    type recorderV1beta1Service struct {
    	last authorizationv1beta1.SubjectAccessReview
    	err  error
    }
    
    func (rec *recorderV1beta1Service) Review(r *authorizationv1beta1.SubjectAccessReview) {
    	rec.last = authorizationv1beta1.SubjectAccessReview{}
    	rec.last = *r
    	r.Status.Allowed = true
    }
    
    func (rec *recorderV1beta1Service) Last() (authorizationv1beta1.SubjectAccessReview, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Streams.java

       * nulls in the stream. This means that the method can safely be used with a stream that contains
       * nulls as long as the *last* element is *not* null.
       *
       * (To "go out of its way," the method tracks a `set` bit so that it can distinguish "the final
       * split has a last element of null, so throw NPE" from "the final split was empty, so look for an
       * element in the prior one.")
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  9. src/strings/strings.go

    		return -1
    	}
    	// Rabin-Karp search from the end of the string
    	hashss, pow := bytealg.HashStrRev(substr)
    	last := len(s) - n
    	var h uint32
    	for i := len(s) - 1; i >= last; i-- {
    		h = h*bytealg.PrimeRK + uint32(s[i])
    	}
    	if h == hashss && s[last:] == substr {
    		return last
    	}
    	for i := last - 1; i >= 0; i-- {
    		h *= bytealg.PrimeRK
    		h += uint32(s[i])
    		h -= pow * uint32(s[i+n])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_en.properties

    labels.search_result_sort_content_length_asc=Size (ascending)
    labels.search_result_sort_content_length_desc=Size (descending)
    labels.search_result_sort_last_modified_asc=Last Modified (ascending)
    labels.search_result_sort_last_modified_desc=Last Modified (descending)
    labels.search_result_sort_click_count_asc=Click (ascending)
    labels.search_result_sort_click_count_desc=Click (descending)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
Back to top