Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. hack/apidiff.sh

    fi
    runWorktree "${KUBE_TEMP}/before" "${KUBE_TEMP}/base" "${base}"
    
    # Now produce a report. All changes get reported because exporting some API
    # unnecessarily might also be good to know, but the final exit code will only
    # be non-zero if there are incompatible changes.
    #
    # The report is Markdown-formatted and can be copied into a PR comment verbatim.
    res=0
    echo
    compare () {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/templates/daemonset.yaml

                # and we don't want to block CNI agent pod creation on waiting for the first non-hostnetwork pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/internal/trace/gc_test.go

    		// Test MUD with band optimization against MUD without band
    		// optimization. We don't have a simple testing implementation
    		// of MUDs (the simplest implementation is still quite
    		// complex), but this is still a pretty good test.
    		defer func(old int) { trace.BandsPerSeries = old }(trace.BandsPerSeries)
    		trace.BandsPerSeries = 1
    		mmuCurve2 := trace.NewMMUCurve(mu)
    		quantiles := []float64{0, 1 - .999, 1 - .99}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

         | Is JDK:             {description}false{normal}
         | Detected by:        {description}TestSource{normal}
    
    """
        }
    
        def "reports toolchains with good and invalid ones"() {
            given:
            defineJdks(
                jdk("14", "+1", "14"),
                jdk(null, null, "invalid"),
                jdk(null, null, "noSuchDirectory"),
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top