Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 759 for excluded (0.52 sec)

  1. src/main/resources/fess_config.properties

    crawler.document.html.default.lang=
    crawler.document.html.default.include.index.patterns=
    crawler.document.html.default.exclude.index.patterns=(?i).*(css|js|jpeg|jpg|gif|png|bmp|wmv|xml|ico|exe)
    crawler.document.html.default.include.search.patterns=
    crawler.document.html.default.exclude.search.patterns=
    
    # file
    crawler.document.file.name.encoding=
    crawler.document.file.no.title.label=No title.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                        // don't stop processing in case a future segment explicitly excludes this repo
                    }
                    // check for external:http:*
                    else if (EXTERNAL_HTTP_WILDCARD.equals(repo) && isExternalHttpRepo(originalRepository)) {
                        result = true;
                        // don't stop processing in case a future segment explicitly excludes this repo
                    } else if (WILDCARD.equals(repo)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryContentFilteringIntegrationTest.groovy

            notation << [
                    "includeGroup('other')",
                    "includeGroupByRegex('oth[a-z]+')"
            ]
        }
    
        def "doesn't try to list module versions in repository when rule excludes group using #notation"() {
            def mod = ivyHttpRepo.module('org', 'foo', '1.0').publish()
            def ivyDirectoryList = ivyHttpRepo.directoryList('org', 'foo')
    
            given:
            repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  4. fastapi/encoders.py

                        return encoder_instance(obj)
        if include is not None and not isinstance(include, (set, dict)):
            include = set(include)
        if exclude is not None and not isinstance(exclude, (set, dict)):
            exclude = set(exclude)
        if isinstance(obj, BaseModel):
            # TODO: remove when deprecating Pydantic v1
            encoders: Dict[Any, Any] = {}
            if not PYDANTIC_V2:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/cluster/cluster_test.go

    		},
    		{
    			"tested difference namespace skip exclude",
    			&v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "in-test1",
    					Namespace: "test",
    					Labels: map[string]string{
    						"l3": "lv3",
    						"l4": "lv4",
    					},
    					Annotations: map[string]string{
    						"a3": "av3",
    					},
    				},
    			},
    			&config2.BugReportConfig{
    				Exclude: []*config2.SelectionSpec{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 17:23:32 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

                archiveFileName = 'test.war'
                duplicatesStrategy = 'exclude'
            }
            '''
    
            when:
            run "war"
    
            then:
            def war = new JarTestFixture(file('build/test.war'))
            war.assertFileContent('WEB-INF/web.xml', 'good')
        }
    
        def "exclude duplicates: classpath precedence over webInf"() {
            given:
            createDir('bad') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

        private void computeExclusions() {
            List<ExcludeMetadata> excludes = dependencyMetadata.getExcludes();
            if (excludes.isEmpty()) {
                cachedExclusions = transitiveExclusions;
            } else {
                computeExclusionsWhenExcludesPresent(excludes);
            }
        }
    
        private void computeExclusionsWhenExcludesPresent(List<ExcludeMetadata> excludes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

             * based on the directory/file excludes or the provided filtering predicate.
             * Excludes won't mark this walk as `filtered`, only if the `predicate` rejects any entry.
             **/
            private boolean shouldVisit(Path path, String internedName, boolean isDirectory) {
                if (isDirectory) {
                    if (defaultExcludes.excludeDir(internedName)) {
                        return false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

        /**
         * Provides the software component that should be published.
         *
         * <ul>
         *     <li>Any artifacts declared by the component will be included in the publication.</li>
         *     <li>The dependencies declared by the component will be included in the published meta-data.</li>
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

        /**
         * Provides the software component that should be published.
         *
         * <ul>
         *     <li>Any artifacts declared by the component will be included in the publication.</li>
         *     <li>The dependencies declared by the component will be included in the published meta-data.</li>
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top