Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,057 for defUse (0.12 sec)

  1. src/runtime/cgo/abi_ppc64x.h

    //
    // xcoff(aix) and ELFv1 are similar, but may only require a
    // subset of these.
    //
    // These macros assume a 16 byte aligned stack pointer. This
    // is required by ELFv1, ELFv2, and AIX PPC64.
    
    #define SAVE_GPR_SIZE (18*8)
    #define SAVE_GPR(offset)               \
    	MOVD	R14, (offset+8*0)(R1)  \
    	MOVD	R15, (offset+8*1)(R1)  \
    	MOVD	R16, (offset+8*2)(R1)  \
    	MOVD	R17, (offset+8*3)(R1)  \
    	MOVD	R18, (offset+8*4)(R1)  \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 03 20:17:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/providers/collections/kotlin/build.gradle.kts

        private val people: NamedDomainObjectList<Person> = project.objects.namedDomainObjectList(Person::class)
    
        // Add a person to the container
        fun addPerson(name: String) {
            people.plus(name)
        }
    }
    // end::ndol[]
    
    // tag::ndoc[]
    
    abstract class MyPluginExtensionNamedDomainObjectContainer {
        // Define a named domain object container to hold Person objects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. src/runtime/memmove_ppc64x.s

    // target address
    #define TGT R3
    // source address
    #define SRC R4
    // length to move
    #define LEN R5
    // number of doublewords
    #define DWORDS R6
    // number of bytes < 8
    #define BYTES R7
    // const 16 used as index
    #define IDX16 R8
    // temp used for copies, etc.
    #define TMP R9
    // number of 64 byte chunks
    #define QWORDS R10
    // index values
    #define IDX32 R14
    #define IDX48 R15
    #define OCTWORDS R16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/HelloWorldApp.java

        public String compilerArgs(String arg) {
            return compilerConfig("args", arg);
        }
    
        public String compilerDefine(String define) {
            return compilerConfig("define", define);
        }
    
        public String compilerDefine(String define, String value) {
            return compilerConfig("define", define, value);
        }
    
        private String compilerConfig(String action, String... args) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/aggregation/settings.gradle.kts

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal() // if pluginManagement.repositories looks like this, it can be omitted as this is the default
        }
        includeBuild("../build-logic")
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild("../platforms")
    includeBuild("../admin-feature")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 580 bytes
    - Viewed (0)
  6. src/internal/chacha8rand/chacha8_amd64.s

    // ROL rotates the uint32s in register R left by N bits, using temporary T.
    #define ROL(N, R, T) \
    	MOVO R, T; PSLLL $(N), T; PSRLL $(32-(N)), R; PXOR T, R
    
    // ROL16 rotates the uint32s in register R left by 16, using temporary T if needed.
    #ifdef GOAMD64_v2
    #define ROL16(R, T) PSHUFB ·rol16<>(SB), R
    #else
    #define ROL16(R, T) ROL(16, R, T)
    #endif
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. src/runtime/libfuzzer_amd64.s

    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    // Based on race_amd64.s; see commentary there.
    
    #ifdef GOOS_windows
    #define RARG0 CX
    #define RARG1 DX
    #define RARG2 R8
    #define RARG3 R9
    #else
    #define RARG0 DI
    #define RARG1 SI
    #define RARG2 DX
    #define RARG3 CX
    #endif
    
    // void runtime·libfuzzerCall4(fn, hookId int, s1, s2 unsafe.Pointer, result uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 04:57:07 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. src/text/template/examplefiles_test.go

    		{"T0.tmpl", `T0 invokes T1: ({{template "T1"}})`},
    		// T1.tmpl defines a template, T1 that invokes T2.
    		{"T1.tmpl", `{{define "T1"}}T1 invokes T2: ({{template "T2"}}){{end}}`},
    		// T2.tmpl defines a template T2.
    		{"T2.tmpl", `{{define "T2"}}This is T2{{end}}`},
    	})
    	// Clean up after the test; another quirk of running as an example.
    	defer os.RemoveAll(dir)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/domain-model/settings.gradle.kts

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal() // if pluginManagement.repositories looks like this, it can be omitted as this is the default
        }
        includeBuild("../build-logic")
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild("../platforms")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 607 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/android-app/settings.gradle

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal()
            google()
        }
        includeBuild('../build-logic')
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
            google()
        }
    }
    includeBuild('../platforms')
    includeBuild('../user-feature')
    
    // == Define the inner structure of this component ==
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 475 bytes
    - Viewed (0)
Back to top