Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,630 for Lach (0.05 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. docs/vi/docs/python-types.md

    Có nghĩa là: "biến `items` là một `list`, và mỗi phần tử trong danh sách này là một `str`".
    
    !!! tip
        Nếu bạn sử dụng Python 3.9 hoặc lớn hơn, bạn không phải import `List` từ `typing`, bạn có thể sử dụng `list` để thay thế.
    
    Bằng cách này, trình soạn thảo của bạn có thể hỗ trợ trong khi xử lí các phần tử trong danh sách:
    
    <img src="/img/python-types/image05.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. src/debug/macho/file.go

    	"strings"
    )
    
    // A File represents an open Mach-O file.
    type File struct {
    	FileHeader
    	ByteOrder binary.ByteOrder
    	Loads     []Load
    	Sections  []*Section
    
    	Symtab   *Symtab
    	Dysymtab *Dysymtab
    
    	closer io.Closer
    }
    
    // A Load represents any Mach-O load command.
    type Load interface {
    	Raw() []byte
    }
    
    // A LoadBytes is the uninterpreted bytes of a Mach-O load command.
    type LoadBytes []byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K 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. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top