Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 311 for Required (0.25 sec)

  1. api/maven-api-plugin/src/main/mdo/plugin.mdo

          <fields>
            <field>
              <name>groupId</name>
              <required>true</required>
              <version>1.0.0+</version>
              <type>String</type>
              <description>The group id of the dependency.</description>
            </field>
            <field>
              <name>artifactId</name>
              <required>true</required>
              <version>1.0.0+</version>
              <type>String</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.maven3BuilderSupport)  { version { strictly(mavenVersion); because("required to load/build poms and repository settings") }}
            api(libs.maven3Model)           { version { strictly(mavenVersion); because("required to load/build poms and repository settings") }}
            api(libs.maven3RepositoryMetadata) { version { strictly(mavenVersion); because("required to load/build poms and repository settings") }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation.go

    	var allErrs field.ErrorList
    	if ref.Resource == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("resource"), ""))
    	}
    	if ref.Name == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("name"), ""))
    	}
    	if ref.UID == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("uid"), ""))
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  4. pkg/test/framework/test.go

    	Label(labels ...label.Instance) Test
    	// RequireIstioVersion ensures that all installed versions of Istio are at least the
    	// required version for the annotated test to pass
    	RequireIstioVersion(version string) Test
    	// RequireKubernetesMinorVersion ensures that all Kubernetes clusters used in this test
    	// are at least the required version for the annotated test to pass
    	RequireKubernetesMinorVersion(minorVersion uint) Test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. pkg/apis/resource/validation/validation_resourceclass_test.go

    		},
    		"good-long-driver-name": {
    			class: testClass(goodName, "acme.example.com"),
    		},
    		"missing-name": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "name"), "name or generateName is required")},
    			class:        testClass("", goodName),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    		wantFailures field.ErrorList
    	}{
    		"good-claim": {
    			template: testClaimTemplate(goodName, goodNS, goodClaimSpec),
    		},
    		"missing-name": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "name"), "name or generateName is required")},
    			template:     testClaimTemplate("", goodNS, goodClaimSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. pkg/apis/resource/validation/validation_resourceclaim_test.go

    		wantFailures field.ErrorList
    	}{
    		"good-claim": {
    			claim: testClaim(goodName, goodNS, goodClaimSpec),
    		},
    		"missing-name": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "name"), "name or generateName is required")},
    			claim:        testClaim("", goodNS, goodClaimSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

            Bytes.indexOf(contents, toFind) >= 0
        }
    
        private TestFile findRequiredKeystoreFile(boolean required = true) {
            def keyStoreDirFiles = keyStoreDir.allDescendants()
            def keyStorePath = keyStoreDirFiles.find { it.endsWith('gradle.keystore') }
            assert !required || keyStorePath != null
            return keyStorePath?.with { keyStoreDir.file(keyStorePath) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

                parameter.setAlias(d.getChild("alias").getValue());
    
                parameter.setType(d.getChild("type").getValue());
    
                String required = d.getChild("required").getValue();
    
                parameter.setRequired(Boolean.parseBoolean(required));
    
                PlexusConfiguration editableConfig = d.getChild("editable");
    
                // we need the null check for pre-build legacy plugins...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top