Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 238 for findMin (0.11 sec)

  1. .github/workflows/codeql-analysis.yml

            # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
            language: ['java', 'javascript']
            # Learn more...
            # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
    
        steps:
        - name: Checkout repository
          uses: actions/checkout@v4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/AnnotationProcessorFixture.groovy

    /**
     * Base class for all annotation processor test fixtures. Each processor listens to a single annotation.
     * It provides the basic scaffolding, like fields for the filer, element utils and messager as well as
     * finding the annotated elements. Subclasses only need to provide the processing logic given those elements.
     *
     * The declared type of the processor can be overwritten to test various error cases, e.g. a processor that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedWorkOutputFixture.java

         * Specifies different formats for reporting a failure of {@link #assertOutputContains(String)}.
         */
        public enum ComparisonFailureFormat {
            /**
             * The new format, which should be aide in quickly finding small differences for comparisons spanning multiple lines.
             */
            LINEWISE,
    
            /**
             * GitHub Patch format.  This is the format used by the GitHub diff viewer.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. docs/de/docs/how-to/general.md

    # Allgemeines – How-To – Rezepte
    
    Hier finden Sie mehrere Verweise auf andere Stellen in der Dokumentation, für allgemeine oder häufige Fragen.
    
    ## Daten filtern – Sicherheit
    
    Um sicherzustellen, dass Sie nicht mehr Daten zurückgeben, als Sie sollten, lesen Sie die Dokumentation unter [Tutorial – Responsemodell – Rückgabetyp](../tutorial/response-model.md){.internal-link target=_blank}.
    
    ## Dokumentations-Tags – OpenAPI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/AbstractProjectBuilderSpec.groovy

        ProjectExecutionServices executionServices
    
        def setup() {
            System.setProperty("user.dir", temporaryFolder.testDirectory.absolutePath)
            // This prevents the ProjectBuilder from finding the Gradle build's root settings.gradle
            // and treating the root of the repository as the root of the build
            new File(temporaryFolder.testDirectory, "settings.gradle") << ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:13:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    	fis, err := os.ReadDir(localdir)
    	if err != nil {
    		u.logger.Printf("Could not find work: failed to read local dir %s: %v", localdir, err)
    		return ans
    	}
    
    	mode, asof := u.dir.Mode()
    	u.logger.Printf("Finding work: mode %s, asof %s", mode, asof)
    
    	// count files end in .v1.count
    	// reports end in .json. If they are not to be uploaded they
    	// start with local.
    	for _, fi := range fis {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/cache/default.go

    Run "go clean -cache" if the directory is getting too large.
    Run "go clean -fuzzcache" to delete the fuzz cache.
    See golang.org to learn more about Go.
    `
    
    // initDefaultCache does the work of finding the default cache
    // the first time Default is called.
    func initDefaultCache() {
    	dir, _ := DefaultDir()
    	if dir == "off" {
    		if defaultDirErr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. docs/de/docs/advanced/response-headers.md

    target="_blank">mittels des Präfix 'X-'</a> hinzugefügt werden können.
    
    Wenn Sie jedoch benutzerdefinierte Header haben, die ein Client in einem Browser sehen können soll, müssen Sie diese zu Ihren CORS-Konfigurationen hinzufügen (weitere Informationen finden Sie unter [CORS (Cross-Origin Resource Sharing)](../tutorial/cors.md){.internal-link target=_blank}), unter Verwendung des Parameters `expose_headers`, dokumentiert in <a href="https://www.starlette.io/middleware/#corsmiddleware" class="external-link"...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:19:06 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. docs/de/docs/advanced/using-request-directly.md

    ## `Request`-Dokumentation
    
    Weitere Details zum <a href="https://www.starlette.io/requests/" class="external-link" target="_blank">`Request`-Objekt finden Sie in der offiziellen Starlette-Dokumentation</a>.
    
    !!! note "Technische Details"
        Sie können auch `from starlette.requests import Request` verwenden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:32 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. operator/pkg/translate/translate_common.go

    	}
    	valuePath := cnMap.ToHelmValuesTreeRoot
    	enabledPath := valuePath + ".enabled"
    	enableNodeI, found, err := tpath.Find(valueSpec, util.ToYAMLPath(enabledPath))
    	if err != nil {
    		return false, false, fmt.Errorf("error finding component enablement path: %s in helm value.yaml tree", enabledPath)
    	}
    	if !found {
    		// Some components do not specify enablement should be treated as enabled if the root node in the component subtree exists.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top