Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,575 for happen (0.17 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. platforms/documentation/docs/src/snippets/testing/junitplatform-jupiter/groovy/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)
  3. pkg/config/schema/codegen/templates/gvr.go.tmpl

    	{{- range $alias := .Resource.VersionAliases }}
        case {{$entry.Resource.Identifier}}_{{$alias}}:
            return {{$entry.Resource.ClusterScoped}}
    	{{- end }}
        {{- end }}
    {{- end }}
    	}
    	// shouldn't happen
    	return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 03:54:51 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    			// Policy for bindings doesn't exist. This can happen if the policy
    			// was deleted before the binding, or the binding was created first.
    			//
    			// Just skip bindings that refer to non-existent policies
    			// If the policy is recreated, the cache will be marked dirty and
    			// this function will run again.
    			continue
    		} else if err != nil {
    			// This should never happen since fetching from a cache should never
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_verify_work.txt

    # Regression test for Issue #62663: we would filter out the toolchain and
    # main modules from the build list incorrectly, leading to the workspace
    # modules being checked for correct sums. Specifically this would happen when
    # the module name sorted after the virtual 'go' version module name because
    # it could not get chopped off when we removed the MainModules.Len() modules
    # at the beginning of the build list and we would remove the go module instead.
    
    go mod verify
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 724 bytes
    - Viewed (0)
Back to top