Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 224 for lombok (0.13 sec)

  1. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    To learn more, have a look at their respective linked documentation to configure those IDE integration in your project.
    
    == Run the application
    
    Look inside the `build` folder and you will notice the appearance of an `exe` folder.
    By convention, Gradle will place all applications in subfolders named according to the component name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_cache_pgo.txt

    stderr 'preprofile.*default\.pgo'
    
    # ... building a different package should not run preprofile again, instead
    # using a profile from cache.
    #
    # Note we can't directly look for $GOCACHE in the regex below because the
    # Windows slashes would need to be escaped. Instead just look for the "gocache"
    # component (specified above) as an approximation.
    go build -x -pgo=default.pgo lib2.go
    ! stderr 'preprofile.*default\.pgo'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 18:28:25 UTC 2024
    - 927 bytes
    - Viewed (0)
  3. src/math/rand/v2/auto_test.go

    	// and then check that they don't appear in that
    	// order in the deterministic seeded result.
    	var out []int64
    	for i := 0; i < 10; i++ {
    		out = append(out, Int64())
    	}
    
    	// Look for out in seeded output.
    	// Strictly speaking, we should look for them in order,
    	// but this is good enough and not significantly more
    	// likely to have a false positive.
    	r := New(NewPCG(1, 0))
    	found := 0
    	for i := 0; i < 1000; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:26 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/openapi-callbacks.md

    This code won't be executed in your app, we only need it to *document* how that *external API* should look like.
    
    But, you already know how to easily create automatic documentation for an API with **FastAPI**.
    
    So we are going to use that same knowledge to document how the *external API* should look like... by creating the *path operation(s)* that the external API should implement (the ones your API will call).
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/dependency_management_for_java_projects.adoc

    ====
    
    A project can have multiple repositories. Gradle will look for a dependency in each repository in the order they are specified, stopping at the first repository that contains the requested module.
    
    To find out more about defining repositories, have a look at <<declaring_repositories.adoc#declaring-repositories,Declaring Repositories>>.
    
    [[sec:publishing_artifacts_java_tutorial]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/Doc.txt

    The upload process converts count files into reports, and
    uploads reports. There will be only one report, named YYYY-MM-DD.json,
    for a given day.
    
    First phase. Look at the localdir (os.UserConfigdir()/go/telemetry/local)
    and find all .count and .json files. Find the count files that are no
    longer active by looking at their metadata.
    
    Second phase. Group the inactive count files by their expiry date, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. releasenotes/notes/51239.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: documentation
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 134 bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ParallelStaleOutputIntegrationTest.groovy

            testDirectory.file("b").mkdirs()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/MetaDataParser.java

         * If the following marker is found in a `pom` file, Gradle (version 5.3 or higher)
         * will look for a `module` file to use it instead of the `pom` file.
         */
        String GRADLE_METADATA_MARKER = "do-not-remove: published-with-gradle-metadata";
        /**
         * If the following marker is found in a `pom` file, Gradle (version 6.0 or higher)
         * will look for a `module` file to use it instead of the `pom` file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/ArtifactResolutionDetails.java

     * then it's enough to just look at the module id using {@link #getModuleId()}.
     * <p></p>
     * However, if you have to differentiate depending on the version number (for example,
     * some versions of a module are found in one repository, others in a different repository),
     * then you must look at the version thanks to the {@link #getComponentId()} method. But
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top