Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for Fontaine (0.22 sec)

  1. .teamcity/.mvn/wrapper/MavenWrapperDownloader.java

            File baseDirectory = new File(args[0]);
            System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
    
            // If the maven-wrapper.properties exists, read it and check if it contains a custom
            // wrapperUrl parameter.
            File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
            String url = DEFAULT_DOWNLOAD_URL;
            if(mavenWrapperPropertyFile.exists()) {
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 4.8K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexer.java

                    unwindTo(Arrays.asList("tr", "table", "thead", "tbody"), visitor);
                } else if (blockElements.contains(name)) {
                    unwindTo("p", visitor);
                } else if (!blockContent.contains(name) && !(name.equals("a") && attributes.containsKey("name"))) {
                    onInlineContent();
                }
    
                elementStack.addFirst(name);
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 5.8K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/TypeNameResolver.java

                candidateClassName = outerClassName + '.' + name;
                if (outerClass.getInnerClassNames().contains(candidateClassName)) {
                    return candidateClassName;
                }
                outerClassName = outerClass.getOuterClassName();
            }
    
            if (name.contains(".")) {
                return name;
            }
    
            for (String importedClass : classMetaData.getImports()) {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 6.3K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/projects/StageProject.kt

                // in gradleBuildSmokeTest, most of the tests are for using the configuration cache on gradle/gradle
                val configCacheTests = (functionalTests + specificBuildTypes).filter { it.name.lowercase().contains("configcache") || it.name.contains(GRADLE_BUILD_SMOKE_TEST_NAME) }
                if (configCacheTests.size > 1) {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 9.2K bytes
    - Viewed (0)
  5. .cm/plugins/filters/categorize/index.js

    /**
     * @module categorize
     * @description Returns a mapping of platforms to the information about the files involved in the PR contained in each platform
     * @param {Map} fileOwners mapping of platform name to a list of files involved in the change located in that platform
     * @param {[FileMetadata]} fileMetadatas - gitStream's list of metadata about file changes in the PR including path
    JavaScript
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            }
        }
    
        private void wrapContentInContainer(Document document) {
            // Wrap the page in a text container to get the margins
            Elements bodyContent = document.body().children().remove();
            document.body().prepend("<div class='container'/>");
            document.body().children().get(0).html(bodyContent.outerHtml());
        }
    
        private void addTOC(Document document) {
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 25 04:49:56 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  7. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.collect-failed-tasks.gradle.kts

        override fun shouldInclude(taskPath: String): Boolean {
            // https://github.com/gradle/gradle/issues/21351
            return super.shouldInclude(taskPath) || taskPath.contains("ktlintMainSourceSetCheck")
        }
    
        override fun action(taskPath: String, taskResult: TaskOperationResult) {
            if (taskResult is TaskFailureResult) {
                failedTaskPaths.add(taskPath)
            }
        }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Aug 11 07:01:27 GMT 2022
    - 2.3K bytes
    - Viewed (1)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/AbstractBuildScanInfoCollectingService.kt

            if (shouldInclude(taskPath)) {
                action(taskPath, event.result)
            }
        }
    
        protected open fun shouldInclude(taskPath: String): Boolean = parameters.monitoredTaskPaths.get().contains(taskPath)
    
        abstract fun action(taskPath: String, taskResult: TaskOperationResult)
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Aug 11 07:01:27 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  9. build-logic-commons/code-quality-rules/src/main/java/gradlebuild/codenarc/rules/IntegrationTestFixtureVisitor.java

            return isIntegrationTest(node.getDeclaringClass());
        }
    
        @Override
        public void visitMethodCallExpression(MethodCallExpression mce) {
            if (AstUtil.isMethodNamed(mce, "contains")) {
                checkOutputContains(mce);
            } else if (AstUtil.isMethodNamed(mce, "assertOutputContains")) {
                Expression objectExpr = mce.getObjectExpression();
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.9K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

        validations:
          required: false
      - type: textarea
        id: steps-to-reproduce
        attributes:
          label: Steps to Reproduce
          description: |
            Provide a [minimal, self-contained example](https://en.wikipedia.org/wiki/Minimal_reproducible_example) project demonstrating the problem as a GitHub repository or an attached archive.
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Feb 16 07:49:32 GMT 2024
    - 2.7K bytes
    - Viewed (0)
Back to top