Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,267 for shown (0.67 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

                    includeModule('gradle', 'gradle')
                }
            }
        }
    }
    
    // We support multiple accepted public api changes JSON files, but "accepted-public-api-changes.json"
    // is the "main" one that is also shown in HTML report
    def apiChangesJsonDirectory = layout.projectDirectory.dir("src/changes/accepted-changes")
    def mainApiChangesJsonFile = apiChangesJsonDirectory.file("accepted-public-api-changes.json")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. docs/kms/README.md

    ### Using `mc encrypt` (recommended)
    
    MinIO automatically encrypts all objects on buckets if KMS is successfully configured and bucket encryption configuration is enabled for each bucket as shown below:
    
    ```
    mc encrypt set sse-s3 myminio/bucket/
    ```
    
    Verify if MinIO has `sse-s3` enabled
    
    ```
    mc encrypt info myminio/bucket/
    Auto encryption 'sse-s3' is enabled
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/features/features_test.go

    	f2 := "feature2=true|false (ALPHA - default=true)"
    	if r[1] != f2 {
    		t.Errorf("KnownFeatures returned %s values, expected %s", r[1], f2)
    	}
    	// check the second value is feature3; prerelease should not be shown for GA features; default should be present
    	f3 := "feature3=true|false (default=false)"
    	if r[2] != f3 {
    		t.Errorf("KnownFeatures returned %s values, expected %s", r[2], f3)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 04:57:22 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. src/math/log1p.go

    // The hexadecimal values are the intended ones for the following
    // constants. The decimal values may be used, provided that the
    // compiler will convert from decimal to binary accurately enough
    // to produce the hexadecimal values shown.
    //
    // Note: Assuming log() return accurate answer, the following
    //       algorithm can be used to compute log1p(x) to within a few ULP:
    //
    //              u = 1+x;
    //              if(u==1.0) return x ; else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    ====
    
    The command line output of the `verifyUrl` task from the project `include-plugin-build` <<verify-url-cmd-output,looks exactly the same as shown in the introduction>>, except that it now executes as part of a composite build.
    
    Manual testing has its place in the development process, but it is not a replacement for automated testing.
    
    == Setting up automated tests
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    Other tasks
    -----------
    helloTask - Hello task
    ----
    
    In contrast, `./gradlew tasks --all` will show all tasks; _hidden_ and _visible_ tasks are listed.
    
    [[sec:grouping_tasks]]
    == Grouping tasks
    
    If you want to customize which tasks are shown to users when listed, you can group tasks and set the visibility of each group.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. fastapi/applications.py

                    * `@app.get("/users/", tags=["users"])`
                    * `@app.get("/items/", tags=["items"])`
    
                    The order of the tags can be used to specify the order shown in
                    tools like Swagger UI, used in the automatic path `/docs`.
    
                    It's not required to specify all the tags used.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/distribution_plugin.adoc

    [[sec:distribution_tasks]]
    == Tasks
    
    The Distribution Plugin adds a number of tasks to your project, as shown below.
    
    `distZip` — link:{groovyDslPath}/org.gradle.api.tasks.bundling.Zip.html[Zip]::
    Creates a ZIP archive of the distribution contents.
    
    `distTar` — link:{groovyDslPath}/org.gradle.api.Task.html[Task]::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

            outputContains """
    Root project 'my-root-project'
    No sub-projects
    
    Included builds:
    
    +--- Included build ':another'
    \\--- Included build ':third'"""
        }
    
        def "included builds are only shown in the context of the root project"() {
            given:
            createDirs("p1", "p1/p11", "another")
            file("settings.gradle") << """rootProject.name = 'my-root-project'
    include('p1')
    include('p1:p11')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/internal/IdeaDependenciesProvider.java

             *
             * Instead, when generating files on the command line, the logged warning is enough.
             * When using the Tooling API, a dedicated "unresolved dependency" object would be better
             * and could be shown in a notification. The command line warning should probably be omitted in that case.
             */
            @Override
            public void visitUnresolvedDependency(UnresolvedDependencyResult unresolvedDependency) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top