Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 491 for Generating (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/config/schema/codegen/tools/collections.main.go

    // limitations under the License.
    
    package main
    
    import (
    	"fmt"
    	"os"
    
    	"istio.io/istio/pkg/config/schema/codegen"
    )
    
    // Utility for generating collections.gen.go. Called from gen.go
    func main() {
    	if err := codegen.Run(); err != nil {
    		fmt.Println(err)
    		os.Exit(-2)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 826 bytes
    - Viewed (0)
  5. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/PackageListGenerator.kt

    import java.util.zip.ZipInputStream
    
    
    /**
     * This task will generate the list of relocated packages into a file that will in turn be used when generating the runtime shaded jars. All we need is a list of packages that need to be relocated, so
     * we'll make sure to filter the list of packages before generating the file.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/generate.main.go

    package main
    
    import (
    	"bytes"
    	"fmt"
    	"os"
    	"regexp"
    	"text/template"
    
    	"sigs.k8s.io/yaml"
    )
    
    const (
    	codeRegex = `^IST\d\d\d\d$`
    	nameRegex = `^[[:upper:]]\w*$`
    )
    
    // Utility for generating messages.gen.go. Called from gen.go
    func main() {
    	if len(os.Args) != 3 {
    		fmt.Println("Invalid args:", os.Args)
    		os.Exit(-1)
    	}
    
    	input := os.Args[1]
    	output := os.Args[2]
    
    	m, err := read(input)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 16:55:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/workerApi/md5CustomTask/kotlin/buildSrc/src/main/java/CreateMD5.java

        public void createHashes() {
            for (File sourceFile : getSource().getFiles()) { // <3>
                try {
                    InputStream stream = new FileInputStream(sourceFile);
                    System.out.println("Generating MD5 for " + sourceFile.getName() + "...");
                    // Artificially make this task slower.
                    Thread.sleep(3000); // <4>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/types/FilterableBytecodeInterceptorFactory.java

    public interface FilterableBytecodeInterceptorFactory {
    
        BytecodeInterceptorType getType();
    
        /**
         * A marker interface that indicates that a class is used for generating bytecode upgrades.
         */
        interface BytecodeUpgradeInterceptorFactory extends FilterableBytecodeInterceptorFactory {
            @Override
            default BytecodeInterceptorType getType() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:55:59 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/workerApi/md5CustomTask/groovy/buildSrc/src/main/java/CreateMD5.java

        public void createHashes() {
            for (File sourceFile : getSource().getFiles()) { // <3>
                try {
                    InputStream stream = new FileInputStream(sourceFile);
                    System.out.println("Generating MD5 for " + sourceFile.getName() + "...");
                    // Artificially make this task slower.
                    Thread.sleep(3000); // <4>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top