Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,701 for Excluded (0.23 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifestMergeDetails.java

        @Override
        public String getValue() {
            return value;
        }
    
        public boolean isExcluded() {
            return excluded;
        }
    
        @Override
        public void setValue(String value) {
            this.value = value;
        }
    
        @Override
        public void exclude() {
            excluded = true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. internal/bucket/versioning/versioning.go

    	Suspended State = "Suspended"
    )
    
    var (
    	errExcludedPrefixNotSupported = Errorf("excluded prefixes extension supported only when versioning is enabled")
    	errTooManyExcludedPrefixes    = Errorf("too many excluded prefixes")
    )
    
    // ExcludedPrefix - holds individual prefixes excluded from being versioned.
    type ExcludedPrefix struct {
    	Prefix string
    }
    
    // Versioning - Configuration for bucket versioning.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationExtensions.kt

    
    /**
     * Adds an exclude rule to exclude transitive dependencies for all dependencies of this configuration.
     * You can also add exclude rules per-dependency. See [ModuleDependency.exclude].
     *
     * @param group the optional group identifying the dependencies to be excluded.
     * @param module the optional module name identifying the dependencies to be excluded.
     * @return this
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/CopyFileVisitorImplTest.groovy

            1 * instantiator.newInstance(DefaultFileCopyDetails.class, dirDetails, specResolver, objectFactory, fileSystem) >> defaultFileCopyDetails
            1 * action.processFile(defaultFileCopyDetails)
            0 * defaultFileCopyDetails.excluded
        }
    
        def "visit file if no action are defined in copy spec"() {
            given:
            FileVisitDetails dirDetails = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 20 13:25:37 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/scripts/process-log.groovy

    /**
     * This script is used to process a DEBUG log of gradle and
     * generates an output directory with the traces of merged
     * exclude rules and application of exclude rules during a
     * build.
     */
    import groovy.json.JsonOutput
    import groovy.json.JsonSlurper
    
    File logFile = new File(args[0])
    File processedDirectory = findProcessedDirectory()
    File excludesDir = new File(processedDirectory, "exclusions")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. .idea/codeInsightSettings.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <project version="4">
      <component name="JavaProjectCodeInsightSettings">
        <excluded-names>
          <name>kotlin.reflect.jvm.internal.impl</name>
        </excluded-names>
      </component>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Feb 25 17:30:00 UTC 2016
    - 233 bytes
    - Viewed (0)
  7. hack/verify-flags-underscore.py

    # not contain underscore. If any flag needs to be excluded from this check,
    # need to add that flag in hack/verify-flags/excluded-flags.txt.
    def check_underscore_in_flags(rootdir, files):
        # preload the 'known' flags which don't follow the - standard
        pathname = os.path.join(rootdir, "hack/verify-flags/excluded-flags.txt")
        f = open(pathname, 'r')
        excluded_flags = set(f.read().splitlines())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. cni/pkg/plugin/plugin.go

    	}
    
    	// Check if istio-init container is present; in that case exclude pod
    	if pi.Containers.Contains(ISTIOINIT) {
    		log.Infof("excluded due to being already injected with istio-init container")
    		return nil
    	}
    
    	if val, ok := pi.ProxyEnvironments["DISABLE_ENVOY"]; ok {
    		if val, err := strconv.ParseBool(val); err == nil && val {
    			log.Infof("excluded due to DISABLE_ENVOY on istio-proxy", podNamespace, podName)
    			return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/FileTree.java

         * passed to the closure as its delegate. Only files which match the specified include patterns will be included in
         * the filtered tree. Any files which match the specified exclude patterns will be excluded from the filtered
         * tree.</p>
         *
         * @param filterConfigClosure the closure to use to configure the filter.
         * @return The filtered tree.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  10. releasenotes/notes/ssh-iptables.yaml

        command will automatically configure `ISTIO_LOCAL_EXCLUDE_PORTS` to include port 22. This means that VM users will
        continue to have port 22 excluded, while Kubernetes users will have port 22 included now.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 06 15:15:39 UTC 2021
    - 1K bytes
    - Viewed (0)
Back to top