Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,194 for Child (0.38 sec)

  1. pkg/ctrlz/assets/static/css/all.css

        border-top: 1px solid #ddd
    }
    
    tr:first-child th:first-child {
        border-radius: 4px 0 0 0
    }
    
    tr:first-child td:first-child {
        border-radius: 4px 0 0 0
    }
    
    tr:first-child th:last-child {
        border-radius: 0 4px 0 0
    }
    
    tr:first-child td:last-child {
        border-radius: 0 4px 0 0
    }
    
    tr:last-child td {
        border-bottom: 1px solid #ddd
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/merged-filter-order/sub/pom.xml

        Verify that filter definitions are properly merged.
      </description>
    
      <build>
        <filters>
          <filter>src/main/filters/child-a.properties</filter>
          <filter>src/main/filters/child-c.properties</filter>
          <filter>src/main/filters/child-b.properties</filter>
          <filter>src/main/filters/child-d.properties</filter>
        </filters>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/InheritanceAssembler.java

        /**
         * Merges values from the specified parent model into the given child model. Implementations are expected to keep
         * parent and child completely decoupled by injecting deep copies of objects into the child rather than the original
         * objects from the parent.
         *
         * @param child The child model into which to merge the values inherited from the parent, must not be
         *            <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/graph/ProjectSelectorTest.java

            selectors.add(":maven-core");
    
            final MavenProject mavenProject = createMavenProject("maven-core");
            final MavenProject child = createMavenProject("maven-core-child");
            mavenProject.setCollectedProjects(Collections.singletonList(child));
            final List<MavenProject> listOfProjects = Collections.singletonList(mavenProject);
    
            final Set<MavenProject> requiredProjectsBySelectors =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskFailureIntegrationTest.groovy

    class DeferredTaskFailureIntegrationTest extends AbstractDeferredTaskDefinitionIntegrationTest {
        def "reports failure in task constructor when task realized"() {
            createDirs("child")
            settingsFile << """
                include "child"
            """
            file("child/build.gradle") << """
                class Broken extends DefaultTask {
                    Broken() {
                        throw new RuntimeException("broken task")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. pkg/apis/resource/structured/namedresources/validation/validation_test.go

    		},
    		"version-bad": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("instances").Index(0).Child("attributes").Index(0).Child("version"), "1.0", "must be a string compatible with semver.org spec 2.0.0")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/sparsetree.go

    // order chosen. Because the Child-Sibling order is used
    // to assign entry and exit numbers in the treewalk, those
    // numbers are also consistent with this order (i.e.,
    // Sibling(x) has entry number larger than x's exit number).
    func (t SparseTree) Sibling(x *Block) *Block {
    	return t[x.ID].sibling
    }
    
    // Child returns a child of x in the dominator tree, or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  8. pkg/test/framework/scope_test.go

    	exp := []*resource.FakeResource{
    		{
    			IDValue:    "child-resource",
    			OtherValue: "child",
    		},
    		{
    			IDValue:    "parent-resource",
    			OtherValue: "parent",
    		},
    	}
    
    	g := NewWithT(t)
    	parent := newScope("parent", nil)
    	parent.add(exp[1], &resourceID{id: exp[1].IDValue})
    	child := newScope("child", parent)
    	child.add(exp[0], &resourceID{id: exp[0].IDValue})
    	var got []OtherInterface
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/start.go

    // If telemetryChildVar is set to "1" in the environment, this is the telemetry
    // child.
    //
    // If telemetryChildVar is set to "2", this is a child of the child, and no
    // further forking should occur.
    const telemetryChildVar = "GO_TELEMETRY_CHILD"
    
    // If telemetryUploadVar is set to "1" in the environment, the upload token has been
    // acquired by the parent, and the child should attempt an upload.
    const telemetryUploadVar = "GO_TELEMETRY_CHILD_UPLOAD"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/CopySourceSpec.java

        /**
         * Specifies the source files or directories for a copy and creates a child {@code CopySourceSpec}. The given source
         * path is evaluated as per {@link org.gradle.api.Project#files(Object...)} .
         *
         * @param sourcePath Path to source for the copy
         * @param configureClosure closure for configuring the child CopySourceSpec
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top