Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 885 for JSpecify (0.14 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemReporter.java

    /**
     * Defines different ways to report problems.
     *
     * @since 8.6
     */
    @Incubating
    public interface ProblemReporter {
    
        /**
         * Configures and reports a new problem.
         * <p>
         * The spec must specify the problem label and the category. Any additional configuration is optional.
         *
         * @param spec the problem configuration
         * @since 8.6
         */
        void reporting(Action<ProblemSpec> spec);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 10:28:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/BuildLayoutConverterTest.groovy

        SetSystemProperties systemProperties = new SetSystemProperties()
    
        def "can specify project directory using command-line argument"() {
            when:
            def dir = new File("some-dir").absoluteFile
            def parameters = convert(["--project-dir", "some-dir"])
    
            then:
            parameters.projectDir == dir
        }
    
        def "can specify Gradle user home directory using command-line argument"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerConfigurationIntegrationTest.groovy

            then:
            def t = thrown InvalidRunnerConfigurationException
            t.message == 'Please specify a project directory before executing the build'
    
            when:
            runner.buildAndFail()
    
            then:
            t = thrown InvalidRunnerConfigurationException
            t.message == 'Please specify a project directory before executing the build'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    	// PodNameKey is the key used in a user's "extra" to specify the pod name of
    	// the authenticating request.
    	PodNameKey = "authentication.kubernetes.io/pod-name"
    	// PodUIDKey is the key used in a user's "extra" to specify the pod UID of
    	// the authenticating request.
    	PodUIDKey = "authentication.kubernetes.io/pod-uid"
    	// NodeNameKey is the key used in a user's "extra" to specify the node name of
    	// the authenticating request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionSpec.groovy

        }
    
        def "can specify target module"() {
            when:
            details.useTarget("org:bar:2.0")
    
            then:
            details.target instanceof ModuleComponentSelector
            details.target.toString() == 'org:bar:2.0'
            details.updated
            details.ruleDescriptors == [SELECTED_BY_RULE]
        }
    
        def "can specify custom selection reason"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top