Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 516 for implying (0.39 sec)

  1. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPluginTest.groovy

            project.unitTest instanceof CppTestSuite
            project.unitTest.baseName.get() == "someAppTest"
            project.unitTest.cppSource.files == [src] as Set
        }
    
        def "sets tested component to main component when applying C++ library plugin"() {
            when:
            project.pluginManager.apply(CppUnitTestPlugin)
    
            then:
            project.unitTest.testedComponent.orNull == null
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyConfigurationContainer.java

     *
     * Being a {@link org.gradle.api.NamedDomainObjectContainer}, a {@code IvyConfigurationContainer} provides
     * convenient methods for adding, querying, filtering, and applying actions to the set of {@link IvyConfiguration}s.
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'ivy-publish'
     * }
     *
     * def publication = publishing.publications.create("my-pub", IvyPublication)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Try.java

         */
        public abstract Optional<Throwable> getFailure();
    
        /**
         * If the represented operation was successful, returns the result of applying the given
         * {@code Try}-bearing mapping function to the value, otherwise returns
         * the {@code Try} representing the original failure.
         *
         * Exceptions thrown by the given function are propagated.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/RangeGwtSerializationDependencies.java

     *
     * <p>For details about this hack, see {@code GwtSerializationDependencies}, which takes the same
     * approach but with a subclass rather than a superclass.
     *
     * <p>TODO(cpovirk): Consider applying this subclass approach to our other types.
     */
    @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
    @GwtCompatible(emulated = true)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. pkg/util/oom/oom.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package oom
    
    // This is a struct instead of an interface to allow injection of process ID listers and
    // applying OOM score in tests.
    // TODO: make this an interface, and inject a mock ioutil struct for testing.
    type OOMAdjuster struct {
    	pidLister                 func(cgroupName string) ([]int, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 30 00:47:36 UTC 2016
    - 1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/upgrade_graph.h

    // may have undesired semantics.
    Status GenerateResourceSharedNameIfEmpty(
        GraphDef& gdef, const OpRegistryInterface* default_registry);
    
    // Upgrade the `graph` and `flib_def` by applying control flow
    // functionalization.
    Status UpgradeLegacyGraph(Graph* graph, FunctionLibraryDefinition* flib_def,
                              bool restrict_functionalization_to_compiled_nodes);
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 09:24:48 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/api/plugins/BasePluginIntegrationTest.groovy

            failure.assertThatCause(containsString(file("build/newFile").absolutePath))
    
            cleanup:
            lock?.release()
            channel?.close()
        }
    
        def "cannot define 'build' and 'check' tasks when applying plugin"() {
            buildFile << """
                apply plugin: 'base'
    
                task $taskName {
                    doLast {
                        println "CUSTOM"
                    }
                }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/HashMultimapGwtSerializationDependencies.java

     *
     * <p>For details about this hack, see {@code GwtSerializationDependencies}, which takes the same
     * approach but with a subclass rather than a superclass.
     *
     * <p>TODO(cpovirk): Consider applying this subclass approach to our other types.
     */
    @GwtCompatible(emulated = true)
    abstract class HashMultimapGwtSerializationDependencies<K, V> extends AbstractSetMultimap<K, V> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 24 18:57:48 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  9. src/sort/search.go

    }
    
    // Search returns the result of applying [SearchInts] to the receiver and x.
    func (p IntSlice) Search(x int) int { return SearchInts(p, x) }
    
    // Search returns the result of applying [SearchFloat64s] to the receiver and x.
    func (p Float64Slice) Search(x float64) int { return SearchFloat64s(p, x) }
    
    // Search returns the result of applying [SearchStrings] to the receiver and x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. samples/sleep/README.md

        ```bash
        kubectl apply -f sleep.yaml
        ```
    
        Otherwise manually inject the sidecars before applying:
    
        ```bash
        kubectl apply -f <(istioctl kube-inject -f sleep.yaml)
        ```
    
    1. Start some other services, for example, the [Bookinfo sample](https://istio.io/docs/examples/bookinfo/).
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 03 03:51:51 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top