Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for ARE (0.04 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtensionAware.java

     * assert project.hasProperty("myProperty") == false
     * project.ext.myProperty = "myValue"
     *
     * // Properties added to the “ext” extension are promoted to the owning object
     * assert project.myProperty == "myValue"
     * </pre>
     *
     * Many Gradle objects are extension aware. This includes; projects, tasks, configurations, dependencies etc.
     * <p>
     * For more on adding &amp; creating extensions, see {@link ExtensionContainer}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 07:18:37 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. docs/features/caching.md

          if (urlIterator.next().startsWith("https://www.google.com/")) {
            urlIterator.remove()
          }
        }
    ```
    
    ### Troubleshooting
    
    1. Valid cacheable responses are not being cached
    
    Make sure you are reading responses fully as unless they are read fully, cancelled or stalled Responses will not be cached.
    
    ### Overriding normal cache behaviour
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	"message":       ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

            );
        }
    
        /**
         * Filters out snapshots that are not considered outputs when overlapping outputs are present.
         *
         * Note: when there are no overlapping outputs, all outputs currently existing in the output locations
         * are considered outputs of the work.
         *
         * Entries that are considered outputs are:
         *
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    The following graph describes how configurations are setup when the Java Library plugin is in use.
    
    image::java-library-ignore-deprecated-main.png[]
    
    * The configurations in _green_ are the ones a user should use to declare dependencies
    * The configurations in _pink_ are the ones used when a component compiles, or runs against the library
    * The configurations in _blue_ are internal to the component, for its own use
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/BinaryCollection.java

    import org.gradle.api.component.SoftwareComponent;
    import org.gradle.api.provider.Provider;
    import org.gradle.api.specs.Spec;
    
    import java.util.Set;
    
    /**
     * A collection of binaries that are created and configured as they are required.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. testing/architecture-test/src/test/java/org/gradle/architecture/test/GuavaCollectionFactoryUsageTest.java

    /**
     * Tests that various Guava collection factory methods are not used.
     *
     * The Javadoc for these methods notes that they should be treated as deprecated.  This applies
     * only to the no-argument versions of these methods; there are legitimate uses of the other
     * overloaded versions.
     *
     * Note that some methods matching this pattern, such as {@code Sets.newConcurrentHashSet()}, are not deprecated.
     */
    @AnalyzeClasses(packages = "org.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/policy/v1/types_swagger_doc_generated.go

    to compute\n              the number of allowed disruptions. Therefore no disruptions are\n              allowed and the status of the condition will be False.\n- InsufficientPods: The number of pods are either at or below the number\n                    required by the PodDisruptionBudget. No disruptions are\n                    allowed and the status of the condition will be False.\n- SufficientPods: There are more pods than required by the PodDisruptionBudget.\n                  The condition will...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 20 23:36:45 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/policy/v1beta1/types_swagger_doc_generated.go

    to compute\n              the number of allowed disruptions. Therefore no disruptions are\n              allowed and the status of the condition will be False.\n- InsufficientPods: The number of pods are either at or below the number\n                    required by the PodDisruptionBudget. No disruptions are\n                    allowed and the status of the condition will be False.\n- SufficientPods: There are more pods than required by the PodDisruptionBudget.\n                  The condition will...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

    // Side-effecting ops on unknown resources are conservatively treated as
    // interfering with all known resource op accesses. It distinguishes accesses
    // based on whether they are read-only, and read-only ops do not interfere with
    // each other.
    //
    // If there are nested regions, each region is handled separately, and control
    // dependencies are only tracked for ops under the same parent op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top