- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 267 for COMPILE (0.04 sec)
-
ci/official/utilities/extract_resultstore_links.py
ResultDictType = Dict[str, Dict[str, Union[str, int]]] RESULT_STORE_LINK_RE = re.compile( r'^INFO: Streaming build results to: (https://[\w./\-]+)') FAILED_BUILD_LINE = 'FAILED: Build did NOT complete successfully' BUILD_STATUS_LINE = 'INFO: Build' TESTS_FAILED_RE = re.compile(r'^INFO: Build completed, \d+ tests? FAILED') BAZEL_COMMAND_RE = re.compile( r'(^| )(?P<command>bazel (.*? )?(?P<type>test|build) .+)')
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Nov 08 17:50:27 UTC 2023 - 10.9K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/filters/AnonymousClassesFilter.groovy
import javassist.CtClass import java.util.regex.Pattern /** * Matches JVM anonymous classes. */ class AnonymousClassesFilter implements ClassFilter { private static final Pattern PATTERN = Pattern.compile('.*\\$[0-9]+$') @Override boolean matches(CtClass ctClass) { return ctClass.name.matches(PATTERN) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1K bytes - Viewed (0) -
doc/next/3-tools.md
## Tools {#tools} ### Go command {#go-command} ### Cgo {#cgo} Cgo currently refuses to compile calls to a C function which has multiple incompatible declarations. For instance, if `f` is declared as both `void f(int)` and `void f(double)`, cgo will report an error instead of possibly generating an incorrect call sequence for `f(0)`. New in this release is a better detector for this error condition when the incompatible declarations appear in different
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Aug 09 19:57:59 UTC 2024 - 856 bytes - Viewed (0) -
ci/official/envs/enable_pycpp_build
# limitations under the License. # ============================================================================== # # Changes the behavior in pycpp.sh from "run all tests" to "verify that all # tests can compile." Used in some CI jobs (macOS and Linux Arm64) where test # execution is too expensive. TFCI_PYCPP_SWAP_TO_BUILD_ENABLE=1
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Feb 02 21:57:40 UTC 2024 - 976 bytes - Viewed (0) -
src/main/resources/crawler/transformer.xml
<property name="propertyMap">defaultPropertyMap</property> <property name="childUrlRuleMap">htmlUrlRuleMap</property> <!-- <property name="invalidUrlPattern">@java.util.regex.Pattern@compile("^\\s*javascript:|^\\s*mailto:|^\\s*irc:|^\\s*skype:|^\\s*callto:",@java.util.regex.Pattern@CASE_INSENSITIVE)</property> --> <property name="convertUrlMap"> {"feed:" : "http:"} </property> <!-- segment -->
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jan 10 03:35:10 UTC 2019 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
protected static final String CACHE_MSG = "cache_msg"; protected static final Pattern LOCAL_PATH_PATTERN = Pattern.compile("^file:/+[a-zA-Z]:"); protected static final Pattern SHARED_FOLDER_PATTERN = Pattern.compile("^file:/+[^/]\\."); protected static final String ELLIPSIS = "..."; protected boolean encodeUrlLink = false;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 40.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java
public class SourceMetaDataVisitor extends VoidVisitorAdapter<ClassMetaDataRepository<ClassMetaData>> { private static final Pattern GETTER_METHOD_NAME = Pattern.compile("(get|is)(.+)"); private static final Pattern SETTER_METHOD_NAME = Pattern.compile("set(.+)"); private final List<ClassMetaData> allClasses = new ArrayList<ClassMetaData>(); private final Deque<ClassMetaData> classStack = new LinkedList<ClassMetaData>();
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.8K bytes - Viewed (0) -
build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml
<suppress checks="JavadocPackage" files=".*[/\\]language-groovy[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]api[/\\]tasks[/\\]compile[/\\][^/\\]+"/> <suppress checks="JavadocPackage" files=".*[/\\]language-java[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]api[/\\]tasks[/\\]compile[/\\][^/\\]+"/> <suppress checks="JavadocPackage"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Jun 10 14:28:48 UTC 2024 - 10.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
/** * Shortcut for {@code getService(DependencyResolver.class).flatten(...)}. * * @param node node for which to get a flattened list * @param scope build path scope (main compile, test compile, etc.) of desired nodes * @return flattened list of node with the given build path scope * @throws org.apache.maven.api.services.DependencyResolverException if the dependency flattening failed *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 16:43:07 UTC 2024 - 36.4K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t02/p0/p1/pom.xml
<plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>test</id> <phase>package</phase> <goals> <goal>compile</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0)