Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 127 for ecosystem (0.13 sec)

  1. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/IvyComponentParser.java

         * The variant name usually corresponds to the name of the Gradle configuration on which the variant is based on.
         * For backward compatibility, the 'apiElements' and 'runtimeElements' configurations/variants of the Java ecosystem are named 'compile' and 'runtime' in the publication.
         */
        private static String mapVariantNameToIvyConfiguration(String variantName) {
            if (isJavaApiVariant(variantName)) {
                return "compile";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (1)
  2. docs/en/docs/advanced/generate-clients.md

    Some of them also ✨ [**sponsor FastAPI**](../help-fastapi.md#sponsor-the-author){.internal-link target=_blank} ✨, this ensures the continued and healthy **development** of FastAPI and its **ecosystem**.
    
    And it shows their true commitment to FastAPI and its **community** (you), as they not only want to provide you a **good service** but also want to make sure you have a **good and healthy framework**, FastAPI. 🙇
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    == Step 1. About Multi-Project Builds
    
    Typically, builds contain multiple projects, such as shared libraries or separate applications that will be deployed in your ecosystem.
    
    In Gradle, a multi-project build consists of:
    
    - `settings.gradle(.kts)` file representing your Gradle build including required subprojects e.g. include("app", "model", "service")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    [[swift_testing]]
    = Testing in Swift projects
    
    WARNING: The Swift testing support is not compatible with the <<configuration_cache.adoc#config_cache:plugins:core,configuration cache>>.
    
    Testing in the native ecosystem is a rich subject matter.
    There are many different testing libraries and frameworks, as well as many different types of test.
    All need to be part of the build, whether they are executed frequently or infrequently.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. src/crypto/internal/edwards25519/edwards25519.go

    // the receiver is unchanged. Otherwise, SetBytes returns v.
    //
    // Note that SetBytes accepts all non-canonical encodings of valid points.
    // That is, it follows decoding rules that match most implementations in
    // the ecosystem rather than RFC 8032.
    func (v *Point) SetBytes(x []byte) (*Point, error) {
    	// Specifically, the non-canonical encodings that are accepted are
    	//   1) the ones where the field element is not reduced (see the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    */
    
    package factory
    
    import (
    	"context"
    	"fmt"
    	"log"
    	"math/rand"
    	"net"
    	"net/url"
    	"os"
    	"path"
    	"strings"
    	"sync"
    	"time"
    
    	grpcprom "github.com/grpc-ecosystem/go-grpc-prometheus"
    	"go.etcd.io/etcd/client/pkg/v3/logutil"
    	"go.etcd.io/etcd/client/pkg/v3/transport"
    	clientv3 "go.etcd.io/etcd/client/v3"
    	"go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

                    runtimeOnly 'org.codehaus.janino:janino'
                }
            """
    
            buildFile << """
                apply plugin: 'jvm-ecosystem'
                apply plugin: 'org.gradle.jacoco-report-aggregation'
    
                dependencies {
                    jacocoAggregation project(":application")
                    jacocoAggregation project(":direct")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    One trivial example in the JVM ecosystem is the Scala version that is often found in artifact coordinates.
    
    .Changing the lock file name
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    - one on the "main" feature, the library
    - one on the "test fixtures" feature, by _requiring its capability_
    
    NOTE: While the resolution engine supports multi-variant components independently of the ecosystem, _features_ are currently only available using the Java plugins.
    
    [[sec::declare_feature_variants]]
    == Registering features
    
    Features can be declared by applying the `java-library` plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

            """
        }
    
        void addJavaEcosystem() {
            buildFile << """
                allprojects {
                    apply plugin: 'org.gradle.jvm-ecosystem'
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
Back to top