Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,639 for includedIf (0.16 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/CPCHCompilerTest.groovy

        }
    
        @Override
        String getObjectFileFlag() {
            return '/Fp'
        }
    
        @Override
        protected List<String> getCompilerSpecificArguments(File includeDir, File systemIncludeDir) {
            return [ '/Yc' ] + super.getCompilerSpecificArguments(includeDir, systemIncludeDir)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppNativeCompilerTest.groovy

        String getObjectFileFlag() {
            return '/Fo'
        }
    
        @Override
        protected List<String> getCompilerSpecificArguments(File includeDir, File systemIncludeDir) {
            ['/nologo', '/c', '/Dfoo=bar', '/Dempty', '-firstArg', '-secondArg',
             '/I' + includeDir.absoluteFile.toString(), '/I' + systemIncludeDir.absoluteFile.toString()]
        }
    
        def "arguments include MSVC output flag and output file name"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/admission/exclusion/resources.go

    	// END interception of these non-persisted resources may break the cluster
    }
    
    // Included returns a copy of the list of resources that the expression-based admission controllers
    // should intercept.
    func Included() []schema.GroupResource {
    	return slices.Clone(included)
    }
    
    // Excluded returns a copy of the list of resources that the expression-based admission controllers
    // should ignore.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/ObjectiveCPCHCompilerTest.groovy

            return ObjectiveCPCHCompileSpec
        }
    
        @Override
        protected List<String> getCompilerSpecificArguments(File includeDir, File systemIncludeDir) {
            def arguments = super.getCompilerSpecificArguments(includeDir, systemIncludeDir)
            return ['-x', 'objective-c-header' ] + arguments
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r84/TestLauncherCompositeBuildCrossVersionTest.groovy

    @TargetGradleVersion('>=8.4')
    class TestLauncherCompositeBuildCrossVersionTest extends ToolingApiSpecification {
    
        enum LauncherApi {
            TEST_LAUNCHER,
            BUILD_LAUNCHER
        }
    
        def "Can run tasks from included builds"() {
            given:
            def runTestClass = withIncludedBuildTest(api)
    
            when:
            def output1 = runTestClass.apply('TestClass1')
    
            then:
            notThrown(Exception)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/CppPCHCompilerTest.groovy

            return CppPCHCompileSpec
        }
    
        @Override
        protected List<String> getCompilerSpecificArguments(File includeDir, File systemIncludeDir) {
            def arguments = super.getCompilerSpecificArguments(includeDir, systemIncludeDir)
            return [ '-x', 'c++-header' ] + arguments
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccCompatibleNativeCompilerTest.groovy

    abstract class GccCompatibleNativeCompilerTest extends NativeCompilerTest {
        @Override
        protected List<String> getCompilerSpecificArguments(File includeDir, File systemIncludeDir) {
            return [ '-c', '-Dfoo=bar', '-Dempty', '-firstArg', '-secondArg', '-nostdinc', '-I', includeDir.absoluteFile.toString(), '-isystem', systemIncludeDir.absoluteFile.toString() ]
        }
    
        def "arguments include GCC output flag and output file name"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/ObjectiveCppCompilerTest.groovy

            return ObjectiveCppCompileSpec
        }
    
        @Override
        protected List<String> getCompilerSpecificArguments(File includeDir, File systemIncludeDir) {
            def arguments = super.getCompilerSpecificArguments(includeDir, systemIncludeDir)
            return ['-x', 'objective-c++' ] + arguments
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/ObjectiveCppPCHCompilerTest.groovy

            return ObjectiveCppPCHCompileSpec
        }
    
        @Override
        protected List<String> getCompilerSpecificArguments(File includeDir, File systemIncludeDir) {
            def arguments = super.getCompilerSpecificArguments(includeDir, systemIncludeDir)
            return ['-x', 'objective-c++-header' ] + arguments
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/CppCompilerTest.groovy

        protected Class<CppCompileSpec> getCompileSpecType() {
            CppCompileSpec
        }
    
        @Override
        protected List<String> getCompilerSpecificArguments(File includeDir, File systemIncludeDir) {
            [ '/TP' ] + super.getCompilerSpecificArguments(includeDir, systemIncludeDir)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top