Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,609 for Lach (0.07 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/main/resources/fess_indices/fess/en-ie/stopwords.txt

    a
    ach
    ag
    agus
    an
    aon
    ar
    arna
    as
    b'
    ba
    beirt
    bhúr
    caoga
    ceathair
    ceathrar
    chomh
    chtó
    chuig
    chun
    cois
    céad
    cúig
    cúigear
    d'
    daichead
    dar
    de
    deich
    deichniúr
    den
    dhá
    do
    don
    dtí
    dá
    dár
    dó
    faoi
    faoin
    faoina
    faoinár
    fara
    fiche
    gach
    gan
    go
    gur
    haon
    hocht
    i
    iad
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 685 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/debug/macho/macho.go

    	Reserve3 uint32
    }
    
    // An Nlist32 is a Mach-O 32-bit symbol table entry.
    type Nlist32 struct {
    	Name  uint32
    	Type  uint8
    	Sect  uint8
    	Desc  uint16
    	Value uint32
    }
    
    // An Nlist64 is a Mach-O 64-bit symbol table entry.
    type Nlist64 struct {
    	Name  uint32
    	Type  uint8
    	Sect  uint8
    	Desc  uint16
    	Value uint64
    }
    
    // Regs386 is the Mach-O 386 register structure.
    type Regs386 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  9. 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)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassExtensionDoc.groovy

        }
    
        List<PropertyDoc> getExtensionProperties() {
            List<PropertyDoc> properties = []
            mixinClasses.each { mixin ->
                mixin.classProperties.each { prop ->
                    properties << prop.forClass(targetClass)
                }
            }
            extraProperties.each { prop ->
                properties << prop.forClass(targetClass)
            }
            return properties.sort { it.name }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.5K bytes
    - Viewed (0)
Back to top