Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for excl (0.05 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/resources/fess_config.properties

    application/vnd.ms-excel=excel\n\
    application/vnd.ms-excel.sheet.2=excel\n\
    application/vnd.ms-excel.sheet.3=excel\n\
    application/vnd.ms-excel.sheet.4=excel\n\
    application/vnd.ms-excel.workspace.3=excel\n\
    application/vnd.ms-excel.workspace.4=excel\n\
    application/vnd.openxmlformats-officedocument.spreadsheetml.sheet=excel\n\
    application/vnd.ms-powerpoint=powerpoint\n\
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleModuleMetadata.groovy

                    this
                }
    
                DependencyView hasExclude(String group, String module = '*') {
                    String exc = "${group}:${module}"
                    assert find()?.excludes?.contains(exc)
                    checkedExcludes << exc
                    this
                }
    
                DependencyView noMoreExcludes() {
                    def uncheckedExcludes = find().excludes - checkedExcludes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImplTest.java

            assertContentType("application/msword", "extractor/msoffice/test.doc", "hoge.doc");
            assertContentType("application/vnd.ms-excel", "test/text1.txt", "hoge.xls");
            assertContentType("application/vnd.ms-excel", "extractor/msoffice/test.xls", "hoge.xls");
            assertContentType("application/vnd.ms-powerpoint", "test/text1.txt", "hoge.ppt");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

                pathTracker.leave();
                // File loop exceptions are ignored. When we encounter a loop (via symbolic links), we continue,
                // so we include all the other files apart from the loop.
                // This way, we include each file only once.
                if (isNotFileSystemLoopException(exc)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/AbstractMavenModule.groovy

                                            exclusions {
                                                for (exc in dep.exclusions) {
                                                    exclusion {
                                                        groupId(exc.group ?: '*')
                                                        artifactId(exc.module ?: '*')
                                                    }
                                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top