Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,297 for JSpecify (0.13 sec)

  1. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExceptionTest.java

            assertEquals(
                    "One or more required plugin parameters are invalid/missing for 'goalPrefix:goal'" + LS
                            + LS + "[0] Inside the definition for plugin 'artifactId', specify the following:"
                            + LS
                            + LS + "<configuration>"
                            + LS + "  ..."
                            + LS + "  <toAddresses>"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/publish/DefaultPublishArtifactTest.groovy

        }
    
        def "can specify the builder tasks on construction"() {
            given:
            def task = Mock(Task)
    
            when:
            def publishArtifact = new DefaultPublishArtifact("name", "extension", "type", null, null, null, task)
    
            then:
            publishArtifact.buildDependencies.getDependencies(null) == [task] as Set
        }
    
        def "can specify the builder tasks"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 15:34:51 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/plugin/use/PluginDependencySpec.java

    /**
     * A mutable specification of a dependency on a plugin.
     * <p>
     * Can be used to specify the version of the plugin to use.
     * </p>
     * <p>
     * See {@link PluginDependenciesSpec} for more information about declaring plugin dependencies.
     * </p>
     */
    public interface PluginDependencySpec {
    
        /**
         * Specify the version of the plugin to depend on.
         *
         * <pre>
         * plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. pkg/apis/authentication/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(specPath.Child("expirationSeconds"), tr.Spec.ExpirationSeconds, "may not specify a duration less than 10 minutes"))
    	}
    	if tr.Spec.ExpirationSeconds > 1<<32 {
    		allErrs = append(allErrs, field.Invalid(specPath.Child("expirationSeconds"), tr.Spec.ExpirationSeconds, "may not specify a duration larger than 2^32 seconds"))
    	}
    	return allErrs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 31 00:32:49 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  5. docs/features/connections.md

    URLs are abstract:
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Feb 21 03:33:59 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  6. cluster/gce/gci/README.md

        'image' should be used to specify the image.
    
      * To run presubmit, postsubmit or periodic tests, the latest LTS images are
        preferred. If tests need two images, you can use the latest two LTS images.
        LTS images are stable and usually include latest bug and security fix.
        'image' should be used to specify the image.
    
      * To integrate continuously with other container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 14:55:40 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. internal/config/identity/openid/help.go

    		},
    		config.HelpKV{
    			Key:         KeyCloakRealm,
    			Description: `Specify Keycloak 'realm' name, only honored if vendor was set to 'keycloak' as value, if no realm is specified 'master' is default` + defaultHelpPostfix(KeyCloakRealm),
    			Optional:    true,
    			Type:        "string",
    		},
    		config.HelpKV{
    			Key:         KeyCloakAdminURL,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 23 14:45:27 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. tests/test_ambiguous_params.py

            match=(
                "Cannot specify `Depends` in `Annotated` and default value"
                " together for 'foo'"
            ),
        ):
    
            @app.get("/")
            async def get2(foo: Annotated[int, Depends(dep)] = Depends(dep)):
                pass  # pragma: nocover
    
        with pytest.raises(
            AssertionError,
            match=(
                "Cannot specify a FastAPI annotation in `Annotated` and `Depends` as a"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Dec 12 00:22:47 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ArtifactView.java

        /**
         * Configuration for a defined artifact view.
         *
         * @since 4.0
         */
        interface ViewConfiguration extends HasConfigurableAttributes<ViewConfiguration> {
            /**
             * Specify a filter for the components that should be included in this view.
             * Only artifacts from components matching the supplied filter will be returned by {@link #getFiles()} or {@link #getArtifacts()}.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 29 17:24:04 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomPackagingIntegTest.groovy

            mavenModule.parsedPom.packaging == 'txt'
            mavenModule.assertArtifactsPublished("publishTest-1.9.txt", "publishTest-1.9.pom")
        }
    
        @Issue("GRADLE-3211")
        def "can specify packaging when no artifact is unclassified"() {
            given:
            createBuildScripts """
                pom.packaging "foo"
    
                artifact("content.txt") {
                    classifier "custom"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top