Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 405 for Generating (0.28 sec)

  1. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Annotations for generating build logic instrumentation.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 772 bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/id/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Internal classes for generating identifiers.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 732 bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * A {@link org.gradle.api.Plugin} for generating IDEA files.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 724 bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/TestProjectDuration.groovy

     * limitations under the License.
     */
    
    package org.gradle.performance.results
    
    import com.fasterxml.jackson.annotation.JsonInclude
    import groovy.transform.CompileStatic
    
    /**
     * Used for generating performance-test-durations.json by Jackson.
     */
    @CompileStatic
    @JsonInclude(JsonInclude.Include.NON_NULL)
    class TestProjectDuration {
        String testProject
        Long linux
        Long windows
        Long macOs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. pkg/serviceaccount/jwt_test.go

    	if err != nil {
    		t.Fatalf("error making generator: %v", err)
    	}
    	rsaToken, err := rsaGenerator.GenerateToken(serviceaccount.LegacyClaims(*serviceAccount, *rsaSecret))
    	if err != nil {
    		t.Fatalf("error generating token: %v", err)
    	}
    	if len(rsaToken) == 0 {
    		t.Fatalf("no token generated")
    	}
    	rsaSecret.Data = map[string][]byte{
    		"token": []byte(rsaToken),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/KotlinDslReference.java

     * limitations under the License.
     */
    
    package gradlebuild.docs;
    
    import org.gradle.api.file.DirectoryProperty;
    import org.gradle.api.provider.Property;
    
    /**
     * Configuration for generating Dokka based Kotlin DSL docs.
     */
    public abstract class KotlinDslReference {
    
        /**
         * The location of the final rendered Dokka content.
         */
        public abstract DirectoryProperty getRenderedDocumentation();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 14:00:14 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationMutationIntegrationTest.groovy

            executer.expectDocumentedDe...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:56 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. build-logic/performance-testing/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
        id("gradlebuild.build-logic.groovy-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin for generating and defining performance test projects"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":integration-testing"))
        implementation(project(":cleanup"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceScenarioDurations.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance.results
    
    import groovy.transform.CompileStatic
    
    /**
     * Used for generating performance-test-durations.json by Jackson.
     */
    @CompileStatic
    class PerformanceScenarioDurations {
        String scenario
        List<TestProjectDuration> durations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. platforms/software/antlr/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Adds support for generating parsers from Antlr grammars."
    
    errorprone {
        disabledChecks.addAll(
            "DefaultCharset", // 1 occurrences
            "Finally", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":core"))
        api(project(":core-api"))
        api(project(":files"))
        api(project(":model-core"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top