Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 808 for central (0.14 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsBuilder.java

            // so add central to the computed settings for backward compatibility.
            if (effective.getRepositories().isEmpty()
                    && effective.getPluginRepositories().isEmpty()) {
                Repository central = Repository.newBuilder()
                        .id("central")
                        .name("Central Repository")
                        .url("https://repo.maven.apache.org/maven2")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

        /**
         * Adds a repository which looks in Gradle Central Plugin Repository for dependencies.
         *
         * @return The Gradle Central Plugin Repository
         * @since 4.4
         */
        @Adding
        ArtifactRepository gradlePluginPortal();
    
        /**
         * Adds a repository which looks in Gradle Central Plugin Repository for dependencies.
         *
         * @param action a configuration action
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    Some key concepts in Gradle dependency management include:
    
    *Repositories* - The source of dependencies -> `mavenCentral()`
    
    https://mvnrepository.com/repos/central[Maven Central] is a collection of jar files, plugins, and libraries provided by the Maven community and backed by https://central.sonatype.org/[Sonatype^].
    It is the de-facto public artifact store for Java and is used by many build systems.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    2.0-beta-2 maven-source-plugin 2.0-rc1 attach-sources jar true maven-surefire-plugin 2.0-beta-2-SNAPSHOT false snapshots Maven Central Development Repository http://snapshots.maven.codehaus.org/maven2 false central Maven Repository Switchboard http://www.ibiblio.org/maven2 false snapshots Maven Central Plugins Development Repository http://snapshots.maven.codehaus.org/maven2 false central Maven Plugin Repository http://www.ibiblio.org/maven2 junit junit 3.8.1 test target/site org.codehaus.plexus plexus-container-default...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/runtime/mcache.go

    	// Return the current cached span to the central lists.
    	s := c.alloc[spc]
    
    	if s.allocCount != s.nelems {
    		throw("refill of span with free space remaining")
    	}
    	if s != &emptymspan {
    		// Mark this span as no longer cached.
    		if s.sweepgen != mheap_.sweepgen+3 {
    			throw("bad sweepgen in refill")
    		}
    		mheap_.central[spc].mcentral.uncacheSpan(s)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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