Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,060 for Lach (0.13 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Each.java

     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.PARAMETER)
    @Incubating
    public @interface Each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/runtime/cgo/gcc_signal_ios_arm64.c

    #include <pthread.h>
    #include <stdio.h>
    #include <signal.h>
    #include <stdlib.h>
    #include <unistd.h>
    
    #include <mach/arm/thread_status.h>
    #include <mach/exception_types.h>
    #include <mach/mach.h>
    #include <mach/mach_init.h>
    #include <mach/mach_port.h>
    #include <mach/thread_act.h>
    #include <mach/thread_status.h>
    
    #include "libcgo.h"
    #include "libcgo_unix.h"
    
    void xx_cgo_panicmem(void);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:04:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/GenerateGraphTask.groovy

                incomingArtifacts.artifacts.each {
                    writeArtifact("incoming-artifact-artifact", writer, it)
                }
    
                if (buildArtifacts) {
                    files.each {
                        writeFile("file-file", writer, it)
                    }
                    files.filter { true }.each {
                        writeFile("file-filtered", writer, it)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. testing/performance/src/templates/archivePerformanceProject/build.gradle

    tasks.register("visitZip") {
        doLast {
            visitIterations.each {
                zipTree(file("archive.zip")).each {
                    logger.info it.path
                }
            }
        }
    }
    
    tasks.register("visitTar") {
        doLast {
            visitIterations.each {
                tarTree(file("archive.tar")).each {
                    logger.info it.path
                }
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/pilot.libsonnet

        + row.withPanels([
          panels.timeSeries.simple('Pilot Versions', queries.istioBuild, 'Version number of each running instance'),
        ]),
      ], panelHeight=5)
      + grid.makeGrid([
        row.new('Resource Usage')
        + row.withPanels([
          panels.timeSeries.bytes('Memory Usage', queries.goMemoryUsage, 'Memory usage of each running instance'),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AbstractAlignmentSpec.groovy

                specs.each {
                    it.applyTo(spec)
                    if (it.virtualPlatforms) {
                        it.seenVersions.each { v ->
                            it.virtualPlatforms.each { vp ->
                                virtualPlatforms << "${vp}:$v"
                            }
                        }
                        it.virtualPlatforms.each { vp ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDocOptions.java

         */
        @Nullable @Optional @Input
        public String getFooter() {
            return footer;
        }
    
        /**
         * Sets the HTML text to appear in the footer for each page.
         */
        public void setFooter(@Nullable String footer) {
            this.footer = footer;
        }
    
        /**
         * Returns the HTML text to appear in the top text for each page.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/RuleDefinitionRuleExtractorTest.groovy

        }
    
    
        static class InvalidEachAnnotationOnRuleSource extends RuleSource {
            @Rules
            void rules(@Each SomeRuleSource rules, String value, Integer input) {}
        }
    
        def "invalid @Each annotations on rule sources are not allowed"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDEModelPerformanceTest.groovy

                    withJava(javaSourceSettings?.targetBytecodeVersion)
                    projectNatures.each {
                        it.id
                    }
                    projectDependencies.each {
                        it.exported
                        it.path
                    }
                    description
                    name
                    linkedResources.each {
                        it.name
                        it.location
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. architecture/README.md

    ## Build state model
    
    As Gradle executes, it acts on various pieces of the build definition, such as each project in the build.
    Gradle tracks the state of each piece and transitions each piece through its lifecycle as the build runs.
    
    A central part of the Gradle architecture is the "build state model", which holds the state for each piece and coordinates state transitions and other mutations. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top