Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,069 for simply (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/build_dashboard_plugin.adoc

    [[sec:build_dashboard_usage]]
    == Usage
    
    To use the Build Dashboard plugin, include the following in your build script:
    
    .Using the Build Dashboard plugin
    ====
    include::sample[dir="snippets/base/buildDashboard/kotlin",files="build.gradle.kts[tags=use-build-dashboard-plugin]"]
    include::sample[dir="snippets/base/buildDashboard/groovy",files="build.gradle[tags=use-build-dashboard-plugin]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. src/runtime/metrics/example_test.go

    	const myMetric = "/memory/classes/heap/free:bytes"
    
    	// Create a sample for the metric.
    	sample := make([]metrics.Sample, 1)
    	sample[0].Name = myMetric
    
    	// Sample the metric.
    	metrics.Read(sample)
    
    	// Check if the metric is actually supported.
    	// If it's not, the resulting value will always have
    	// kind KindBad.
    	if sample[0].Value.Kind() == metrics.KindBad {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 08 16:09:01 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/LockEntryFilterFactoryTest.groovy

            ['org:foo']             | ['org:foo:2.1']                   | ['com:bar:1.1']
            ['org:foo,']            | ['org:foo:2.1']                   | ['com:bar:1.1'] // Simply shows a trailing comma is ignored
            ['co*:ba*']             | ['com:bar:2.1']                   | ['org:foo:1.1']
            ['*:ba*']               | ['org:bar:2.1']                   | ['com:foo:1.1']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/ModelIdentifier.java

         * The name of the null model.
         */
        final String NULL_MODEL = Void.class.getName();
    
        /**
         * The name of the model.
         *
         * Note that the model name is not necessarily a class name. It simply uniquely identifies the model.
         * Use {@link #NULL_MODEL} to indicate that no model is desired.
         */
        String getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/annotations/GwtIncompatible.java

    @GwtCompatible
    public @interface GwtIncompatible {
      /**
       * Describes why the annotated element is incompatible with GWT. Since this is generally due to a
       * dependence on a type/method which GWT doesn't support, it is sufficient to simply reference the
       * unsupported type/method. E.g. "Class.isInstance".
       *
       * <p>As of Guava 20.0, this value is optional. We encourage authors who wish to describe why an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/annotations/GwtIncompatible.java

    @GwtCompatible
    public @interface GwtIncompatible {
      /**
       * Describes why the annotated element is incompatible with GWT. Since this is generally due to a
       * dependence on a type/method which GWT doesn't support, it is sufficient to simply reference the
       * unsupported type/method. E.g. "Class.isInstance".
       *
       * <p>As of Guava 20.0, this value is optional. We encourage authors who wish to describe why an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 16:29:08 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/GccCompatibleToolChain.java

    package org.gradle.nativeplatform.toolchain;
    
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    
    import java.io.File;
    import java.util.List;
    
    /**
     * A ToolChain that can handle additional platforms simply by configuring the NativeBinary.
     */
    @Incubating
    public interface GccCompatibleToolChain extends NativeToolChain {
        /**
         * The paths setting required for executing the tool chain.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/ServiceRegistryProcessorFixture.groovy

     * and generates a single ServiceRegistryResource.txt file from them.
     * Also creates a class called ServiceRegistry which does not reference any of the
     * other classes, but could simply serve as an entry point for reading the resource file.
     */
    @CompileStatic
    class ServiceRegistryProcessorFixture extends AnnotationProcessorFixture {
        String resourceLocation = StandardLocation.CLASS_OUTPUT.toString()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. testing/precondition-tester/src/test/groovy/org/gradle/test/precondition/PreconditionProbingTest.groovy

     * <ul>
     *     <li><b>Successful:</b> the precondition combination could be satisfied.</li>
     *     <li>
     *         <b>Skipped:</b> the precondition combination could <i>not</i> be satisfied.
     *         This is normal, and simply signifies that the precondition is not satisfied on the current system
     *     </li>
     *     <li>
     *         <b>Failed:</b> there was an error while checking the combination.
     *         This shouldn't be normal, and needs fixing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/parse_text_proto.cc

    #include "tensorflow/core/lib/core/status.h"
    #include "tensorflow/core/platform/casts.h"
    #include "tensorflow/core/platform/protobuf.h"
    
    namespace tensorflow {
    
    namespace {
    // Error collector that simply ignores errors reported.
    class NoOpErrorCollector : public protobuf::io::ErrorCollector {
     public:
      void AddError(int line, int column, const std::string& message) override {}
    };
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top