Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,057 for defUse (0.13 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCppHelloWorldApp.groovy

        }
    
        @Override
        SourceFile getLibraryHeader() {
            return sourceFile("headers", "hello.h", """
                #ifndef HELLO_H
                #define HELLO_H
                #ifdef _WIN32
                #define DLL_FUNC __declspec(dllexport)
                #else
                #define DLL_FUNC
                #endif
    
                void DLL_FUNC sayHello();
                int DLL_FUNC sum(int a, int b);
    
                #ifdef FRENCH
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppAppWithLibrariesWithApiDependencies.groovy

        }
    
        final CppSourceFileElement deck = new CppSourceFileElement() {
            final SourceFileElement header = ofFile(new SourceFile("public", "deck.h", """
    #include "card.h"
    #ifdef _WIN32
    #define EXPORT_FUNC __declspec(dllexport)
    #else
    #define EXPORT_FUNC
    #endif
    
    class EXPORT_FUNC Deck {
        Card card;
    public:
        void shuffle();
        Card& draw();
    };
    """))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. src/math/exp_arm64.s

    // license that can be found in the LICENSE file.
    
    #define	Ln2Hi	6.93147180369123816490e-01
    #define	Ln2Lo	1.90821492927058770002e-10
    #define	Log2e	1.44269504088896338700e+00
    #define	Overflow	7.09782712893383973096e+02
    #define	Underflow	-7.45133219101941108420e+02
    #define	Overflow2	1.0239999999999999e+03
    #define	Underflow2	-1.0740e+03
    #define	NearZero	0x3e30000000000000	// 2**-28
    #define	PosInf	0x7ff0000000000000
    #define	FracMask	0x000fffffffffffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  4. src/html/template/template_test.go

    	c := newTestCase(t)
    	c.mustParse(c.root, `{{if .}}<{{template "X"}}>{{end}}{{define "X"}}foo{{end}}`)
    	c.mustExecute(c.root, 0, "")
    	c.mustNotParse(c.root, `{{define "X"}}bar{{end}}`)
    	c.mustExecute(c.root, 1, "&lt;foo>")
    }
    
    func TestRedefineAfterNamedExecution(t *testing.T) {
    	c := newTestCase(t)
    	c.mustParse(c.root, `<{{template "X" .}}>{{define "X"}}foo{{end}}`)
    	c.mustExecute(c.root, nil, "&lt;foo>")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/cpp/basic/kotlin/build.gradle.kts

    }
    // end::cpp-dependency-mgmt[]
    
    // tag::cpp-compiler-options-all-variants[]
    tasks.withType(CppCompile::class.java).configureEach {
        // Define a preprocessor macro for every binary
        macros.put("NDEBUG", null)
    
        // Define a compiler options
        compilerArgs.add("-W3")
    
        // Define toolchain-specific compiler options
        compilerArgs.addAll(toolChain.map { toolChain ->
            when (toolChain) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/aggregation/settings.gradle

    // == 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)
  7. src/runtime/asm_ppc64x.h

    // and currently always use that much, PIC on ppc64 would need to use 48).
    
    #define FIXED_FRAME 32
    
    // aix/ppc64 uses XCOFF which uses function descriptors.
    // AIX cannot perform the TOC relocation in a text section.
    // Therefore, these descriptors must live in a data section.
    #ifdef GOOS_aix
    #ifdef GOARCH_ppc64
    #define GO_PPC64X_HAS_FUNCDESC
    #define DEFINE_PPC64X_FUNCDESC(funcname, localfuncname)	\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/customizedLayout/groovy/build.gradle

    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation 'junit:junit:4.13'
    }
    
    // tag::define-main[]
    sourceSets {
        main {
            java {
                srcDirs = ['src/java']
            }
            resources {
                srcDirs = ['src/resources']
            }
        }
    // end::define-main[]
        test {
            java {
                srcDir 'test/java'
            }
            resources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 513 bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/templates/_affinity.tpl

    {{/* affinity - https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ */}}
    
    {{ define "nodeaffinity" }}
    nodeAffinity:
      requiredDuringSchedulingIgnoredDuringExecution:
      {{- include "nodeAffinityRequiredDuringScheduling" . }}
      preferredDuringSchedulingIgnoredDuringExecution:
      {{- include "nodeAffinityPreferredDuringScheduling" . }}
    {{- end }}
    
    {{- define "nodeAffinityRequiredDuringScheduling" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 10 21:23:08 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. test/alias2.go

    func (A1) m() {} // ERROR "cannot define new methods on non-local type|may not define methods on non-local type"
    func (A2) m() {} // ERROR "invalid receiver type"
    func (A3) m() {} // ERROR "cannot define new methods on non-local type|may not define methods on non-local type"
    func (A4) m() {} // ERROR "cannot define new methods on non-local type|may not define methods on non-local type"
    
    type B1 = struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:09:14 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top