Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 209 for LAST (0.1 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/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)
  10. src/index/suffixarray/sais2.go

    		n := sa[j/2]
    		if n != lastLen {
    			goto New
    		}
    		if uint32(n) >= uint32(len(text)) {
    			// “Length” is really encoded full text, and they match.
    			goto Same
    		}
    		{
    			// Compare actual texts.
    			n := int(n)
    			this := text[j:][:n]
    			last := text[lastPos:][:n]
    			for i := 0; i < n; i++ {
    				if this[i] != last[i] {
    					goto New
    				}
    			}
    			goto Same
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top