Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,650 for descriptive (0.3 sec)

  1. platforms/software/reporting/src/main/java/org/gradle/api/reporting/Report.java

         * reports.html
         * </pre>
         *
         * @return The name of this report.
         */
        @Input
        String getName();
    
        /**
         * A more descriptive name of this report. Used when the report is referenced for end users.
         *
         * @return A more descriptive name of this report.
         */
        @Input
        String getDisplayName();
    
        /**
         * A flag that determines whether this report should be generated or not.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/software/security/src/test/groovy/org/gradle/plugins/signing/signatory/pgp/PgpSignatoryFactoryTest.groovy

        def factory = new PgpSignatoryFactory()
    
        @Issue("https://github.com/gradle/gradle/issues/2267")
        def "property '#nullPropertyName' with null value throws a descriptive exception if required"() {
            given:
            project.ext.'signing.keyId' = keyId
            project.ext.'signing.password' = password
            project.ext.'signing.secretKeyRingFile' = secretKeyRingFile
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionResult.java

         * Stdout of the Gradle execution, normalized to use new-line char as line separator.
         *
         * <p>You should avoid using this method as it couples the tests to a particular layout for the console. Instead use the more descriptive assertion methods on this class.</p>
         */
        String getOutput();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/scripts/CompileScriptBuildOperationType.java

            /**
             * The build script backing language.
             * The language should be upper case. E.g GROOVY
             * */
            String getLanguage();
    
            /**
             * The compile stage as a descriptive String.
             * Build scripts can be processed in multiple stages, depending on the language.
             * Groovy backed build scripts are processed in two stages.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. test/fixedbugs/issue8385.go

    // errorcheck
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 8385: provide a more descriptive error when a method expression
    // is called without a receiver.
    
    package main
    
    type Fooer interface {
    	Foo(i, j int)
    }
    
    func f(x int) {
    }
    
    type I interface {
    	M(int)
    }
    type T struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/MavenVersionSelectorScheme.java

        @Override
        public VersionSelector complementForRejection(VersionSelector selector) {
            return defaultVersionSelectorScheme.complementForRejection(selector);
        }
    
        // TODO: VersionSelector should be more descriptive, so it can be directly translated
        private String toMavenSyntax(String version) {
            if (version.equals(LATEST_INTEGRATION)) {
                return LATEST;
            }
            if (version.equals(LATEST_RELEASE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelActionRole.java

     */
    
    package org.gradle.model.internal.core;
    
    /**
     * A hard-coded sequence of model actions that can be applied to a model element.
     *
     * <p>This is pretty much a placeholder for something more descriptive.
     */
    public enum ModelActionRole {
        Discover(ModelNode.State.Discovered, false), // Defines all projections for the node
        Create(ModelNode.State.Created, false), // Initializes the node
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/errors/example_test.go

    	if err != nil {
    		fmt.Print(err)
    	}
    	// Output: emit macho dwarf: elf header corrupted
    }
    
    // The fmt package's Errorf function lets us use the package's formatting
    // features to create descriptive error messages.
    func ExampleNew_errorf() {
    	const name, id = "bimmler", 17
    	err := fmt.Errorf("user %q (id %d) not found", name, id)
    	if err != nil {
    		fmt.Print(err)
    	}
    	// Output: user "bimmler" (id 17) not found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 02:08:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUError.h

     *  Functions that can generate errors set (and usually return) an
     *  error code to indicate the run status.  The error code can be
     *  inspected using the CU_get_error() function.  A descriptive
     *  error message can be retrieved using CU_get_error_msg().
     */
    /** @addtogroup Framework
     * @{
     */
    
    #ifndef CUNIT_CUERROR_H_SEEN
    #define CUNIT_CUERROR_H_SEEN
    
    #include <errno.h>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/net/port_range.go

    	}
    
    	if high < low {
    		return fmt.Errorf("end port cannot be less than start port: %s", value)
    	}
    
    	pr.Base = low
    	pr.Size = 1 + high - low
    	return nil
    }
    
    // Type returns a descriptive string about this type.  This is part of the
    // pflag.Value interface.
    func (*PortRange) Type() string {
    	return "portRange"
    }
    
    // ParsePortRange parses a string of the form "min-max", inclusive at both
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 10 01:27:56 UTC 2020
    - 3.4K bytes
    - Viewed (0)
Back to top