Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for puts (0.19 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

                elementToElementMap.put("p", "para");
                elementToElementMap.put("ul", "itemizedlist");
                elementToElementMap.put("ol", "orderedlist");
                elementToElementMap.put("li", "listitem");
                elementToElementMap.put("em", "emphasis");
                elementToElementMap.put("strong", "emphasis");
                elementToElementMap.put("i", "emphasis");
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 29.3K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

    /**
     * Whether the project supports running with predictive test selection.
     *
     * Our performance tests don't work with PTS, yet.
     * Smoke and soak tests are hard to grasp for PTS, that is why we run them without.
     * When running on Windows with PTS, SimplifiedKotlinScriptEvaluatorTest fails. See https://github.com/gradle/gradle-private/issues/3615.
     */
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jan 17 13:36:27 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ci-reporting.gradle.kts

        val globalExtension = rootProject.extensions.getByType<TestFilesCleanupBuildServiceRootExtension>()
    
        val projectState = objects.newInstance(TestFilesCleanupProjectState::class.java)
    
        globalExtension.projectStates.put(path, projectState)
        projectState.projectBuildDir = layout.buildDirectory
        projectState.projectPath = path
        projectState.reportOnly = testFilesCleanup.reportOnly
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Jul 11 06:57:51 GMT 2023
    - 2K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/links/ClassLinkMetaData.java

            methods.put(method.getOverrideSignature(), new MethodLinkMetaData(method.getName(), method.getOverrideSignature(), style));
        }
    
        public void addEnumConstant(EnumConstantMetaData enumConstant, LinkMetaData.Style style) {
            String name = enumConstant.getName();
            methods.put(name, new EnumConstantLinkMetaData(name, style));
        }
    
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 7.4K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AcceptedRegressionsRuleSetup.java

        @SuppressWarnings("unchecked")
        public void execute(ViolationCheckContext context) {
            Map<String, Object> userData = (Map<String, Object>) context.getUserData();
            userData.put("acceptedApiChanges", acceptedApiChanges);
            userData.put("seenApiChanges", new HashSet<ApiChange>());
        }
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.6K bytes
    - Viewed (0)
  6. build-logic/buildquality/build.gradle.kts

        implementation(kotlin("compiler-embeddable") as String) {
            because("Required by IncubatingApiReportTask")
        }
        implementation("com.gradle:develocity-gradle-plugin") {
            because("Arch-test plugin configures the PTS extension")
        }
    
        testImplementation("org.junit.jupiter:junit-jupiter-engine")
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 03 13:29:44 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/SinceAnnotationMissingRuleCurrentGradleVersionSetup.java

        }
    
        @Override
        @SuppressWarnings("unchecked")
        public void execute(ViolationCheckContext context) {
            Map<String, Object> userData = (Map<String, Object>) context.getUserData();
            userData.put("currentVersion", currentVersion);
        }
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRule.groovy

            Map<String, CtClass> result = [:]
            collect(result, c)
            return result
        }
    
        private void collect(Map<String, CtClass> result, CtClass c) {
            c.interfaces.each { result.put(it.name, it) }
    
            if (c.superclass != null) {
                collect(result, c.superclass)
            }
        }
    
        private List<String> filterChangesToReport(CtClass c, Map<String, CtClass> interfaces) {
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Oct 06 19:15:15 GMT 2022
    - 2.8K bytes
    - Viewed (0)
  9. build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts

                            extensions.findByType<DevelocityTestConfiguration>()?.apply {
                                // PTS doesn't work well with architecture tests which scan all classes
                                predictiveTestSelection.enabled = false
                            }
                        }
                    }
                }
            }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 03 13:29:44 GMT 2024
    - 3K bytes
    - Viewed (0)
  10. .cm/plugins/filters/byCodeowner/ignore/index.js

            negative = true
            pattern = pattern.substr(1)
        }
    
        pattern = pattern
            // > Put a backslash ("\") in front of the first "!" for patterns that
            // >   begin with a literal "!", for example, `"\!important!.txt"`.
            .replace(REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION, '!')
            // > Put a backslash ("\") in front of the first hash for patterns that
            // >   begin with a hash.
    JavaScript
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
Back to top