Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 363 for child7 (0.12 sec)

  1. src/syscall/exec_bsd.go

    	Setsid     bool        // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    	// in the child process: an index into ProcAttr.Files.
    	// This is only meaningful if Setsid is true.
    	Setctty bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LazyDownloadsIntegrationTest.groovy

        def module = mavenHttpRepo.module("test", "test", "1.0").publish()
        def module2 = mavenHttpRepo.module("test", "test2", "1.0").publish()
    
        def setup() {
            createDirs("child")
            settingsFile << "include 'child'"
            buildFile << """
                allprojects {
                    repositories {
                        maven { url '$mavenHttpRepo.uri' }
                    }
                    configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenVersionRangeResolveIntegrationTest.groovy

    repositories {
        maven {
            url "${mavenRepo.uri}"
        }
    }
    
    configurations { compile }
    
    dependencies {
        compile group: "org.test", name: "child", version: "1.0"
    }
    """
            and:
            mavenRepo.module('org.test', 'child', '1.0').parent('org.test', 'parent', '[2.0,3.0)').publish()
            mavenRepo.module('org.test', 'parent', '1.0').dependsOn('org.test', 'dep', '1.0').publishPom()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/lca.go

    	rangeMin [][]ID
    }
    
    type lcaRangeBlock struct {
    	b          *Block
    	parent     ID    // parent in dominator tree.  0 = no parent (entry or unreachable)
    	firstChild ID    // first child in dominator tree
    	sibling    ID    // next child of parent
    	pos        int32 // an index in the Euler tour where this block appears (any one of its occurrences)
    	depth      int32 // depth in dominator tree (root=0, its children=1, etc.)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 21:52:15 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/TypeInspectorTestHelper.java

        }
    
        interface Thing extends SuperThing, GenericThing {
            <T extends Item4> List<T> get();
        }
    
        interface Parent {
            Child getFirstChild();
        }
    
        interface Child {
            Parent getParent();
            Child getNextSibling();
        }
    
        interface GenericItem1<T> {
        }
    
        interface GenericItem2<T> {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyIncludedBuildIntegrationTest.groovy

                apply plugin: 'java'
                dependencies { implementation 'org.test:buildB:1.2' }
            """
    
            repo.file("settings.gradle") << """
                includeBuild 'child'
            """
            repo.file("child/settings.gradle").createFile()
            repo.commit("version 1.2")
            repo.createLightWeightTag("1.2")
    
            when:
            fails("assemble")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. utils/tests/models.go

    }
    
    type Order struct {
    	gorm.Model
    	Num      string
    	Coupon   *Coupon
    	CouponID string
    }
    
    type Parent struct {
    	gorm.Model
    	FavChildID uint
    	FavChild   *Child
    	Children   []*Child
    }
    
    type Child struct {
    	gorm.Model
    	Name     string
    	ParentID *uint
    	Parent   *Parent
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:36:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/HierarchicalNameSerializer.java

            if (separator == 0) {
                return decoder.readString();
            } else {
                String parent = readName(decoder);
                String child = readName(decoder);
                return parent + (char) (separator & 0xFF) + child;
            }
        }
    
        private void writeName(String name, Encoder encoder) throws IOException {
            Integer id = namesById.inverse().get(name);
            if (id == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicMethodLookupIntegrationTest.groovy

        )
        def "inherited convention method is preferred over property with closure value"() {
            given:
            createDirs("child")
            settingsFile << "include 'child'"
            buildFile """
    class ContactConvention {
        def contacts(String arg) { arg }
    }
    
    convention.plugins.contacts = new ContactConvention()
    
    subprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4TestClassDetectionIntegrationTest.groovy

                    }
    
                    @Override
                    public void run(RunNotifier notifier) {
                        for (Description child : description.getChildren()) {
                            notifier.fireTestStarted(child);
                            notifier.fireTestFinished(child);
                        }
                    }
                }
            """.stripIndent()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top