Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 236 for gomod (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/watch_termination.go

    			handler.ServeHTTP(w, req)
    			return
    		}
    
    		if err := wg.Add(1); err != nil {
    			// When apiserver is shutting down, signal clients to retry
    			// There is a good chance the client hit a different server, so a tight retry is good for client responsiveness.
    			waitGroupWriteRetryAfterToResponse(w)
    			return
    		}
    
    		// attach ServerShutdownSignal to the watch request so that the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformIntegrationSpec.groovy

                import org.junit.jupiter.api.Tag;
                import org.junit.jupiter.api.Test;
    
                public class JUnitJupiterTest {
                    @Test
                    @Tag("good")
                    public void good() { }
    
                    @Test
                    @Tag("bad")
                    public void bad() { }
                }
                '''
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. test/switch.go

    	switch i5 {
    	case 0:
    	case 1:
    	case 2:
    	case 3:
    	case 4:
    		assert(false, "4")
    	case 5:
    		assert(true, "5")
    	case 6:
    	case 7:
    	case 8:
    	case 9:
    	default:
    		assert(i5 == 5, "good")
    	}
    
    	switch i5 {
    	case 0:
    		dummy := 0
    		_ = dummy
    		fallthrough
    	case 1:
    		dummy := 0
    		_ = dummy
    		fallthrough
    	case 2:
    		dummy := 0
    		_ = dummy
    		fallthrough
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 19 23:30:49 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  4. tests/test_compat.py

        # to support it as a first class "feature"
        assert is_bytes_sequence_annotation(Union[List[str], List[bytes]])
    
    
    def test_is_uploadfile_sequence_annotation():
        # For coverage
        # TODO: in theory this would allow declaring types that could be lists of UploadFile
        # and other types, but I'm not even sure it's a good idea to support it as a first
        # class "feature"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginConfigurationIntegrationTest.groovy

            """
    
            file("src/main/java/test/Main.java") << """
                package test;
                public class Main {
                    public static void main(String[] args) {
                        System.out.println("all good");
                    }
                }
            """
    
            buildFile << """
                plugins {
                    id("application")
                }
                application {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_minimize_dirty_cov.txt

    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    	for _, ent := range ents {
    		name := filepath.Join(dir, ent.Name())
    		if good, err := checkFile(name, expected); err != nil {
    			fmt.Fprintln(os.Stderr, err)
    			os.Exit(1)
    		} else if good {
    			os.Exit(0)
    		}
    	}
    	fmt.Fprintln(os.Stderr, "input over minimized")
    	os.Exit(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/index.md

    And it shows their true commitment to FastAPI and its **community** (you), as they not only want to provide you a **good learning experience** but also want to make sure you have a **good and healthy framework**, FastAPI. 🙇
    
    You might want to try their courses:
    
    * <a href="https://training.talkpython.fm/fastapi-courses" class="external-link" target="_blank">Talk Python Training</a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ParallelStaleOutputIntegrationTest.groovy

                        outputFile.text = "good"
                    }
                }
    
                subprojects {
                    apply plugin: 'base'
                    configurations {
                        myconf
                    }
                    tasks.withType(GoodTask).configureEach {
                        outputFile = layout.buildDirectory.file("good.txt")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/vendor_import.txt

    vend/vendor/strings []
    vend/vendor/vend/dir1/dir2 []
    vend/x/vendor/p []
    vend/x/vendor/p/p [notfound]
    vend/x/vendor/r []
    -- vend/bad.go --
    package vend
    
    import _ "r"
    -- vend/dir1/dir1.go --
    package dir1
    -- vend/good.go --
    package vend
    
    import _ "p"
    -- vend/hello/hello.go --
    package main
    
    import (
    	"fmt"
    	"strings" // really ../vendor/strings
    )
    
    func main() {
    	fmt.Printf("%s\n", strings.Msg)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 21:14:01 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. docs_src/query_params_str_validations/tutorial008_py310.py

    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(
        q: str | None = Query(
            default=None,
            title="Query string",
            description="Query string for the items to search in the database that have a good match",
            min_length=3,
        ),
    ):
        results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]}
        if q:
            results.update({"q": q})
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 24 20:26:06 UTC 2023
    - 434 bytes
    - Viewed (0)
Back to top