Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,777 for whereIs (0.11 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/expiry/AllDaemonExpirationStrategyTest.groovy

            DaemonExpirationResult result = agg.checkExpiration()
            result.status == DO_NOT_EXPIRE
            result.reason == null
        }
    
        def "doesn't expire if no strategies are passed"() {
            // Although there's an argument to be made for throwing an exception when it's used this way.
    
            when:
            AllDaemonExpirationStrategy agg = new AllDaemonExpirationStrategy(Collections.emptyList())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Optional.java

       * {@link #or(Object)} or {@link #orNull} instead.
       *
       * <p><b>Comparison to {@code java.util.Optional}:</b> when the value is absent, this method
       * throws {@link IllegalStateException}, whereas the {@code java.util} counterpart throws {@link
       * java.util.NoSuchElementException NoSuchElementException}.
       *
       * @throws IllegalStateException if the instance is absent ({@link #isPresent} returns {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. gradle/dependency-management/capabilities.json

            ],
            "selected": "org.codehaus.groovy:groovy"
        },
    
        // forced upgrade: the following modules will automatically be replaced with the selected module
        // even if there's no conflict, and forces an upgrade to the specified version
        {
            "name": "asm",
            "providedBy": [
                "asm:asm", "asm:asm-all", "asm:asm-debug-all"
            ],
            "selected": "org.ow2.asm:asm",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensionContainerTest.groovy

            when:
            container.add("foo", extension)
            container.extensionsAsDynamicObject.foo = new FooExtension()
    
            then:
            IllegalArgumentException e = thrown()
            e.message == "There's an extension registered with name 'foo'. You should not reassign it via a property setter."
        }
    
        def "can register extensions using dynamic property setter"() {
            when:
            container.foo = extension
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. docs/en/docs/python-types.md

    In Python 3.6 and above (including Python 3.10) you can use the `Union` type from `typing` and put inside the square brackets the possible types to accept.
    
    In Python 3.10 there's also a **new syntax** where you can put the possible types separated by a <abbr title='also called "bitwise or operator", but that meaning is not relevant here'>vertical bar (`|`)</abbr>.
    
    === "Python 3.10+"
    
        ```Python hl_lines="1"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. docs/en/docs/external-links.md

    # External Links and Articles
    
    **FastAPI** has a great community constantly growing.
    
    There are many posts, articles, tools, and projects, related to **FastAPI**.
    
    Here's an incomplete list of some of them.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Oct 22 07:35:13 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

    // original source graph (*not* 'graph').
    //
    // 'graph' is the subgraph. The rewriting may renumber the inputs and outputs;
    // 'input_permutation' is a mapping from old argument numbers to new argument
    // numbers, whereas 'output_permutation' is the same for outputs. Both
    // 'input_permutation' and 'output_permutation' are initialized to the identity
    // permutation. 'nodedef' is the NodeDef for the call to the function under
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/gradients/array_grad_test.cc

      bool UseFunction() const { return std::get<2>(GetParam()); }
    };
    
    TEST_P(CppGradients, TestIdentityNGrad) {
      // This test is interesting because the current implementation of GradientTape
      // would return [0, 1] whereas we use build_default_zeros_grads=false here
      // so we get back [nullptr, 1].
    
      AbstractTensorHandlePtr x1;
      {
        AbstractTensorHandle* x1_raw = nullptr;
        status_ = TestScalarTensorHandle<float, TF_FLOAT>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishChangingUrlIntegTest.groovy

                }
    
                group = '${org}'
                version = '${rev}'
    
                // This build service manages the mapping between repository id -> repository URL
                // In this simplified case, there's just one URL. The Nexus plugin does something similar
                abstract class StagingRepositoryDescriptorRegistryBuildService implements BuildService<org.gradle.api.services.BuildServiceParameters.None> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. pkg/apis/scheduling/v1/helpers.go

    // NOTE: be careful not to modify any of elements of the returned array directly.
    func SystemPriorityClasses() []*v1.PriorityClass {
    	return systemPriorityClasses
    }
    
    // IsKnownSystemPriorityClass returns true if there's any of the system priority classes exactly
    // matches "name", "value", "globalDefault". otherwise it will return an error.
    func IsKnownSystemPriorityClass(name string, value int32, globalDefault bool) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 16:51:57 UTC 2019
    - 2.5K bytes
    - Viewed (0)
Back to top