Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,232 for child7 (0.91 sec)

  1. maven-core/src/test/resources-project-builder/plugin-exec-merging-version-insensitive/sub/pom.xml

            <!-- NOTE: Use different version than parent -->
            <version>2.0</version>
            <executions>
              <execution>
                <id>child-1</id>
                <phase>child-1</phase>
              </execution>
              <execution>
                <id>child-2</id>
                <phase>child-2</phase>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. pkg/apis/storagemigration/validation/validation.go

    	// status is set and is an accepted value
    	if !validConditionStatuses.Has(string(condition.Status)) {
    		allErrs = append(allErrs, field.NotSupported(fldPath.Child("status"), condition.Status, validConditionStatuses.List()))
    	}
    
    	if condition.LastUpdateTime.IsZero() {
    		allErrs = append(allErrs, field.Required(fldPath.Child("lastTransitionTime"), "must be set"))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/egressselector/config.go

    	allErrs := field.ErrorList{}
    	if transport == nil {
    		allErrs = append(allErrs, field.Required(
    			fldPath.Child("transport"),
    			"transport must be set for HTTPConnect"))
    		return allErrs
    	}
    
    	if transport.TCP != nil && transport.UDS != nil {
    		allErrs = append(allErrs, field.Invalid(
    			fldPath.Child("tcp"),
    			transport.TCP,
    			"TCP and UDS cannot both be set"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. pkg/api/persistentvolume/util.go

    	}
    	if pvSpec.PhotonPersistentDisk != nil {
    		warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.11, non-functional in v1.16+", fieldPath.Child("spec", "photonPersistentDisk")))
    	}
    	if pvSpec.ScaleIO != nil {
    		warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.16, non-functional in v1.22+", fieldPath.Child("spec", "scaleIO")))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 09:50:37 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/garbagecollector_test.go

    			name: "cluster-scoped bad child, namespaced good child, missing parent",
    			steps: []step{
    				// setup
    				createObjectInClient("", "v1", "pods", "ns1", makeMetadataObj(pod2ns1, pod1ns1)),     // good child
    				createObjectInClient("", "v1", "nodes", "", makeMetadataObj(node1, pod1nonamespace)), // bad child
    
    				// 2,3: observe bad child
    				processEvent(makeAddEvent(node1, pod1nonamespace)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectorySnapshotTest.groovy

            def index = SnapshotUtil.indexByAbsolutePath(relocated)
    
            then:
            index.keySet() == [
                targetDir.absolutePath,
                targetDir.file("child").absolutePath,
                targetDir.file("child/child.txt").absolutePath,
                targetDir.file("parent.txt").absolutePath,
            ] as Set
    
            index.values()*.name as Set == [
                targetDir.name,
                childDir.name,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/progress/DefaultProgressLoggerFactoryTest.groovy

                    parent.started()
                    def child = factory.newOperation("category").setDescription("child")
                    child.started()
                    instant.op1Running
                    thread.blockUntil.op2Running
                    child.completed()
                    parent.completed()
                }
                start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls2-parent.xml

      child.project.url.inherit.append.path="false">
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>inheritance</groupId>
      <artifactId>parent</artifactId>
      <version>11-SNAPSHOT</version>
    
      <name>Model urls inheritance test parent, with special merge test for mergeSite_ChildSiteUrlInheritAppendPath</name>
    
      <scm child.scm.connection.inherit.append.path="false"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls3-parent.xml

      child.project.url.inherit.append.path="false">
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>inheritance</groupId>
      <artifactId>parent</artifactId>
      <version>11-SNAPSHOT</version>
    
      <name>Model urls inheritance test parent, with special merge test for mergeSite_ChildSiteUrlInheritAppendPath</name>
    
      <scm child.scm.connection.inherit.append.path="false"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

            String childPath = child.getProperties().getOrDefault(CHILD_DIRECTORY_PROPERTY, child.getArtifactId());
            hints.put(CHILD_DIRECTORY, childPath);
            hints.put(MavenModelMerger.CHILD_PATH_ADJUSTMENT, getChildPathAdjustment(child, parent, childPath));
            return merger.merge(child, parent, false, hints);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top