Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 798 for excluded (0.14 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelectorTest.groovy

        }
    
        def "never needs metadata"() {
            expect:
            !requiresMetadata("[1.0,2.0]")
            !requiresMetadata("[1.0,)")
            !requiresMetadata("[1.0]")
        }
    
        def "excluded upper bound corner cases"() {
            expect:
            !accept("[1.0,2.0)", "2.0-final")
            !accept("[1.0,2.0)", "2.0-dev")
            !accept("[1.0,2.0)", "2.0.0-dev")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. src/go/build/doc.go

    //
    // A build constraint, also known as a build tag, is a condition under which a
    // file should be included in the package. Build constraints are given by a
    // line comment that begins
    //
    //	//go:build
    //
    // Build constraints may also be part of a file's name
    // (for example, source_windows.go will only be included if the target
    // operating system is windows).
    //
    // See 'go help buildconstraint'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateInitPluginTemplateVersionFile.kt

            versionProperties["scala"] = "${scalaVersion.major}.${scalaVersion.minor}"
    
            // The latest released version is 2.0.0-M1, which is excluded by "don't use snapshot" strategy
            findLatest("scala-xml", "org.scala-lang.modules:scala-xml_${versionProperties["scala"]}:1.2.0", versionProperties)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 11:19:07 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/TypeSafeProjectAccessorsSchemaBuildingComponent.kt

     * * at runtime, resolves property access to the `projects` property on [Project] instances.
     */
    @Suppress("unused") // temporarily excluded from the schema, awaiting rework in a way that does not require the target scope
    internal
    class TypesafeProjectAccessorsComponent(targetScope: ClassLoaderScope) : ObjectConversionComponent, AnalysisSchemaComponent {
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/resolver/DefaultVariantArtifactResolver.java

            ModuleIdentifier module = component.getModuleVersionId().getModule();
    
            // artifactsToResolve are those not excluded by their owning module
            boolean hasExcludedArtifact = false;
            ImmutableList.Builder<ComponentArtifactMetadata> artifactsToResolveBuilder = ImmutableList.builderWithExpectedSize(artifacts.size());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. hack/golangci.yaml.in

      max-issues-per-linter: 0
      max-same-issues: 0
    
      # The default excludes disable the "should have comment or be unexported" check from revive.
      # We want that to be enabled, therefore we have to disable all default excludes and
      # add those back one-by-one that we want. See https://github.com/golangci/golangci-lint/issues/456#issuecomment-617470264
      exclude-use-default: false
      exclude:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/cmd/distpack/test.go

    	{name: "go/.gitattributes", exclude: true},
    	{name: "go/.github", exclude: true},
    	{name: "go/VERSION.cache", exclude: true},
    	{name: "go/bin", exclude: true},
    	{name: "go/pkg", exclude: true},
    	{name: "go/src/cmd/dist/dist", exclude: true},
    	{name: "go/src/cmd/dist/dist.exe", exclude: true},
    
    	{name: "go/bin/go", goos: "linux"},
    	{name: "go/bin/go", goos: "darwin"},
    	{name: "go/bin/go", goos: "windows", exclude: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 22:29:19 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. testing/architecture-test/src/test/java/org/gradle/architecture/test/PublicApiCorrectnessTest.java

            .should(not(haveDirectSuperclassOrInterfaceThatAre(gradleInternalApi())))
        );
    
        /**
         * Code written in Kotlin implicitly uses {@link org.jetbrains.annotations.Nullable}, so
         * those packages are excluded from this check.
         */
        @ArchTest
        public static final ArchRule all_methods_use_proper_Nullable = methods()
                .that(are(not_written_in_kotlin))
                .should(useJavaxAnnotationNullable()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    ** An upper bound exclude acts as a prefix exclude.
    This means that `[1.0, 2.0[` will also exclude all versions starting with `2.0` that are smaller than `2.0`.
    For example versions like `2.0-dev1` or `2.0-SNAPSHOT` are no longer included in the range.
    * A _prefix_ version range: e.g. `1.\+`, `1.3.+`
    ** Only versions exactly matching the portion before the `+` are included.
    ** The range `+` on its own will include any version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/error_test.go

    	}
    	defer f.Close()
    
    	declared := make(map[position]string)
    
    	var s scanner
    	var pattern string
    	s.init(f, func(line, col uint, msg string) {
    		// errors never start with '/' so they are automatically excluded here
    		switch {
    		case strings.HasPrefix(msg, "// ERROR "):
    			// we can't have another comment on the same line - just add it
    			declared[position{s.line, 0}] = strings.TrimSpace(msg[9:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top