Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for genericArgs (0.14 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/NativeCompiler.java

            return newInvocation("compiling ".concat(sourceFile.getName()), objectDir, buildPerFileArgs(genericArgs, sourceArgs, outputArgs, pchArgs), spec.getOperationLogger());
        }
    
        protected Iterable<String> buildPerFileArgs(List<String> genericArgs, List<String> sourceArgs, List<String> outputArgs, List<String> pchArgs) {
            return Iterables.concat(genericArgs, pchArgs, sourceArgs, outputArgs);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftCompiler.java

                        genericArgs.add(sourceFile.getAbsolutePath());
                    }
                    if (null != spec.getModuleName()) {
                        genericArgs.add("-module-name");
                        genericArgs.add(spec.getModuleName());
                        genericArgs.add("-emit-module-path");
                        genericArgs.add(spec.getModuleFile().getAbsolutePath());
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsResourceCompilerTest.groovy

        }
    
        def "check that position sensitive arguments are in the right order"() {
            given:
            def genericArgs = [ '/nologo' ]
            def sourceArgs = [ 'path/to/source.rc' ]
            def outputArgs = [ 'path/to/output.res' ]
            def compiler = getCompiler()
            expect:
            compiler.buildPerFileArgs(genericArgs, sourceArgs, outputArgs, []) as List == [ '/nologo', 'path/to/output.res', 'path/to/source.rc' ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/rule/describe/MethodModelRuleDescriptorTest.groovy

            where:
            method        | desc
            "noArgs"      | 'noArgs()'
            "oneArg"      | 'oneArg(String)'
            "twoArgs"     | 'twoArgs(String, String)'
            "genericArgs" | 'genericArgs(List<String>, Map<Integer, List<String>>)'
        }
    
        def "inner classes are described"() {
            when:
            def sb = new StringBuilder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/Assembler.java

        }
    
        @Override
        protected Iterable<String> buildPerFileArgs(List<String> genericArgs, List<String> sourceArgs, List<String> outputArgs, List<String> pchArgs) {
            if (pchArgs != null && !pchArgs.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/AssemblerTest.groovy

        }
    
        def "check that position sensitive arguments are in the right order"() {
            given:
            def genericArgs = [ '/c' ]
            def sourceArgs = [ 'path/to/source.s' ]
            def outputArgs = [ 'path/to/output.o' ]
            def compiler = getCompiler()
            expect:
            compiler.buildPerFileArgs(genericArgs, sourceArgs, outputArgs, []) as List == [ 'path/to/output.o', '/c', 'path/to/source.s' ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/Assembler.java

        protected Iterable<String> buildPerFileArgs(List<String> genericArgs, List<String> sourceArgs, List<String> outputArgs, List<String> pchArgs) {
            if (pchArgs != null && !pchArgs.isEmpty()) {
                throw new UnsupportedOperationException("Precompiled header arguments cannot be specified for an Assembler compiler.");
            }
            return super.buildPerFileArgs(genericArgs, sourceArgs, outputArgs, pchArgs);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsResourceCompiler.java

        }
    
        @Override
        protected Iterable<String> buildPerFileArgs(List<String> genericArgs, List<String> sourceArgs, List<String> outputArgs, List<String> pchArgs) {
            if (pchArgs != null && !pchArgs.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    		if first {
    			first = false
    		} else {
    			rst.writeString(", ")
    		}
    		rst.genericArg()
    	}
    }
    
    // genericArg parses:
    //
    //	<generic-arg> = <lifetime>
    //	              | <type>
    //	              | "K" <const> // forward-compat for const generics
    //	<lifetime> = "L" <base-62-number>
    func (rst *rustState) genericArg() {
    	if len(rst.str) < 1 {
    		rst.fail("expected generic-arg")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  10. src/go/types/call.go

    				for len(targs) < len(tparams) {
    					targs = append(targs, nil)
    				}
    				genericArgs = append(genericArgs, i)
    			}
    		}
    	}
    	assert(len(tparams) == len(targs))
    
    	// at the moment we only support implicit instantiations of argument functions
    	_ = len(genericArgs) > 0 && check.verifyVersionf(args[genericArgs[0]], go1_21, "implicitly instantiated function as argument")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top