Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for playback (0.2 sec)

  1. src/runtime/time_fake.go

    // on write calls.
    //
    //go:nowritebarrierrec
    func write(fd uintptr, p unsafe.Pointer, n int32) int32 {
    	if !(fd == 1 || fd == 2) {
    		// Do an ordinary write.
    		return write1(fd, p, n)
    	}
    
    	// Write with the playback header.
    
    	// First, lock to avoid interleaving writes.
    	lock(&faketimeState.lock)
    
    	// If the current fd doesn't match the fd of the previous write,
    	// ensure that the timestamp is strictly greater. That way, we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:15:13 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. docs/extensions/fan-out/README.md

    MinIO implements an S3 extension to perform multiple concurrent fan-out upload operations. A perfect use case scenario for performing fan-out operations of incoming TSB (Time Shift Buffer's). TSBs are a method of facilitating time-shifted playback of television signaling, and media content.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 25 05:51:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/RecordingObjectOutputStream.kt

        val beanType: Class<*>,
    
        private
        val bean: Any
    
    ) : ObjectOutputStream() {
    
        private
        val operations = mutableListOf<suspend WriteContext.() -> Unit>()
    
        suspend fun WriteContext.playback() {
            withBeanTrace(beanType) {
                operations.forEach { operation ->
                    operation()
                }
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

                    val beanType = value.javaClass
                    val record = recordWritingOf(beanType, value)
                    writeEnum(Format.WriteObject)
                    writeClass(beanType)
                    record.run { playback() }
                }
            }
    
            private
            fun recordWritingOf(beanType: Class<Any>, value: Any): RecordingObjectOutputStream =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. samples/ambient-argo/README.md

    The channel and phased strategies can be combined into a comprehensive (though somewhat complicated) model where each channel contains phases, which determine the order of rollouts within the channel.
    
    ## Playbook: Minor Version Upgrade
    
    COMING SOON
    
    ## Playbook: Major Version Upgrade
    
    COMING SOON
    
    ## Tips and Tricks
    
    For a quick (but messy) readout on what Istio versions are being used in this repo, run:
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. tests/integration/security/fuzz/fuzz_test.go

    	}
    	t.Logf("running jwttool fuzz test against the %s (should normally complete in 10 seconds)...", server)
    
    	// Run the jwttool fuzz testing with "--mode at" to run all tests:
    	// - JWT Attack Playbook
    	// - Fuzz existing claims to force errors
    	// - Fuzz common claims
    	commands := []string{
    		"./run.sh",
    		"--targeturl",
    		fmt.Sprintf("http://%s:8080/private/secret.html", server),
    		"--noproxy",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/trace_viewer_full.html

    getPerPlaybackObject_(playbackId){let perPlaybackObject=this.playbackIdToDataMap_.get(playbackId);if(perPlaybackObject===undefined){perPlaybackObject=new PerPlaybackData(undefined);this.playbackIdToDataMap_.set(playbackId,perPlaybackObject);}
    return perPlaybackObject;}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.8.md

      * Feature complete. Support the full CRI API defined in v1.8.
      * Pass all the CRI validation tests and regular node end-to-end tests.
      * An ansible playbook is provided to configure a Kubernetes cri-containerd cluster with kubeadm.
    
    * Add support in Kubelet to consume container metrics via CRI. [[@yguo0905](https://github.com/yguo0905)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top