Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 219 for LAST (0.32 sec)

  1. android/guava/src/com/google/common/base/CharMatcher.java

        int len = sequence.length();
        int first;
        int last;
    
        for (first = 0; first < len; first++) {
          if (!matches(sequence.charAt(first))) {
            break;
          }
        }
        for (last = len - 1; last > first; last--) {
          if (!matches(sequence.charAt(last))) {
            break;
          }
        }
    
        return sequence.subSequence(first, last + 1).toString();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/CharMatcher.java

        int len = sequence.length();
        int first;
        int last;
    
        for (first = 0; first < len; first++) {
          if (!matches(sequence.charAt(first))) {
            break;
          }
        }
        for (last = len - 1; last > first; last--) {
          if (!matches(sequence.charAt(last))) {
            break;
          }
        }
    
        return sequence.subSequence(first, last + 1).toString();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    			uss.t.Logf("%s last=%v got SeatDemand average of %v and expected %v", uss.name, last, got, expected)
    		} else {
    			uss.t.Errorf("%s last=%v got SeatDemand average of %v but expected %v", uss.name, last, got, expected)
    		}
    		if got, expected := float64NaNTo0(subjectResults.Deviation), float64NaNTo0(checkResults.Deviation); float64close(got, expected) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    			}
    
    			last := locs.slots[slot]
    			if last.absent() {
    				state.f.Fatalf("at %v: slot %v in register %v with no location entry", v, state.slots[slot], &state.registers[reg])
    				continue
    			}
    			regs := last.Registers &^ (1 << reg)
    			setSlot(slot, VarLoc{regs, last.StackOffset})
    		}
    
    		locs.registers[reg] = locs.registers[reg][:0]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    		if gcBitsArenas.free == nil {
    			gcBitsArenas.free = gcBitsArenas.previous
    		} else {
    			// Find end of previous arenas.
    			last := gcBitsArenas.previous
    			for last = gcBitsArenas.previous; last.next != nil; last = last.next {
    			}
    			last.next = gcBitsArenas.free
    			gcBitsArenas.free = gcBitsArenas.previous
    		}
    	}
    	gcBitsArenas.previous = gcBitsArenas.current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager_test.go

    		"should do nothing if no corresponding condition": {
    			expectUpdate: false,
    		},
    		"should update last transition time if no old condition": {
    			condition: &v1.PodCondition{
    				Type:   "test-type",
    				Status: v1.ConditionTrue,
    			},
    			oldCondition: nil,
    			expectUpdate: true,
    		},
    		"should update last transition time if condition is changed": {
    			condition: &v1.PodCondition{
    				Type:   "test-type",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    .col-first, .col-first {
        font-size:0.93em;
    }
    .col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last {
        font-size:0.93em;
    }
    .col-first, .col-second, .col-constructor-name {
        vertical-align:top;
        overflow: auto;
    }
    .col-last {
        white-space:normal;
    }
    .col-first a:link, .col-first a:visited,
    .col-second a:link, .col-second a:visited,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    	margin-top: 0;
    }
    
    .sidebarblock> :last-child {
    	margin-bottom: 0;
    }
    
    .sidebarblock>.content>.title {
    	color: #7a2518;
    	margin-top: 0;
    	text-align: center;
    }
    
    .exampleblock>.content> :last-child> :last-child,
    .exampleblock>.content .olist>ol>li:last-child> :last-child,
    .exampleblock>.content .ulist>ul>li:last-child> :last-child,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"lastTransitionTime": "lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed.  If that is not known, then using the time when the API field changed is acceptable.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// The last time this condition was updated.
    	LastUpdateTime metav1.Time `json:"lastUpdateTime,omitempty" protobuf:"bytes,6,opt,name=lastUpdateTime"`
    	// Last time the condition transitioned from one status to another.
    	LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,7,opt,name=lastTransitionTime"`
    	// The reason for the condition's last transition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
Back to top