Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for mainIvy (0.22 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/PublicationsCrossVersionSpec.groovy

    apply plugin: "java"
    
    version = 1.0
    group = "test.group"
    
    publishing {
        repositories {
            ivy { url uri("ivy-repo") }
            maven { url uri("maven-repo") }
        }
        publications {
            mainIvy(IvyPublication) {
                from components.java
                organisation 'test.org'
                module 'test-module'
                revision '1.1'
            }
            mainMaven(MavenPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultManifestTest.groovy

            then:
            manifestFile.text.contains('mainKey: hello')
            manifestFile.text.contains('section')
            manifestFile.text.contains('sectionKey: world')
    
        }
    
        def 'skips unset Provider'() {
            given:
            TestFile manifestFile = tmpDir.file('manifest')
            fileResolver.resolve('manifest') >> manifestFile
            Map mainAttributes = [mainKey: new DefaultProperty<>(Mock(PropertyHost), String)]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. docs/en/docs/reference/dependencies.md

    # Dependencies - `Depends()` and `Security()`
    
    ## `Depends()`
    
    Dependencies are handled mainly with the special function `Depends()` that takes a callable.
    
    Here is the reference for it and its parameters.
    
    You can import it directly from `fastapi`:
    
    ```python
    from fastapi import Depends
    ```
    
    ::: fastapi.Depends
    
    ## `Security()`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 671 bytes
    - Viewed (0)
  4. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/project/taskfactory/TestTaskIdentities.java

    import java.util.concurrent.atomic.AtomicLong;
    
    /**
     * A test fixture to create {@link TaskIdentityFactory}'es or {@link TaskIdentity}'es directly.
     * <p>
     * It exists mainly because {@code TaskIdentity} is a final class and cannot be mocked.
     */
    public class TestTaskIdentities {
    
        private static final TaskIdentityFactory DEFAULT_FACTORY = factory();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 11:56:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cover_sync_atomic_import.txt

    # In addition to the above, test to make sure there is no funny
    # business if we try "go test -cover" in atomic mode targeting
    # sync/atomic itself (see #57445). Just a short test run is needed
    # since we're mainly interested in making sure the test builds and can
    # execute at least one test.
    
    go test -short -covermode=atomic -run=TestStoreInt64 sync/atomic
    go test -short -covermode=atomic -run=TestAnd8 internal/runtime/atomic
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 00:18:30 UTC 2024
    - 1011 bytes
    - Viewed (0)
  6. regression-test/src/androidTest/java/okhttp/regression/compare/ApacheHttpClientHttp2Test.kt

    import org.junit.Assert
    import org.junit.Test
    
    /**
     * Simplified from
     * https://hc.apache.org/httpcomponents-client-5.0.x/httpclient5/examples/AsyncClientTlsAlpn.java
     *
     * Mainly intended to verify behaviour of popular clients across Android versions, similar
     * to observing Firefox or Chrome browser behaviour.
     */
    class ApacheHttpClientHttp2Test {
      @Test
      fun testHttp2() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/revived_types/tf_signature_def_function_revival_state.h

    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    
    namespace tensorflow {
    
    // FunctionBuilder wraps the state needed for building a SignatureDefFunction.
    // This is mainly used in PartiallyRevivedObjects, which wraps partially
    // constructed Function and Resource objects.
    struct TFSignatureDefFunctionRevivalState {
      // Index of the node in the SavedObjectGraph it was loaded from.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/stablehlo/quantization_test.cc

    using ::stablehlo::quantization::io::CreateTmpDir;
    using ::testing::HasSubstr;
    using ::tsl::testing::IsOk;
    using ::tsl::testing::StatusIs;
    
    // Test cases for `RunQuantization` mainly tests for error cases because testing
    // for successful cases require passing python implementation to
    // `quantization_py_function_lib`, which requires testing from the python level.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/revived_types/flat_tensor_function.h

    // EagerContext, and any TensorHandle captures associated with the function. The
    // MakeCallOp method handles the logic of marshaling captures after the user
    // provided inputs automatically.
    // Note(bmzhao): This class is mainly intended to house low-level reusable
    // function logic between SignatureDefFunction and ConcreteFunction, which
    // present higher level interfaces. This type does *not* hold any "function
    // metadata".
    class FlatTensorFunction {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 22 21:03:41 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/revived_types/tf_concrete_function_revival_state.h

    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    
    namespace tensorflow {
    
    // TFConcreteFunctionRevivalState wraps the state needed for building a
    // TF_ConcreteFunction. This is mainly used in PartiallyRevivedObjects, which
    // wraps partially constructed Function and Resource objects.
    struct TFConcreteFunctionRevivalState {
      // Index of the node in the SavedObjectGraph it was loaded from.
      int node_id;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 2.6K bytes
    - Viewed (0)
Back to top