Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,232 for child7 (0.13 sec)

  1. maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-expected.xml

      <url>http://www.apache.org/child/</url>
      <scm>
        <connection>scm:my-scm:http://domain.org/base/child</connection>
        <developerConnection>scm:my-scm:https://domain.org/base/child/</developerConnection>
        <url>https://domain.org/base/child</url>
      </scm>
      <distributionManagement>
        <site>
          <url>scp://scp.domain.org/base/child/</url>
        </site>
      </distributionManagement>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls-expected.xml

      <name>Model urls inheritance test child</name>
      <description>MNG-5951 MNG-6059 child.x.y.inherit.append.path="false" for each url to avoid automatic path addition when inheriting</description>
    
      <!-- 5 inherited urls without anything added to parent -->
      <url>http://www.apache.org/path/to/parent/</url>
      <scm child.scm.connection.inherit.append.path="false"
           child.scm.developerConnection.inherit.append.path="false"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    		allErrs = append(allErrs, field.Required(fldPath.Child("key"), ""))
    	}
    	if len(kp.Path) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("path"), ""))
    	}
    	allErrs = append(allErrs, ValidateLocalNonReservedPath(kp.Path, fldPath.Child("path"))...)
    	if kp.Mode != nil && (*kp.Mode > 0777 || *kp.Mode < 0) {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("mode"), *kp.Mode, fileModeErrorMsg))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. pkg/apis/resource/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath.Child("resourceClassName"), spec.ResourceClassName, msg))
    	}
    	allErrs = append(allErrs, validateResourceClaimParametersRef(spec.ParametersRef, fldPath.Child("parametersRef"))...)
    	if !supportedAllocationModes.Has(string(spec.AllocationMode)) {
    		allErrs = append(allErrs, field.NotSupported(fldPath.Child("allocationMode"), spec.AllocationMode, supportedAllocationModes.List()))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/plugin-exec-merging-wo-version/sub/pom.xml

            <!-- NOTE: <version> element deliberately omitted here -->
            <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.7K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/validation/validation.go

    		allErrors = append(allErrors, field.Required(fldPath.Child("clientConfig"), "exactly one of url or service is required"))
    	case cc.URL != nil:
    		allErrors = append(allErrors, webhook.ValidateWebhookURL(fldPath.Child("clientConfig").Child("url"), *cc.URL, true)...)
    	case cc.Service != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/subproject/pom.xml

                <stringParam>CHILD-1</stringParam>
                <stringParam>CHILD-3</stringParam>
                <stringParam>CHILD-2</stringParam>
                <stringParam>CHILD-4</stringParam>
              </stringParams>
              <listParam combine.children="append">
                <!-- NOTE: These values are deliberately not in alpha order! -->
                <listParam>CHILD-1</listParam>
                <listParam>CHILD-3</listParam>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    		if seenIssuers.Has(a.Issuer.URL) {
    			allErrs = append(allErrs, field.Duplicate(fldPath.Child("issuer").Child("url"), a.Issuer.URL))
    		}
    		seenIssuers.Insert(a.Issuer.URL)
    
    		if len(a.Issuer.DiscoveryURL) > 0 {
    			if seenDiscoveryURLs.Has(a.Issuer.DiscoveryURL) {
    				allErrs = append(allErrs, field.Duplicate(fldPath.Child("issuer").Child("discoveryURL"), a.Issuer.DiscoveryURL))
    			}
    			seenDiscoveryURLs.Insert(a.Issuer.DiscoveryURL)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    		if kind.Type != "string" {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("properties").Key("kind").Child("type"), kind.Type, "must be string"))
    		}
    	}
    	if apiVersion, found := s.Properties["apiVersion"]; found && checkMetadata {
    		if apiVersion.Type != "string" {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("properties").Key("apiVersion").Child("type"), apiVersion.Type, "must be string"))
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls2-expected.xml

      <artifactId>inheritance</artifactId>
      <version>11-SNAPSHOT</version>
      <name>Model urls inheritance test child</name>
    
      <scm child.scm.connection.inherit.append.path="false"
           child.scm.developerConnection.inherit.append.path="false"
           child.scm.url.inherit.append.path="false">
        <connection>scm:my-scm:http://domain.org/base</connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.9K bytes
    - Viewed (0)
Back to top