Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 679 for lasta (0.05 sec)

  1. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderGroovyTest.groovy

            b2.methodInvocation(null, "method1")
            b2.propertyAssignment(null, "foo", "bar", true)
            builder.propertyAssignment(null, "foo", "second last")
            builder.propertyAssignment(null, "foo", "last")
    
            when:
            builder.create(target).generate()
    
            then:
            assertOutputFile("""$COMMON_START
     */
    
    foo = 'bar'
    foo('bar')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. cmd/bucket-stats.go

    	return
    }
    
    // Update replication upload latency with a new value
    func (rl *ReplicationLatency) update(size int64, duration time.Duration) {
    	rl.UploadHistogram.Add(size, duration)
    }
    
    // ReplicationLastMinute has last minute replication counters
    type ReplicationLastMinute struct {
    	LastMinute lastMinuteLatency
    }
    
    func (rl ReplicationLastMinute) merge(other ReplicationLastMinute) (nl ReplicationLastMinute) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/controller/cronjob/utils.go

    	for _, j := range cj.Status.Active {
    		if j.UID != uid {
    			newActive = append(newActive, j)
    		}
    	}
    	cj.Status.Active = newActive
    }
    
    // mostRecentScheduleTime returns:
    //   - the last schedule time or CronJob's creation time,
    //   - the most recent time a Job should be created or nil, if that's after now,
    //   - value indicating either none missed schedules, a few missed or many missed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/switch.go

    	if s.exprname.Type().IsInteger() {
    		consecutive := func(last, next constant.Value) bool {
    			delta := constant.BinaryOp(next, token.SUB, last)
    			return constant.Compare(delta, token.EQL, constant.MakeInt64(1))
    		}
    
    		merged := cc[:1]
    		for _, c := range cc[1:] {
    			last := &merged[len(merged)-1]
    			if last.jmp == c.jmp && consecutive(last.hi.Val(), c.lo.Val()) {
    				last.hi = c.lo
    			} else {
    				merged = append(merged, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/jwks_resolver.go

    )
    
    // jwtPubKeyEntry is a single cached entry for jwt public key and the http context options
    type jwtPubKeyEntry struct {
    	pubKey string
    
    	// The last success refreshed time of the pubKey.
    	lastRefreshedTime time.Time
    
    	// Cached item's last used time, which is set in GetPublicKey.
    	lastUsedTime time.Time
    
    	// OpenID Discovery web request timeout
    	timeout time.Duration
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // `lastTransitionTime` is the last time the condition transitioned from one status to another.
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
      optional string reason = 4;
    
      // `message` is a human-readable message indicating details about last transition.
      optional string message = 5;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. src/cmd/trace/gstate.go

    			startStack: r.stack,
    			endStack:   stack,
    		})
    	}
    	delete(gs.activeRanges, name)
    }
    
    func lastFunc(s trace.Stack) string {
    	var last trace.StackFrame
    	s.Frames(func(f trace.StackFrame) bool {
    		last = f
    		return true
    	})
    	return last.Func
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"lastProbeTime":      "Last time the condition was checked.",
    	"lastTransitionTime": "Last time the condition transit from one status to another.",
    	"reason":             "(brief) reason for the condition's last transition.",
    	"message":            "Human readable message indicating details about last transition.",
    }
    
    func (JobCondition) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/autoscaling/v2beta1/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
    - 21.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/obj6.go

    		// end:
    		//  NOP
    		end := obj.Appendp(jne, newprog)
    		end.As = obj.ANOP
    
    		// Fast forward to end of function.
    		var last *obj.Prog
    		for last = end; last.Link != nil; last = last.Link {
    		}
    
    		// LEAQ (autoffset+8)(SP), regEntryTmp1
    		p = obj.Appendp(last, newprog)
    		p.As = ALEAQ
    		p.From.Type = obj.TYPE_MEM
    		p.From.Reg = REG_SP
    		p.From.Offset = int64(autoffset) + int64(ctxt.Arch.RegSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
Back to top