Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,285 for Lach (0.83 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. src/cmd/internal/buildid/rewrite.go

    	}
    	if len(id) > bufSize {
    		return nil, [32]byte{}, fmt.Errorf("buildid.FindAndHash: buffer too small")
    	}
    	zeros := make([]byte, len(id))
    	idBytes := []byte(id)
    
    	// For Mach-O files, we want to exclude the code signature.
    	// The code signature contains hashes of the whole file (except the signature
    	// itself), including the buildid. So the buildid cannot contain the signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  4. src/cmd/internal/codesign/codesign.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package codesign provides basic functionalities for
    // ad-hoc code signing of Mach-O files.
    //
    // This is not a general tool for code-signing. It is made
    // specifically for the Go toolchain. It uses the same
    // ad-hoc signing algorithm as the Darwin linker.
    package codesign
    
    import (
    	"debug/macho"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:19 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top