Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 806 for sounds (0.11 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/DefaultTestExecutionResult.groovy

                this
            }
    
            int getTestCount() {
                List<Integer> counts = testClassResults*.testCount
                List<Integer> uniques = counts.unique()
                if (uniques.size() == 1) {
                    return uniques.first()
                }
                throw new IllegalStateException("Multiple different test counts ${counts}")
            }
    
            TestClassExecutionResult assertTestsSkipped(String... testNames) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/runtime/histogram.go

    	// separately as underflow, so fill that in manually and then iterate
    	// over the rest.
    	hist.counts[0] = h.underflow.Load()
    	for i := range h.counts {
    		hist.counts[i+1] = h.counts[i].Load()
    	}
    	hist.counts[len(hist.counts)-1] = h.overflow.Load()
    }
    
    const (
    	fInf    = 0x7FF0000000000000
    	fNegInf = 0xFFF0000000000000
    )
    
    func float64Inf() float64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. src/runtime/cgo/gcc_linux_amd64.c

    	   malloc, so we actually use the memory we allocate.  */
    
    	setg_gcc = setg;
    	pbounds = (uintptr*)malloc(2 * sizeof(uintptr));
    	if (pbounds == NULL) {
    		fatalf("malloc failed: %s", strerror(errno));
    	}
    	_cgo_set_stacklo(g, pbounds);
    	free(pbounds);
    
    	if (x_cgo_inittls) {
    		x_cgo_inittls(tlsg, tlsbase);
    	}
    }
    
    
    void
    _cgo_sys_thread_start(ThreadStart *ts)
    {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:06:46 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/image/ycbcr_test.go

    			}
    		}
    		if testing.Short() {
    			break
    		}
    	}
    }
    
    func testYCbCr(t *testing.T, r Rectangle, subsampleRatio YCbCrSubsampleRatio, delta Point) {
    	// Create a YCbCr image m, whose bounds are r translated by (delta.X, delta.Y).
    	r1 := r.Add(delta)
    	m := NewYCbCr(r1, subsampleRatio)
    
    	// Test that the image buffer is reasonably small even if (delta.X, delta.Y) is far from the origin.
    	if len(m.Y) > 100*100 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 26 00:14:16 UTC 2015
    - 3.3K bytes
    - Viewed (0)
  5. src/crypto/aes/asm_ppc64x.s

    	MOVD	key+24(FP), KEYP
    	MOVD	iv+32(FP), IVP
    	MOVD	enc+40(FP), ENC
    	MOVD	nr+48(FP), ROUNDS
    
    #ifdef NEEDS_ESPERM
    	MOVD	$·rcon(SB), R11
    	LVX	(R11), ESPERM   // Permute value for P8_ macros.
    #endif
    
    	// Assume len > 0 && len % blockSize == 0.
    	CMPW	ENC, $0
    	P8_LXVB16X(IVP, R0, IVEC)
    	CMPU	ROUNDS, $10, CR1
    	CMPU	ROUNDS, $12, CR2 // Only sizes 10/12/14 are supported.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testsanitizers/testdata/asan2_fail.go

    	a := C.f()
    	q5 := (*C.int)(unsafe.Add(unsafe.Pointer(a), 4*5))
    	// Access to C pointer out of bounds.
    	*q5 = 100 // BOOM
    	// We shouldn't get here; asan should stop us first.
    	fmt.Printf("q5: %d, %x\n", *q5, q5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 616 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/object_count_tracker_test.go

    			}
    			if test.count <= -1 && len(tracker.counts) > 0 {
    				t.Errorf("Expected the cache to be empty, but got: %d", len(tracker.counts))
    			}
    		})
    	}
    }
    
    func TestStorageObjectCountTrackerWithPrune(t *testing.T) {
    	fakeClock := &testclock.FakePassiveClock{}
    	tracker := &objectCountTracker{
    		clock:  fakeClock,
    		counts: map[string]*timestampedCount{},
    	}
    
    	now := time.Now()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 17 19:36:14 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    	var cID string
    
    	cStatus, found := podutil.GetContainerStatus(podStatus.ContainerStatuses, containerName)
    	if !found {
    		cStatus, found = podutil.GetContainerStatus(podStatus.InitContainerStatuses, containerName)
    	}
    	if !found {
    		cStatus, found = podutil.GetContainerStatus(podStatus.EphemeralContainerStatuses, containerName)
    	}
    	if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. test/fixedbugs/issue33275_run.go

    // run
    
    //go:build !nacl && !js && !wasip1 && !gccgo
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure we don't get an index out of bounds error
    // while trying to print a map that is concurrently modified.
    // The runtime might complain (throw) if it detects the modification,
    // so we have to run the test as a subprocess.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 717 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dataflowActions/playSound/groovy/plugin/src/main/java/org/gradle/sample/sound/SoundPlay.java

    package org.gradle.sample.sound;
    
    import org.gradle.api.flow.FlowAction;
    import org.gradle.api.flow.FlowParameters;
    import org.gradle.api.provider.Property;
    import org.gradle.api.services.ServiceReference;
    import org.gradle.api.tasks.Input;
    
    import java.io.File;
    
    public abstract class SoundPlay implements FlowAction<SoundPlay.Parameters> {
        interface Parameters extends FlowParameters {
            @ServiceReference // <1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 706 bytes
    - Viewed (0)
Back to top