Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomBuilderTest.java

                project.setOriginalModel(model);
                project.setRemoteArtifactRepositories(Collections.singletonList(new MavenArtifactRepository(
                        "central", "http://repo.maven.apache.org/", new DefaultRepositoryLayout(), null, null)));
            }
            Model model = builder.build(session, project, file);
    
            assertNotNull(model);
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. 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)
  4. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/integtests/GroovyProjectIntegrationTest.groovy

            file("settings.gradle") << "rootProject.name='javaOnly'"
    
            when:
            run "build"
    
            then:
            file("build/libs/javaOnly.jar").exists()
        }
    
        def "supports central repository declaration"() {
            given:
            buildFile << """
    plugins {
        id 'groovy'
    }
    
    dependencies {
        implementation 'org.codehaus.groovy:groovy-all:2.5.13'
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 1.7K 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. maven-core/src/test/java/org/apache/maven/project/ProjectModelResolverTest.java

                    "Expected 'UnresolvableModelException' not thrown.");
            assertNotNull(e.getMessage());
            assertThat(e.getMessage(), containsString("Could not find artifact org.apache:apache:pom:0 in central"));
        }
    
        @Test
        void testResolveParentThrowsUnresolvableModelExceptionWhenNoMatchingVersionFound() throws Exception {
            final Parent parent = new Parent();
            parent.setGroupId("org.apache");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. README.md

    ====
    [![Java CI with Maven](https://github.com/codelibs/fess/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/fess/actions/workflows/maven.yml)
    [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.codelibs.fess/fess/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.codelibs.fess/fess)
    [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/gitbucket/gitbucket/blob/master/LICENSE)
    
    ## Overview
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 25 00:40:07 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. testing/soak/src/integTest/groovy/org/gradle/connectivity/MavenCentralDependencyResolveIntegrationTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    
    @Requires(UnitTestPreconditions.Online)
    class MavenCentralDependencyResolveIntegrationTest extends AbstractIntegrationSpec {
        def "resolves a minimal dependency from Maven Central"() {
            given:
            buildFile << """
    repositories {
        mavenCentral()
        mavenCentral { // just test this syntax works.
            name = "otherCentral"
            content {
                includeGroup 'org.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModificationService.kt

    import org.jetbrains.annotations.TestOnly
    import org.jetbrains.kotlin.analysis.api.platform.KotlinPlatformComponent
    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    /**
     * [KotlinGlobalModificationService] is a central service for the invalidation of caches during/between tests.
     *
     * All `publish` functions must be called in a write action because the events in [KotlinModificationTopics] guarantee that the listener is called in a
     * write action.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/java/org/apache/maven/internal/impl/resolver/DefaultModelResolverTest.java

                    "Expected 'ModelResolverException' not thrown.");
            assertNotNull(e.getMessage());
            assertThat(e.getMessage(), containsString("Could not find artifact org.apache:apache:pom:0 in central"));
        }
    
        @Test
        void testResolveParentThrowsModelResolverExceptionWhenNoMatchingVersionFound() throws Exception {
            final Parent parent = Parent.newBuilder()
                    .groupId("org.apache")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top