Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 679 for lasta (0.04 sec)

  1. pkg/apis/apps/types.go

    	// Status of the condition, one of True, False, Unknown.
    	Status api.ConditionStatus
    	// The last time this condition was updated.
    	LastUpdateTime metav1.Time
    	// Last time the condition transitioned from one status to another.
    	LastTransitionTime metav1.Time
    	// The reason for the condition's last transition.
    	Reason string
    	// A human readable message indicating details about the transition.
    	Message string
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  2. src/io/io.go

    // basic ReadByte method.
    //
    // UnreadByte causes the next call to ReadByte to return the last byte read.
    // If the last operation was not a successful call to ReadByte, UnreadByte may
    // return an error, unread the last byte read (or the byte prior to the
    // last-unread byte), or (in implementations that support the [Seeker] interface)
    // seek to one byte before the current offset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. src/runtime/time.go

    	t := ts.heap[0].timer
    	if t.ts != ts {
    		throw("wrong timers")
    	}
    	t.ts = nil
    	last := len(ts.heap) - 1
    	if last > 0 {
    		ts.heap[0] = ts.heap[last]
    	}
    	ts.heap[last] = timerWhen{}
    	ts.heap = ts.heap[:last]
    	if last > 0 {
    		ts.siftDown(0)
    	}
    	ts.updateMinWhenHeap()
    	if last == 0 {
    		// If there are no timers, then clearly there are no timerModified timers.
    		ts.minWhenModified.Store(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. pkg/util/iptree/iptree.go

    			break
    		}
    		// update the new bit position with the new node mask
    		bitPosition = n.prefix.Bits()
    	}
    
    	if n != nil && n.public && n.prefix == prefix {
    		last = n
    	}
    
    	if last != nil {
    		return last.prefix, last.val, true
    	}
    	var zeroT T
    	return netip.Prefix{}, zeroT, false
    }
    
    // ShortestPrefixMatch returns the shortest prefix match, the stored value and true if exist.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/flowcontrol/v1alpha1/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.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/flowcontrol/v1beta2/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.4K bytes
    - Viewed (0)
  7. src/bufio/bufio.go

    	buf          []byte
    	rd           io.Reader // reader provided by the client
    	r, w         int       // buf read and write positions
    	err          error
    	lastByte     int // last byte read for UnreadByte; -1 means invalid
    	lastRuneSize int // size of last rune read for UnreadRune; -1 means invalid
    }
    
    const minReadBufferSize = 16
    const maxConsecutiveEmptyReads = 100
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/ws/WebSocketReaderTest.kt

      }
    
      @Test fun serverWithCompressionCompressedHelloTwoChunks() {
        data.write("418460b420bb92fced72".decodeHex()) // first 4 bytes of compressed 'Hello'
        data.write("80833851d9d4f156d9".decodeHex()) // last 3 bytes of compressed 'Hello'
        serverReaderWithCompression.processNextFrame()
        callback.assertTextMessage("Hello")
      }
    
      @Test fun clientTwoFrameHello() {
        data.write("010348656c".decodeHex()) // Hel
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. src/go/doc/testdata/testing.go

    //     func BenchmarkHello(b *testing.B) {
    //         for i := 0; i < b.N; i++ {
    //             fmt.Sprintf("hello")
    //         }
    //     }
    // The benchmark package will vary b.N until the benchmark function lasts
    // long enough to be timed reliably. The output
    //     testing.BenchmarkHello    10000000    282 ns/op
    // means that the loop ran 10000000 times at a speed of 282 ns per loop.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  10. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top