Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,609 for Lach (0.04 sec)

  1. guava/src/com/google/common/base/Joiner.java

       * previously configured separator between each.
       */
      public final String join(Iterable<? extends @Nullable Object> parts) {
        return join(parts.iterator());
      }
    
      /**
       * Returns a string containing the string representation of each of {@code parts}, using the
       * previously configured separator between each.
       *
       * @since 11.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. android/guava/src/com/google/common/base/Joiner.java

       * previously configured separator between each.
       */
      public final String join(Iterable<? extends @Nullable Object> parts) {
        return join(parts.iterator());
      }
    
      /**
       * Returns a string containing the string representation of each of {@code parts}, using the
       * previously configured separator between each.
       *
       * @since 11.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/go/internal/modindex/index_format.txt

    Each string is prefixed with a uvarint-encoded length.
    Bools are written as uint32s: 0 for false and 1 for true.
    
    The following is the format for a full module:
    
    “go index v2\n”
    str uint32 - offset of string table
    n uint32 - number of packages
    for each rawPackage:
    	dirname - string offset
    	package - offset where package begins
    for each rawPackage:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 13 00:22:50 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top