Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 284 for reporters (0.21 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileInjector.java

                        merged.put(key, element);
                    }
    
                    builder.plugins(merged.values());
                }
            }
    
            @Override
            protected void mergeReportPlugin_ReportSets(
                    ReportPlugin.Builder builder,
                    ReportPlugin target,
                    ReportPlugin source,
                    boolean sourceDominant,
                    Map<Object, Object> context) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  2. migrator/column_type.go

    	}
    	return ct.SQLColumnType.DecimalSize()
    }
    
    // Nullable reports whether the column may be null.
    func (ct ColumnType) Nullable() (nullable bool, ok bool) {
    	if ct.NullableValue.Valid {
    		return ct.NullableValue.Bool, true
    	}
    	return ct.SQLColumnType.Nullable()
    }
    
    // Unique reports whether the column may be unique.
    func (ct ColumnType) Unique() (unique bool, ok bool) {
    Go
    - Registered: Sun Apr 21 09:35:09 GMT 2024
    - Last Modified: Thu Mar 24 01:31:58 GMT 2022
    - 3.3K bytes
    - Viewed (0)
  3. src/archive/tar/strconv.go

    package tar
    
    import (
    	"bytes"
    	"fmt"
    	"strconv"
    	"strings"
    	"time"
    )
    
    // hasNUL reports whether the NUL character exists within s.
    func hasNUL(s string) bool {
    	return strings.Contains(s, "\x00")
    }
    
    // isASCII reports whether the input is an ASCII C-style string.
    func isASCII(s string) bool {
    	for _, c := range s {
    		if c >= 0x80 || c == 0x00 {
    			return false
    		}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/common/extensions.kt

            build/errorLogs/** => $hiddenArtifactDestination/errorLogs
            subprojects/internal-build-reports/build/reports/incubation/all-incubating.html => incubation-reports
            build/reports/dependency-verification/** => dependency-verification-reports
        """.trimIndent()
    
        paramsForBuildToolBuild(buildJvm, os, arch)
        params {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 10:49:15 GMT 2024
    - 13K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

            **/build/distributions/*.zip => promote-build-distributions
            **/build/website-checkout/data/releases.xml
            **/build/git-checkout/build/reports/integTest/** => distribution-tests
            **/smoke-tests/build/reports/tests/** => post-smoke-tests
            **/build/version-info.properties => version-info.properties
            """.trimIndent()
    
            dependencies {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Feb 07 17:05:02 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  6. .tm_properties

    softTabs = true
    tabSize = 4
    
    TM_JAVA_SOURCE_FOLDER_REGEX=src|groovy|java|test|unit|integration|functional
    
    [ "**/build/reports/tests" ]
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Nov 17 15:17:22 GMT 2011
    - 382 bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

                if (validationReportLevel == ValidationReportLevel.VERBOSE) {
                    logger.warn(
                            "Fix reported issues by adjusting plugin configuration or by upgrading above listed plugins. If no upgrade available, please notify plugin maintainers about reported issues.");
                }
                logger.warn(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 19 21:11:13 GMT 2023
    - 17.4K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/config.yml

    contact_links:
    - name: "Crash bug"
      url: https://istio.io/about/security-vulnerabilities/
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Oct 05 18:48:44 GMT 2020
    - 196 bytes
    - Viewed (0)
  9. build-logic/buildquality/src/main/kotlin/gradlebuild.incubation-report.gradle.kts

        sources.from(sourceSets.main.get().java.sourceDirectories)
        sources.from(sourceSets.main.get().groovy.sourceDirectories)
        htmlReportFile = file(layout.buildDirectory.file("reports/incubation/${project.name}.html"))
        textReportFile = file(layout.buildDirectory.file("reports/incubation/${project.name}.txt"))
    }
    
    plugins.withId("org.jetbrains.kotlin.jvm") {
        reportTask {
            sources.from(kotlinMainSourceSet.sourceDirectories)
        }
    }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  10. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportAggregationParameter.kt

    import org.gradle.api.file.ConfigurableFileCollection
    import org.gradle.api.file.RegularFileProperty
    import org.gradle.workers.WorkParameters
    
    
    interface IncubatingApiReportAggregationParameter : WorkParameters {
        val reports: ConfigurableFileCollection
        val htmlReportFile: RegularFileProperty
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 959 bytes
    - Viewed (0)
Back to top