Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 961 for excluded (0.2 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    type MatchResources struct {
    	// NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	// object layer not initialized we return with no decision.
    	if newObjectLayerFn() == nil {
    		return
    	}
    
    	// Disable server-side replication on object prefixes which are excluded
    	// from versioning via the MinIO bucket versioning extension.
    	if !globalBucketVersioningSys.PrefixEnabled(bucket, object) {
    		return
    	}
    
    	replStatus := mopts.ReplicationStatus()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/cache.go

    	// zip is extracted, but if it was deleted (by another program?), we need
    	// to re-calculate it. Note that checkMod will repopulate the ziphash
    	// file if it doesn't exist, but if the module is excluded by checks
    	// through GONOSUMDB or GOPRIVATE, that check and repopulation won't happen.
    	ziphashPath, err := CachePath(ctx, m, "ziphash")
    	if err != nil {
    		return dir, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/module/module.go

    // of a valid import path except that the set of allowed characters is larger:
    // all Unicode letters, ASCII digits, the ASCII space character (U+0020),
    // and the ASCII punctuation characters
    // “!#$%&()+,-.=@[]^_{}~”.
    // (The excluded punctuation characters, " * < > ? ` ' | / \ and :,
    // have special meanings in certain shells or operating systems.)
    //
    // CheckFilePath may be less restrictive in the future, but see the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/types.go

    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    type MatchResources struct {
    	// NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ServiceManager.java

       * that the {@link ServiceManager} functions properly even when it is managing no services.
       *
       * <p>The use of this class is considered an implementation detail of ServiceManager and as such
       * it is excluded from {@link #servicesByState}, {@link #startupTimes}, {@link #toString} and all
       * logging statements.
       */
      private static final class NoOpService extends AbstractService {
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_ru.properties

    labels.default_sort_value=Default Sort Value
    labels.append_query_param_enabled=Append Params to URL
    labels.login_required=Login Required
    labels.login_link=Login Link
    labels.thumbnail=Thumbnail View
    labels.ignore_failure_type=Excluded Failure Type
    labels.failure_count_threshold=Failure Count Threshold
    labels.popular_word_word_enabled=Popular Word Response
    labels.supported_search_web=Web
    labels.supported_search_none=Not Available
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            /*
            dependencies:
    
            impl:1.3->api:1.3
            foo->api:1.5
            bar->impl:1.3(*)->api:1.3(*)
    
            * - should be excluded as it was already visited
            */
    
            buildFile << """
                $common
    
                dependencies {
                    conf 'org.utils:impl:1.3', 'org.stuff:foo:2.0', 'org.stuff:bar:2.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            // [MNG-5600] Dependency management import should support exclusions.
            List<Exclusion> exclusions = dependency.getExclusions();
            if (importMgmt != null && !exclusions.isEmpty()) {
                // Dependency excluded from import.
                List<Dependency> dependencies = importMgmt.getDependencies().stream()
                        .filter(candidate -> exclusions.stream().noneMatch(exclusion -> match(exclusion, candidate)))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

            expect:
            def exclusions = moduleExclusions.excludeAny(copyOf(dep.excludes))
            exclusions == moduleExclusions.excludeAny(ImmutableList.of(exclude1, exclude2))
            exclusions.is(moduleExclusions.excludeAny(copyOf(dep.excludes)))
        }
    
        static class EqualsValuesCompatibleRule implements AttributeCompatibilityRule<String> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
Back to top