Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,657 for description$ (0.16 sec)

  1. security/tools/deb/description

    Tao Li <******@****.***> 1516856822 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 05:07:02 UTC 2018
    - 73 bytes
    - Viewed (0)
  2. src/runtime/metrics/description.go

    	Cumulative bool
    }
    
    // The English language descriptions below must be kept in sync with the
    // descriptions of each metric in doc.go by running 'go generate'.
    var allDesc = []Description{
    	{
    		Name:        "/cgo/go-to-c-calls:calls",
    		Description: "Count of calls made from Go to C by the current process.",
    		Kind:        KindUint64,
    		Cumulative:  true,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/model/Description.java

    public class Description {
        public final static Description JAVA = new Description(
            Language.JAVA,
            JUNIT_JUPITER,
            asList(JUNIT, JUNIT_JUPITER, TESTNG, SPOCK),
            null, null
        );
    
        public final static Description GROOVY = new Description(
            Language.GROOVY,
            SPOCK,
            singletonList(SPOCK),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 07:33:54 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. hack/verify-description.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks API-related files for missing descriptions and outputs a
    # list of structs and fields that are missing descriptions.
    # Usage: `hack/verify-description.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4IgnoreClassIntegrationTest.groovy

                        public Description getDescription() {
                            return testSuiteDescription;
                        }
    
                        @Override
                        public void run(RunNotifier notifier) {
                            for (Description description : testSuiteDescription.getChildren()) {
                                notifier.fireTestStarted(description);
                                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionReasons.java

                addCause(new DefaultComponentSelectionDescriptor(cause, description));
                return this;
            }
    
    
            @Override
            public ComponentSelectionReasonInternal setCause(ComponentSelectionDescriptor description) {
                descriptions.clear();
                addCause(description);
                return this;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/PluginDeclaration.java

        }
    
        /**
         * Returns the description for this plugin declaration.
         *
         * <p>The description is used when publishing this plugin to repositories
         * that support providing descriptions for artifacts.
         *
         * @since 4.10
         */
        public String getDescription() {
            return description;
        }
    
        /**
         * Sets the description for this plugin declaration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

         | Vendor:             {description}AdoptOpenJDK{normal}
         | Architecture:       {description}archName{normal}
         | Is JDK:             {description}false{normal}
         | Detected by:        {description}TestSource{normal}
    
    {identifier} + AdoptOpenJDK JRE 15-ea+2{normal}
         | Location:           {description}path{normal}
         | Language Version:   {description}15{normal}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/progress/ProgressLogger.java

        /**
         * Returns the description of the operation.
         *
         * @return the description, must not be empty.
         */
        String getDescription();
    
        /**
         * <p>Sets the description of the operation. This should be a full, stand-alone description of the operation.
         *
         * <p>This must be called before {@link #started()}.
         *
         * @param description The description.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailure.java

                if (matcher.matches(problem.description)) {
                    problemsNotChecked.remove(problem);
                    action.accept(problem);
                    return;
                }
                seen.add(problem.description);
            }
            failureOnUnexpectedOutput(String.format("No matching failure description found\nExpected: A failure description which is %s\n     but: failure descriptions were %s", matcher, seen));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top