Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,422 for central (0.21 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    [[sub:maven_central]]
    === Maven Central repository
    
    Maven Central is a popular repository hosting open source libraries for consumption by Java projects.
    
    To declare the link:https://repo.maven.apache.org/maven2/[Maven Central repository] for your build add this to your script:
    
    .Adding central Maven repository
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  2. apache-maven/src/assembly/maven/conf/settings.xml

        </mirror>
      </mirrors>
    
      <!-- repositories
       | Specifies the list of default remote repositories that maven will search artifacts for.
      -->
      <repositories>
        <repository>
          <id>central</id>
          <name>Central Repository</name>
          <url>https://repo.maven.apache.org/maven2</url>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
      </repositories>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. istioctl/pkg/multixds/gather.go

    package multixds
    
    // multixds knows how to target either central Istiod or all the Istiod pods on a cluster.
    
    import (
    	"context"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"net/url"
    	"os"
    	"strings"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	xdsstatus "github.com/envoyproxy/go-control-plane/envoy/service/status/v3"
    	"google.golang.org/grpc"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    │   ├── build.gradle.kts
    │   └── src
    └── ⋮                       // <8>
    ----
    <1> Project-specific cache directory generated by Gradle.
    <2> The version catalog which defines a set of versions for dependencies in a central location.
    <3> Contains the JAR file and configuration of the <<gradle_wrapper.adoc#gradle_wrapper_reference,Gradle Wrapper>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr5_build_scripts.adoc

    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    repositories {
        mavenCentral()  // get dependencies from the Maven central repository
    }
    ----
    =====
    [.multi-language-sample]
    =====
    [source, groovy]
    ----
    repositories {
        mavenCentral()  // get dependencies from the Maven central repository
    }
    ----
    =====
    
    Dependencies are requirements for building your application or library:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderKotlinTest.groovy

            builder.repositories().maven("Use another repo as well", "https://somewhere")
            builder.repositories().maven(null, "https://somewhere/2")
            builder.repositories().mavenCentral("Use Maven Central")
    
            when:
            builder.create(target).generate()
    
            then:
            assertOutputFile("""/*
     * This file was generated by the Gradle 'init' task.
     */
    
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderGroovyTest.groovy

    Use Maven Central
    
    Alternatively:
    - Could use Google's Maven repository
    - Or a local mirror
    
    """)
    
            when:
            builder.create(target).generate()
    
            then:
            //mind the trailing whitespace at the empty commented line
            assertOutputFile("""$COMMON_START
     */
    
    repositories {
        // Use Maven Central
        // ${""}
        // Alternatively:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  8. src/runtime/mgcsweep.go

    			// an unswept set, then the mcentral will pop it off the
    			// set, check its sweepgen, and ignore it.
    			if nalloc == 0 {
    				// Free totally free span directly back to the heap.
    				mheap_.freeSpan(s)
    				return true
    			}
    			// Return span back to the right mcentral list.
    			if nalloc == s.nelems {
    				mheap_.central[spc].mcentral.fullSwept(sweepgen).push(s)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. internal/s3select/csv/reader_contrib_test.go

    3389228,1,2014-03-28 13:52:56,2014-03-28 14:29:01,N,1,-73.950569152832031,40.792312622070313,-73.868507385253906,40.688491821289063,2,16.10,46,0,0.5,0,5.33,,,51.83,2,,75,63,green,0.04,0.0,0.0,62,37,5.37,1267,16...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 38.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Usually, a rule is specifically written to enrich metadata of one specific module and hence the `withModule` API should be preferred.
    
    [[sec:rules_in_settings]]
    === Declaring rules in a central place
    
    NOTE: Declaring component metadata rules in settings is an incubating feature
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top