Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for gather (0.15 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/scopes/Maven3ScopeManagerConfiguration.java

    import java.util.stream.Collectors;
    
    import org.eclipse.aether.artifact.ArtifactProperties;
    import org.eclipse.aether.impl.scope.BuildScopeMatrixSource;
    import org.eclipse.aether.impl.scope.BuildScopeSource;
    import org.eclipse.aether.impl.scope.CommonBuilds;
    import org.eclipse.aether.impl.scope.InternalScopeManager;
    import org.eclipse.aether.impl.scope.ScopeManagerConfiguration;
    import org.eclipse.aether.internal.impl.scope.ScopeManagerDump;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/internal/transformation/AbstractRepositoryTestCase.java

    import org.codehaus.plexus.testing.PlexusTest;
    import org.eclipse.aether.DefaultRepositorySystemSession;
    import org.eclipse.aether.RepositoryListener;
    import org.eclipse.aether.RepositorySystem;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.internal.impl.DefaultChecksumPolicyProvider;
    import org.eclipse.aether.internal.impl.DefaultRemoteRepositoryManager;
    import org.eclipse.aether.internal.impl.DefaultUpdatePolicyAnalyzer;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. src/internal/syscall/unix/getrandom_linux.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package unix
    
    const (
    	// GRND_NONBLOCK means return EAGAIN rather than blocking.
    	GRND_NONBLOCK GetRandomFlag = 0x0001
    
    	// GRND_RANDOM means use the /dev/random pool instead of /dev/urandom.
    	GRND_RANDOM GetRandomFlag = 0x0002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 11 08:19:31 UTC 2021
    - 391 bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyCoordinateFactory.java

            }
            if (request.getCoordinateString() != null) {
                return new DefaultDependencyCoordinate(
                        session,
                        new org.eclipse.aether.graph.Dependency(
                                new org.eclipse.aether.artifact.DefaultArtifact(request.getCoordinateString()),
                                request.getScope(),
                                request.isOptional(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. test-site/activator.bat

        set CMDS="ui"
      ) else set CMDS=!args!
    ) else set CMDS=!args!
    
    rem We add a / in front, so we get file:///C: instead of file://C:
    rem Java considers the later a UNC path.
    rem We also attempt a solid effort at making it URI friendly.
    rem We don't even bother with UNC paths.
    set JAVA_FRIENDLY_HOME_1=/!ACTIVATOR_HOME:\=/!
    set JAVA_FRIENDLY_HOME=/!JAVA_FRIENDLY_HOME_1: =%%20!
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
  6. releasenotes/notes/26185.yaml

    releaseNotes:
    - |
      **Added** support for client side Envoy secure naming config when trust domain alias is used.
      Fix the multi cluster service discovery client SAN generation: takes all endpoints' service accounts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 25 16:11:21 UTC 2020
    - 339 bytes
    - Viewed (0)
  7. releasenotes/notes/alpn-gateway-auto.yaml

    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 10 18:00:16 UTC 2022
    - 336 bytes
    - Viewed (0)
  8. src/internal/syscall/unix/getrandom_dragonfly.go

    const getrandomTrap uintptr = 550
    
    const (
    	// GRND_RANDOM is only set for portability purpose, no-op on DragonFlyBSD.
    	GRND_RANDOM GetRandomFlag = 0x0001
    
    	// GRND_NONBLOCK means return EAGAIN rather than blocking.
    	GRND_NONBLOCK GetRandomFlag = 0x0002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 11 08:19:31 UTC 2021
    - 476 bytes
    - Viewed (0)
  9. src/internal/syscall/unix/getrandom_freebsd.go

    // license that can be found in the LICENSE file.
    
    package unix
    
    // FreeBSD getrandom system call number.
    const getrandomTrap uintptr = 563
    
    const (
    	// GRND_NONBLOCK means return EAGAIN rather than blocking.
    	GRND_NONBLOCK GetRandomFlag = 0x0001
    
    	// GRND_RANDOM is only set for portability purpose, no-op on FreeBSD.
    	GRND_RANDOM GetRandomFlag = 0x0002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 11 08:19:31 UTC 2021
    - 466 bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/repository/TestRepositoryConnectorFactory.java

     * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.repository;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.repository.RemoteRepository;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top