Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for toolType (0.14 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. staging/src/k8s.io/apiserver/pkg/cel/types.go

    	// types supported.
    	AnyType = NewSimpleTypeWithMinSize("any", cel.AnyType, nil, 1)
    
    	// BoolType is equivalent to the CEL 'bool' type.
    	BoolType = NewSimpleTypeWithMinSize("bool", cel.BoolType, types.False, MinBoolSize)
    
    	// BytesType is equivalent to the CEL 'bytes' type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/third_party/forked/golang/reflect/deep_equal.go

    	}
    	if ft.In(0) != ft.In(1) {
    		return fmt.Errorf("expected arg 1 and 2 to have same type, but got %v", ft)
    	}
    	var forReturnType bool
    	boolType := reflect.TypeOf(forReturnType)
    	if ft.Out(0) != boolType {
    		return fmt.Errorf("expected bool return, got: %v", ft)
    	}
    	e[ft.In(0)] = fv
    	return nil
    }
    
    // Below here is forked from go's reflect/deepequal.go
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 20 17:18:42 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top