Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 175 for excluded (0.26 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

        }
    
        def 'include and exclude patterns are case insensitive when enabled'() {
            given:
            file('files/sub/a.TXT').createFile()
            file('files/sub/b.txt').createFile()
            file('files/sub/c.Txt').createFile()
            file('files/EXCLUDE/a.TXT').createFile()
            file('files/sub/Exclude/a.TXT').createFile()
            buildScript '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    					s.values[v.ID].spill = v // v starts life spilled
    					continue
    				}
    				// register-based phi
    				s.assignReg(r, v, v)
    			}
    
    			// Deallocate any values which are no longer live. Phis are excluded.
    			for r := register(0); r < s.numRegs; r++ {
    				if phiUsed>>r&1 != 0 {
    					continue
    				}
    				v := s.regs[r].v
    				if v != nil && !regValLiveSet.contains(v.ID) {
    					s.freeReg(r)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    By default, `fileTree()` returns a `FileTree` instance that applies some default exclude patterns for convenience — the same defaults as Ant.
    For the complete default exclude list, see http://ant.apache.org/manual/dirtasks.html#defaultexcludes[the Ant manual].
    
    [[sec:change_default_excludes]]
    If those default excludes prove problematic, you can work around the issue by changing the default excludes in the settings script:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                        addIncludeRule(qName, attributes);
                    } else if ("exclude".equals(qName) && state == State.DEP) {
                        addExcludeRule(qName, attributes);
                    } else if ("exclude".equals(qName) && state == State.DEPS) {
                        state = State.EXCLUDE;
                        parseRule(qName, attributes);
                        getMd().addExcludeRule((ExcludeRule) confAware);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                configurations {
                    api.exclude(group: "api-group", module: "api-module")
                    apiElements.exclude(group: "apiElements-group", module: "apiElements-module")
                    runtime.exclude(group: "runtime-group", module: "runtime-module")
                    runtimeElements.exclude(group: "runtimeElements-group", module: "runtimeElements-module")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            !configuration.transitive
        }
    
        def excludes() {
            def excludeArgs1 = [group: "aGroup"]
            def excludeArgs2 = [module: "aModule"]
            def configuration = conf()
            def rule = new DefaultExcludeRule("groupValue", null)
    
            when:
            configuration.exclude(excludeArgs1)
            configuration.exclude(excludeArgs2);
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                }
            }
        }
    
        def "included builds use their own libraries extension"() {
            file("included/build.gradle") << """
                plugins {
                    id 'java-library'
                }
    
                group = 'com.acme'
                version = 'zloubi'
    
                dependencies {
                    implementation libs.from.included
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    	check.rawExpr(nil, x, e, nil, allowGeneric)
    	check.exclude(x, 1<<novalue)
    	check.singleValue(x)
    }
    
    // exclude reports an error if x.mode is in modeset and sets x.mode to invalid.
    // The modeset may contain any of 1<<novalue, 1<<builtin, 1<<typexpr.
    func (check *Checker) exclude(x *operand, modeset uint) {
    	if modeset&(1<<x.mode) != 0 {
    		var msg string
    		var code Code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. src/syscall/zerrors_solaris_amd64.go

    	28: "virtual Timer Expired",
    	29: "profiling Timer Expired",
    	30: "cpu Limit Exceeded",
    	31: "file Size Limit Exceeded",
    	32: "no runnable lwp",
    	33: "inter-lwp signal",
    	34: "checkpoint Freeze",
    	35: "checkpoint Thaw",
    	36: "thread Cancellation",
    	37: "resource Lost",
    	38: "resource Control Exceeded",
    	39: "reserved for JVM 1",
    	40: "reserved for JVM 2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    precompiled header, first a header file needs to be defined that includes all of the headers that should be precompiled. It must be specified as the first included header in every source file where the precompiled header should be used. It is assumed that this header file, and any headers it contains, make use of header guards so that they can be included in an idempotent manner. If header guards are not used in a header file, it is possible the header could be compiled more than once and could potentially...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top