Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 653 for fanout (0.93 sec)

  1. pkg/ctrlz/ctrlz.go

    type Server struct {
    	listener   net.Listener
    	shutdown   sync.WaitGroup
    	httpServer http.Server
    }
    
    func augmentLayout(layout *template.Template, page string) *template.Template {
    	return assets.ParseTemplate(layout, page)
    }
    
    func registerTopic(router *mux.Router, layout *template.Template, t fw.Topic) {
    	htmlRouter := router.NewRoute().PathPrefix("/" + t.Prefix() + "z").Subrouter()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/DaemonJavaCompilerIntegrationTest.groovy

            succeeds "compileJava"
        }
    
        def "handles -sourcepath being specified"() {
            goodCode()
            buildFile << """
                tasks.withType(JavaCompile) {
                    options.sourcepath = project.layout.files()
                }
            """
    
            expect:
            succeeds "compileJava"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/3098")
        @Requires([
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CheckstylePlugin.java

        }
    
        private void configureReportsConventionMapping(Checkstyle task, final String baseName) {
            ProjectLayout layout = project.getLayout();
            ProviderFactory providers = project.getProviders();
            Provider<RegularFile> reportsDir = layout.file(providers.provider(() -> extension.getReportsDir()));
            task.getReports().all(action(report -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/minimal/build.gradle

    project.layout.buildDirectory = file('target')...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 47 bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

                if (className.endsWith("RepositoryLayout")) {
                    String layout = className.substring(0, className.length() - "RepositoryLayout".length());
                    if (!layout.isEmpty()) {
                        layout = Character.toLowerCase(layout.charAt(0)) + layout.substring(1);
                        return layout;
                    }
                }
                return "";
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/developingPlugins/pluginExtension/groovy/build.gradle

    plugins {
        id 'org.myorg.site'
    }
    
    site {
        outputDir = layout.buildDirectory.file("mysite")
    
        siteInfo {
            websiteUrl = 'https://gradle.org'
            vcsUrl = 'https://github.com/gradle/gradle-site-plugin'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 227 bytes
    - Viewed (0)
  7. platforms/core-runtime/build-process-services/src/main/java/org/gradle/internal/installation/CurrentGradleInstallationLocator.java

         * expected directory layout.
         *
         * The expected directory layout for JARs of a distribution looks as such:
         *
         * dist-root
         * |_ lib
         * |_ plugins
         *
         * @param codeSource Code source of JAR file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ParallelStaleOutputIntegrationTest.groovy

                        myconf
                    }
                    tasks.withType(GoodTask).configureEach {
                        outputFile = layout.buildDirectory.file("good.txt")
                    }
                    tasks.withType(BadTask).configureEach {
                        outputFile = layout.buildDirectory.file("bad.txt")
                    }
                    tasks.register("foo", GoodTask)
                    tasks.register("bar", BadTask)
    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/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementDslSpec.groovy

                            layout("maven")
                        }
                        ivy {
                            url "http://repo.internal.net/ivy"
                            layout("ivy")
                        }
                        ivy {
                            url "http://repo.internal.net/ivy"
                            layout("gradle")
                        }
                        ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

                }
            """)
    
    
            buildFile.text = """
                apply plugin: "java"
    
                task run(type: JavaExec) {
                    classpath = project.layout.files(compileJava)
                    mainClass = "driver.Driver"
                    args "1"
                }
            """
        }
    
        private static String mainClass(String body) {
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top