Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 6,499 for happen (0.12 sec)

  1. platforms/documentation/docs/src/snippets/testing/junitplatform-jupiter/kotlin/src/test/java/org/gradle/junitplatform/JupiterTest.java

        public static void beforeAll() {
            System.out.println("This will be called before all methods!");
        }
    
        @Disabled
        @Test
        public void disabled() {
            throw new RuntimeException("This won't happen!");
        }
    
        @Test
        @DisplayName("TEST 1")
        @Tag("my-tag")
        void test1(TestInfo testInfo) {
            assertEquals("TEST 1", testInfo.getDisplayName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 945 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    			next := it.Next()
    			nextAdder, ok := next.(traits.Adder)
    			if !ok {
    				// Should never happen for type checked CEL programs
    				return types.MaybeNoSuchOverloadErr(next)
    			}
    			if acc != nil {
    				s := acc.Add(next)
    				sum, ok := s.(traits.Adder)
    				if !ok {
    					// Should never happen for type checked CEL programs
    					return types.MaybeNoSuchOverloadErr(s)
    				}
    				acc = sum
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. src/net/tcpsock_posix.go

    	// see this happen, rather than expose the buggy effect to users, we
    	// close the fd and try again. If it happens twice more, we relent and
    	// use the result. See also:
    	//	https://golang.org/issue/2690
    	//	https://stackoverflow.com/questions/4949858/
    	//
    	// The opposite can also happen: if we ask the kernel to pick an appropriate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonStateControl.java

    import org.gradle.initialization.BuildCancellationToken;
    
    public interface DaemonStateControl {
        /**
         * <p>Requests that the daemon stop, but wait until the daemon is idle. The stop will happen asynchronously, and this method does not block.
         *
         * <p>The daemon will stop accepting new work, so that subsequent calls to {@link #runCommand} will fail with {@link DaemonUnavailableException}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/math/rand/default_test.go

    	//
    	// Note: these tests can theoretically fail when using fastrand64
    	// in that it is possible to coincidentally get the same random
    	// number twice. That could happen something like 1 / 2**64 times,
    	// which is rare enough that it may never happen. We don't worry
    	// about that case.
    
    	switch code {
    	case 0:
    		// Call Seed and Uint64 concurrently.
    		wg.Add(goroutines)
    		for i := 0; i < goroutines; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 07 23:39:35 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. test/fixedbugs/issue67255.go

    		// unallocated, which we need to reproduce the bug.
    		objs = append(objs, make([]*byte, i))
    	}
    	sink = objs // force heap allocation
    
    	// Bug will happen as soon as the write barrier turns on.
    	for range 10000 {
    		sink = make([]*byte, 1024)
    		for _, s := range objs {
    			s = append(s, make([]*byte, zero)...)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 922 bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/bug_report.md

    **To Reproduce**
    Steps to reproduce the behavior:
    1. Go to '...'
    2. Click on '....'
    3. Scroll down to '....'
    4. See error
    
    **Expected behavior**
    A clear and concise description of what you expected to happen.
    
    **Screenshots**
    If applicable, add screenshots to help explain your problem.
    
    **Environment (please complete the following information):**
     - OS: [e.g. Windows 10]
     - Version [e.g. 3.5.0]
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Mon Feb 10 22:18:26 UTC 2020
    - 748 bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/bug_report.md

    **To Reproduce**
    Steps to reproduce the behavior:
    1. Go to '...'
    2. Click on '....'
    3. Scroll down to '....'
    4. See error
    
    **Expected behavior**
    A clear and concise description of what you expected to happen.
    
    **Screenshots**
    If applicable, add screenshots to help explain your problem.
    
    **Environment (please complete the following information):**
     - OS: [e.g. Windows 10]
     - Browser [e.g. chrome, safari]
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 17 22:53:30 UTC 2020
    - 782 bytes
    - Viewed (0)
  9. test/fixedbugs/issue28688.go

    package main
    
    import (
    	"fmt"
    )
    
    // When using soft-float, OMUL might be rewritten to function
    // call so we should ensure it was evaluated first. Stack frame
    // setup for "test" function call should happen after call to runtime.fmul32
    
    var x int32 = 1
    
    func main() {
    	var y float32 = 1.0
    	test(x, y*y)
    }
    
    //go:noinline
    func test(id int32, a float32) {
    
    	if id != x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 16:14:24 UTC 2021
    - 622 bytes
    - Viewed (0)
  10. docs/en/docs/reference/exceptions.md

    # Exceptions - `HTTPException` and `WebSocketException`
    
    These are the exceptions that you can raise to show errors to the client.
    
    When you raise an exception, as would happen with normal Python, the rest of the execution is aborted. This way you can raise these exceptions from anywhere in the code to abort a request and show the error to the client.
    
    You can use:
    
    * `HTTPException`
    * `WebSocketException`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 597 bytes
    - Viewed (0)
Back to top