Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for excl (0.17 sec)

  1. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGeneratorTest.groovy

            pom.getDependencies().set(pomDependencies(dependency))
    
            when:
            exclude1.group >> "excl-1-group"
            exclude1.module >> "excl-1-module"
            exclude2.group >> "excl-2-group"
            exclude2.module >> null
            exclude3.group >> null
            exclude3.module >> "excl-3-module"
    
            then:
            with (xml) {
                dependencies.dependency.exclusions.exclusion.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenPom.groovy

                optional = "true"==dep.optional.text()
            }
            if (dep.exclusions) {
                dep.exclusions.exclusion.each { excl ->
                    MavenDependencyExclusion exclusion = new MavenDependencyExclusion(
                        groupId: excl.groupId.text(),
                        artifactId: excl.artifactId.text(),
                    )
                    exclusions << exclusion
                }
    
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

            }
    
            Artifact result = toArtifact(artifact);
    
            List<Exclusion> excl = Optional.ofNullable(exclusions).orElse(Collections.emptyList()).stream()
                    .map(RepositoryUtils::toExclusion)
                    .collect(Collectors.toList());
            return new Dependency(result, artifact.getScope(), artifact.isOptional(), excl);
        }
    
        public static List<RemoteRepository> toRepos(List<ArtifactRepository> repos) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. src/os/file_plan9.go

    func openFileNolog(name string, flag int, perm FileMode) (*File, error) {
    	var (
    		fd     int
    		e      error
    		create bool
    		excl   bool
    		trunc  bool
    		append bool
    	)
    
    	if flag&O_CREATE == O_CREATE {
    		flag = flag & ^O_CREATE
    		create = true
    	}
    	if flag&O_EXCL == O_EXCL {
    		excl = true
    	}
    	if flag&O_TRUNC == O_TRUNC {
    		trunc = true
    	}
    	// O_APPEND is emulated on Plan 9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/PrecompiledScriptPlugin.kt

    fun KotlinLexer.hasShebangLine(): Boolean {
    
        if (tokenType != KtTokens.HASH) {
            return false
        }
    
        val mark = currentPosition
        advance()
    
        val hasShebangLine = tokenType == KtTokens.EXCL
    
        restore(mark)
        return hasShebangLine
    }
    
    
    private
    fun KotlinLexer.hasFileAnnotations(): Boolean {
    
        if (tokenType != KtTokens.AT) {
            return false
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. hack/update-codegen.sh

    #    k8s_tag_files_except foo bat/qux
    function k8s_tag_files_except() {
        for f in "${ALL_K8S_TAG_FILES[@]}"; do
            local excl=""
            for x in "$@"; do
                if [[ "$f" =~ "$x"/.* ]]; then
                    excl="true"
                    break
                fi
            done
            if [[ "${excl}" != true ]]; then
                echo "$f"
            fi
        done
    }
    
    # OpenAPI generation
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    			if haveExclude[x.Mod] {
    				kill[x.Syntax] = true
    				continue
    			}
    			haveExclude[x.Mod] = true
    		}
    		var excl []*Exclude
    		for _, x := range *exclude {
    			if !kill[x.Syntax] {
    				excl = append(excl, x)
    			}
    		}
    		*exclude = excl
    	}
    
    	// Remove duplicate replacements.
    	// Later replacements take priority over earlier ones.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&eta;":                             "\u03b7",
    	"&eth;":                             "\u00f0",
    	"&euml;":                            "\u00eb",
    	"&euro;":                            "\u20ac",
    	"&excl;":                            "\u0021",
    	"&exist;":                           "\u2203",
    	"&expectation;":                     "\u2130",
    	"&exponentiale;":                    "\u2147",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  9. src/html/entity.go

    		"eta;":                             '\U000003B7',
    		"eth;":                             '\U000000F0',
    		"euml;":                            '\U000000EB',
    		"euro;":                            '\U000020AC',
    		"excl;":                            '\U00000021',
    		"exist;":                           '\U00002203',
    		"expectation;":                     '\U00002130',
    		"exponentiale;":                    '\U00002147',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  10. src/main/resources/fess_thumbnail.xml

    		<postConstruct name="addCondition">
    			<arg>"mimetype"</arg>
    			<arg>"application/vnd.ms-excel"</arg>
    		</postConstruct>
    		<postConstruct name="addCondition">
    			<arg>"mimetype"</arg>
    			<arg>"application/vnd.ms-excel.sheet.2"</arg>
    		</postConstruct>
    		<postConstruct name="addCondition">
    			<arg>"mimetype"</arg>
    			<arg>"application/vnd.ms-excel.sheet.3"</arg>
    		</postConstruct>
    		<postConstruct name="addCondition">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Oct 11 21:34:52 UTC 2019
    - 5.4K bytes
    - Viewed (0)
Back to top