Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for toolType (0.36 sec)

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

    import java.util.Map;
    
    class GccPlatformToolProvider extends AbstractPlatformToolProvider {
    
        private static final Map<ToolType, String> LANGUAGE_FOR_COMPILER = ImmutableMap.of(
            ToolType.C_COMPILER, "c",
            ToolType.CPP_COMPILER, "c++",
            ToolType.OBJECTIVEC_COMPILER, "objective-c",
            ToolType.OBJECTIVECPP_COMPILER, "objective-c++"
        );
    
        private final ToolSearchPath toolSearchPath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

            and:
            toolSearchPath.locate(toolType, _) >> tool
            toolSearchPath.locate(_, _) >> missing
            metaDataProvider.getCompilerMetaData(_, _) >> correctCompiler
    
            expect:
            toolChain.select(platform).available
    
            where:
            toolType << [ToolType.C_COMPILER, ToolType.CPP_COMPILER, ToolType.OBJECTIVEC_COMPILER, ToolType.OBJECTIVECPP_COMPILER]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

        public String getExecutableSymbolFileName(String executablePath) {
            return withExtension(getExecutableName(executablePath), ".pdb");
        }
    
        @Override
        public VisualCppMetadata getCompilerMetadata(ToolType toolType) {
            return new VisualCppMetadata() {
                @Override
                public VersionNumber getVisualStudioVersion() {
                    return visualStudio.getVersion();
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

            toolChain.add(instantiator.newInstance(DefaultGccCommandLineToolConfiguration.class, ToolType.CPP_COMPILER, "g++"));
            toolChain.add(instantiator.newInstance(DefaultGccCommandLineToolConfiguration.class, ToolType.LINKER, "g++"));
            toolChain.add(instantiator.newInstance(DefaultGccCommandLineToolConfiguration.class, ToolType.STATIC_LIB_ARCHIVER, "ar"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/ip.go

    		cel.Overload("ip_is_canonical", []*cel.Type{cel.StringType}, cel.BoolType,
    			cel.UnaryBinding(ipIsCanonical)),
    	},
    	"isUnspecified": {
    		cel.MemberOverload("ip_is_unspecified", []*cel.Type{apiservercel.IPType}, cel.BoolType,
    			cel.UnaryBinding(isUnspecified)),
    	},
    	"isLoopback": {
    		cel.MemberOverload("ip_is_loopback", []*cel.Type{apiservercel.IPType}, cel.BoolType,
    			cel.UnaryBinding(isLoopback)),
    	},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    		cel.Overload("is_quantity_string", []*cel.Type{cel.StringType}, cel.BoolType, cel.UnaryBinding(isQuantity)),
    	},
    	"sign": {
    		cel.Overload("quantity_sign", []*cel.Type{apiservercel.QuantityType}, cel.IntType, cel.UnaryBinding(quantityGetSign)),
    	},
    	"isGreaterThan": {
    		cel.MemberOverload("quantity_is_greater_than", []*cel.Type{apiservercel.QuantityType, apiservercel.QuantityType}, cel.BoolType, cel.BinaryBinding(quantityIsGreaterThan)),
    	},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. src/debug/dwarf/type.go

    type FloatType struct {
    	BasicType
    }
    
    // A ComplexType represents a complex floating point type.
    type ComplexType struct {
    	BasicType
    }
    
    // A BoolType represents a boolean type.
    type BoolType struct {
    	BasicType
    }
    
    // An AddrType represents a machine address type.
    type AddrType struct {
    	BasicType
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/authz.go

    	"errored": {
    		cel.MemberOverload("decision_errored", []*cel.Type{DecisionType}, cel.BoolType,
    			cel.UnaryBinding(decisionErrored))},
    	"error": {
    		cel.MemberOverload("decision_error", []*cel.Type{DecisionType}, cel.StringType,
    			cel.UnaryBinding(decisionError))},
    	"allowed": {
    		cel.MemberOverload("decision_allowed", []*cel.Type{DecisionType}, cel.BoolType,
    			cel.UnaryBinding(decisionAllowed))},
    	"reason": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    		field("name", apiservercel.StringType, true),
    		field("namespace", apiservercel.StringType, false),
    		field("operation", apiservercel.StringType, true),
    		field("userInfo", userInfoType, true),
    		field("dryRun", apiservercel.BoolType, false),
    		field("options", apiservercel.DynType, false),
    	))
    }
    
    // BuildNamespaceType generates a DeclType for Namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    	Expression string
    }
    
    func (v *fakeValidationCondition) GetExpression() string {
    	return v.Expression
    }
    
    func (v *fakeValidationCondition) ReturnTypes() []*celgo.Type {
    	return []*celgo.Type{celgo.BoolType}
    }
    
    type fakeAuditAnnotationCondition struct {
    	ValueExpression string
    }
    
    func (v *fakeAuditAnnotationCondition) GetExpression() string {
    	return v.ValueExpression
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top