Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for childrenOf (0.15 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                    module('org.gradle.test:lib.subgroup:1.1') {
                        artifact(type: 'txt')
                    }
                }
            }
        }
    
        def "supports aliases which also have children"() {
            settingsFile << """
                dependencyResolutionManagement {
                    versionCatalogs {
                        libs {
                            library("top", "org:top:1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                transformerName: "MakeGreen",
                subjectName: "producer.jar (project :producer)",
            ])
    
            def executeWorkOps1 = buildOperations.children(executePlannedStepOps[0], ExecuteWorkBuildOperationType)
            def executeWorkOps2 = buildOperations.children(executePlannedStepOps[1], ExecuteWorkBuildOperationType)
    
            // Order of scheduling/execution is not guaranteed between the consumer projects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

        }
    
    
        @Override
        public CloseableIterator<SmbResource> children () throws CIFSException {
            return SmbEnumerationUtil.doEnum(this, "*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, null);
        }
    
    
        @Override
        public CloseableIterator<SmbResource> children ( String wildcard ) throws CIFSException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            if (type == MutationType.STRATEGY) {
                return;
            }
    
            preventIllegalParentMutation(type);
            boolean emittedDeprecation = maybePreventMutation(type, type + " of parent");
    
            // Notify children of this mutation, but don't emit a deprecation if we already emitted one
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            then:
            1 * fileResolver.resolve('a') >> file
            0 * fileResolver._
    
            then:
            files as List == [file]
        }
    
        def "can visit structure and children after finalized from paths"() {
            given:
            def file1 = new File('one')
            def file2 = new File('two')
            _ * fileResolver.resolve(file1) >> file1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    		ds := loader.Sym(pdie.Sym.(dwSym))
    		d.rtmap[ds] = gts
    		d.tdmap[gts] = ds
    	}
    
    	return d.dtolsym(pdie.Sym)
    }
    
    // Copies src's children into dst. Copies attributes by value.
    // DWAttr.data is copied as pointer only. If except is one of
    // the top-level children, it will not be copied.
    func (d *dwctxt) copychildrenexcept(ctxt *Link, dst *dwarf.DWDie, src *dwarf.DWDie, except *dwarf.DWDie) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            mavenRepo.module('org', 'direct', '1.0')
            // endorsing dependency that will cause a reselection of the parent again causing a reselection of other children
            // ("looping back" if a another child is the same as the one that was endorsed)
                .dependsOn([endorseStrictVersions: true], lib1).dependsOn(lib05).dependsOn(lib1).withModuleMetadata().publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                            into 'action'
                        }
                    }
                }
                task copyTask(type: Copy) {
                    ext.children = 'res'
                    into "task"
                    into "dir", {
                        from children
                    }
                }
            """
    
            then:
            succeeds "copyAction", "copyTask"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    	// incoming branches and accumulate conditions that uniquely
    	// dominate the current block. If we discover a contradiction,
    	// we can eliminate the entire block and all of its children.
    	// On the way back up, we consider outgoing branches that
    	// haven't already been considered. This way we consider each
    	// branch condition only once.
    	for len(work) > 0 {
    		node := work[len(work)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    			continue
    		}
    		out = append(out, sub[i])
    	}
    	sub = out
    
    	return sub
    }
    
    // leadingString returns the leading literal string that re begins with.
    // The string refers to storage in re or its children.
    func (p *parser) leadingString(re *Regexp) ([]rune, Flags) {
    	if re.Op == OpConcat && len(re.Sub) > 0 {
    		re = re.Sub[0]
    	}
    	if re.Op != OpLiteral {
    		return nil, 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top