Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,215 for evenly (0.1 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/events.k8s.io.v1beta1.Event.yaml

    action: actionValue
    apiVersion: events.k8s.io/v1beta1
    deprecatedCount: 15
    deprecatedFirstTimestamp: "2013-01-01T01:01:01Z"
    deprecatedLastTimestamp: "2014-01-01T01:01:01Z"
    deprecatedSource:
      component: componentValue
      host: hostValue
    eventTime: "2002-01-01T01:01:01.000002Z"
    kind: Event
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/GroupingProgressLogEventGeneratorTest.groovy

            def event2 = event('message 2')
            def event3 = event('message 3')
    
            when:
            listener.onOutput(event1)
            listener.onOutput(event2)
            listener.onOutput(event3)
    
            then:
            1 * downstreamListener.onOutput(event1)
            1 * downstreamListener.onOutput(event2)
            1 * downstreamListener.onOutput(event3)
    
            and:
            0 * downstreamListener._
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  3. src/internal/trace/event/event.go

    	StackIDs []int
    
    	// StartEv indicates the event type of the corresponding "start"
    	// event, if this event is an "end," for a pair of events that
    	// represent a time range.
    	StartEv Type
    
    	// IsTimedEvent indicates whether this is an event that both
    	// appears in the main event stream and is surfaced to the
    	// trace reader.
    	//
    	// Events that are not "timed" are considered "structural"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/internal/trace/event/go122/event.go

    }
    
    func Specs() []event.Spec {
    	return specs[:]
    }
    
    var specs = [...]event.Spec{
    	// "Structural" Events.
    	EvEventBatch: event.Spec{
    		Name: "EventBatch",
    		Args: []string{"gen", "m", "time", "size"},
    	},
    	EvStacks: event.Spec{
    		Name: "Stacks",
    	},
    	EvStack: event.Spec{
    		Name:    "Stack",
    		Args:    []string{"id", "nframes"},
    		IsStack: true,
    	},
    	EvStrings: event.Spec{
    		Name: "Strings",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. docs/assets/images/events@2x.png

    events@2x.png...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 164.7K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    0)",whiteSpace:"nowrap",borderWidth:"0"},".not-sr-only":{position:"static",width:"auto",height:"auto",padding:"0",margin:"0",overflow:"visible",clip:"auto",whiteSpace:"normal"}})},pointerEvents:({addUtilities:i})=>{i({".pointer-events-none":{"pointer-events":"none"},".pointer-events-auto":{"pointer-events":"auto"}})},visibility:({addUtilities:i})=>{i({".visible":{visibility:"visible"},".invisible":{visibility:"hidden"},".collapse":{visibility:"collapse"}})},position:({addUtilities:i})=>{i({".static":{position:"s...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. pkg/controller/volume/events/event.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package events
    
    // volume relevant event reasons
    const (
    	FailedBinding             = "FailedBinding"
    	VolumeMismatch            = "VolumeMismatch"
    	VolumeFailedRecycle       = "VolumeFailedRecycle"
    	VolumeRecycled            = "VolumeRecycled"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 03 01:11:36 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/ListenerBroadcastTest.groovy

            when:
            broadcast.source.event1("event")
    
            then:
            1 * listener1.event1("event") >> { args ->
                broadcast.add(listener3)
            }
            1 * listener2.event1("event")
            0 * _._
    
            when:
            broadcast.source.event1("param")
    
            then:
            1 * listener1.event1("param")
            1 * listener2.event1("param")
            1 * listener3.event1("param")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    	// free spans at ~32 MB/ms. Using 512 pages bounds this at
    	// roughly 100µs.
    	//
    	// Must be a multiple of the pageInUse bitmap element size and
    	// must also evenly divide pagesPerArena.
    	pagesPerReclaimerChunk = 512
    
    	// physPageAlignedStacks indicates whether stack allocations must be
    	// physical page aligned. This is a requirement for MAP_STACK on
    	// OpenBSD.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/testing-events.md

    # Testing Events: startup - shutdown
    
    When you need your event handlers (`startup` and `shutdown`) to run in your tests, you can use the `TestClient` with a `with` statement:
    
    ```Python hl_lines="9-12  20-24"
    {!../../../docs_src/app_testing/tutorial003.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 29 14:02:58 UTC 2020
    - 262 bytes
    - Viewed (0)
Back to top