Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 284 for gomod (0.07 sec)

  1. docs/en/docs/how-to/nosql-databases-couchbase.md

    {!../../../docs_src/nosql_databases/tutorial001.py!}
    ```
    
    ## Define a constant to use as a "document type"
    
    We will use it later as a fixed field `type` in our documents.
    
    This is not required by Couchbase, but is a good practice that will help you afterwards.
    
    ```Python hl_lines="9"
    {!../../../docs_src/nosql_databases/tutorial001.py!}
    ```
    
    ## Add a function to get a `Bucket`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/security_test.go

    	for _, f := range badCompilerFlags {
    		if err := checkCompilerFlagsForInternalLink("test", "test", f); err == nil {
    			t.Errorf("missing error for %q", f)
    		}
    	}
    
    	// All "good" compiler flags should not trigger external linking,
    	// except for anything that begins with "-flto".
    	for _, f := range goodCompilerFlags {
    		foundLTO := false
    		for _, s := range f {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

                return task.getOnlyIf().isSatisfiedBy(task);
            }
            return false;
        }
    
        // In a perfect world, the consumer should depend on the producer.
        // Though we still don't have a good solution for the code linter and formatter use-case.
        // And for that case, there will be a cyclic dependency between the analyze and the format task if we only take output/input locations into account.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/base/base.go

    	// If we receive multiple errors joined with a basic errors.Join,
    	// handle each one separately so that they all have the leading "go: " prefix.
    	// A plain interface check is not good enough because there might be
    	// other kinds of structured errors that are logically one unit and that
    	// add other context: only handling the wrapped errors would lose
    	// that context.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            outputContains(output2)
    
            when:
            dir.deleteDir() // directory does not exist
            configurationCacheRun("report")
    
            then:
            fixture.assertStateStored() // TODO - it would be good to reuse a previous entry here
            outputContains("Calculating task graph as configuration cache cannot be reused because an input to build file 'build.gradle' has changed.")
            outputContains(output1)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/index/suffixarray/suffixarray_test.go

    			"a",
    			"bar",
    			"rab",
    			"arab",
    			"barbar",
    			"bara?bar",
    		},
    	},
    
    	{
    		"typing drill",
    		"Now is the time for all good men to come to the aid of their country.",
    		[]string{
    			"Now",
    			"the time",
    			"to come the aid",
    			"is the time for all good men to come to the aid of their",
    			"to (come|the)?",
    		},
    	},
    
    	{
    		"godoc simulation",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/StartParameterResolutionOverride.java

            // TODO: This is not quite correct: we're using the "root project" build directory
            // but technically speaking, this can be changed _after_ this service is created.
            // There's currently no good way to figure that out.
            File buildDir = new File(gradleDir.getParentFile(), "build");
            File reportsDirectory = new File(buildDir, "reports");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. src/runtime/race_arm64.s

    	CMP	R10, R3
    	BGE	racecallatomic_ignore
    racecallatomic_ok:
    	// Addr is within the good range, call the atomic function.
    	load_g
    	MOVD	g_racectx(g), R0	// goroutine context
    	MOVD	16(RSP), R1	// caller pc
    	MOVD	R9, R2	// pc
    	ADD	$40, RSP, R3
    	JMP	racecall<>(SB)	// does not return
    racecallatomic_ignore:
    	// Addr is outside the good range.
    	// Call __tsan_go_ignore_sync_begin to ignore synchronization during the atomic op.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. docs/en/docs/help-fastapi.md

    ### Understand the problem
    
    * First, make sure you **understand the problem** that the pull request is trying to solve. It might have a longer discussion in a GitHub Discussion or issue.
    
    * There's also a good chance that the pull request is not actually needed because the problem can be solved in a **different way**. Then you can suggest or ask about that.
    
    ### Don't worry about style
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

                tasks.withType(JavaCompile) {
                    options.compilerArgs << '-Xlint:all,-options' << '-Werror'
                }
            """
            buildFile << compilerConfiguration()
        }
    
        def "can compile good code"() {
            given:
            goodCode()
    
            when:
            succeeds("compileJava")
    
            then:
            output.contains(logStatement())
            javaClassFile("compile/test/Person.class").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top