Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,413 for bundled (0.19 sec)

  1. platforms/documentation/docs/src/snippets/groovy/groovyDependency/kotlin/build.gradle.kts

    }
    
    // tag::groovy-test-dependency[]
    dependencies {
        testImplementation("org.codehaus.groovy:groovy-all:2.4.15")
    }
    // end::groovy-test-dependency[]
    
    // tag::bundled-groovy-dependency[]
    dependencies {
        implementation(localGroovy())
    }
    // end::bundled-groovy-dependency[]
    
    dependencies {
        testImplementation("junit:junit:4.13")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 393 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/groovy/groovyDependency/groovy/build.gradle

    }
    
    // tag::groovy-test-dependency[]
    dependencies {
        testImplementation 'org.codehaus.groovy:groovy-all:2.4.15'
    }
    // end::groovy-test-dependency[]
    
    // tag::bundled-groovy-dependency[]
    dependencies {
        implementation localGroovy()
    }
    // end::bundled-groovy-dependency[]
    
    dependencies {
        testImplementation 'junit:junit:4.13'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 395 bytes
    - Viewed (0)
  3. samples/bookinfo/src/details/Gemfile.lock

    GEM
      remote: https://rubygems.org/
      specs:
        webrick (1.8.1)
    
    PLATFORMS
      aarch64-linux
      ruby
      x86_64-linux
    
    DEPENDENCIES
      webrick (~> 1.7)
    
    BUNDLED WITH
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 18:42:05 UTC 2024
    - 171 bytes
    - Viewed (0)
  4. cluster/images/etcd/migrate/options.go

    		"directory of etcd and etcdctl binaries, must contain etcd-<version> and etcdctl-<version> for each version listed in <bundled-versions>.")
    	flags.StringVar(&opts.dataDir, "data-dir", "",
    		"etcd data directory of etcd server to migrate. If unset fallbacks to DATA_DIRECTORY env.")
    	flags.StringSliceVar(&opts.bundledVersions, "bundled-versions", supportedEtcdVersions,
    		"comma separated list of etcd binary versions present under the bin-dir.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/MutationValidator.java

             * Theoretically these should be bundled under {@link MutationType#DEPENDENCIES}, but these mutations are not (yet)
             * prevented on resolved configurations.
             */
            DEPENDENCY_ATTRIBUTES("dependency attributes"),
    
            /**
             * The mutation of the attributes (other than coordinates) of a dependency constraint.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:26:55 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/JvmEcosystemAttributesDetails.java

        /**
         * Provides or requires a component which dependencies are bundled as part
         * of the main artifact
         */
        JvmEcosystemAttributesDetails withEmbeddedDependencies();
    
        /**
         * Provides or requires a component which dependencies are bundled as part
         * of the main artifact in a relocated/shadowed form
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/internal/installation/CurrentGradleInstallationLocatorTest.groovy

            distDir.createDir("lib")
            distDir.createDir("lib/plugins")
        }
    
        def cleanup() {
            CompositeStoppable.stoppable(loaders).stop()
        }
    
        def "determines Gradle home by class bundled in JAR located in valid distribution subdirectory '#jarDirectory'"() {
            given:
            def jar = distDir.file("$jarDirectory/mydep-1.2.jar")
            createJarFile(jar)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. docs/features/r8_proguard.md

    R8 / ProGuard
    =============
    
    If you use OkHttp as a dependency in an Android project which uses R8 as a default compiler you
    don't have to do anything. The specific rules are [already bundled][okhttp3_pro] into the JAR which can be
    interpreted by R8 automatically.
    
    If you, however, don't use R8 you have to apply the rules from [this file][okhttp3_pro]. You might
    also need rules from [Okio][okio] which is a dependency of this library.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 607 bytes
    - Viewed (0)
  9. manifests/addons/dashboards/README.md

    # Grafana Dashboards
    
    This folder contains Istio's official Grafana dashboards.
    These get publish to [Grafana](https://grafana.com/orgs/istio/dashboards) during release, and are bundled into our
    [Grafana sample](../../../samples/addons/grafana.yaml).
    
    ## Jsonnet
    
    Newer dashboards are generated with [Jsonnet](https://jsonnet.org/) with the [Grafonnet](https://grafana.github.io/grafonnet/index.html).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 815 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/templates/java-android-application/gradle.properties

    # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
    # org.gradle.parallel=true
    # AndroidX package structure to make it clearer which packages are bundled with the
    # Android operating system, and which are packaged with your app's APK
    # https://developer.android.com/topic/libraries/support-library/androidx-rn
    android.useAndroidX=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top