Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for Laurent (0.24 sec)

  1. RELEASE.md

    Weinmeister, Karthik Muthuraman, Kashif Rasul, Kay Zhu, Kbhute-Ibm, KDR, Keno
    Fischer, Kevin Mader, khanhlvg, Kilaru Yasaswi Sri Chandra Gandhi, Koan-Sin Tan,
    Koock Yoon, kouml, ktaebum, Kyuwon Kim, Lakshay Tokas, Laurent Le Brun,
    leike666666, leonard951, Leslie-Fang, Letian Kang, Li, Guizi, Loo Rong Jie,
    Lucas Hendren, Lukas Folle, Lukas Geiger, Luke Han, luxupu, lvli, Ma, Guokai,
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  2. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

                if (!parent.getVersion().equals(newVersion)) {
                    modified.set(parent.withVersion(newVersion));
                }
    
                return resolveModel(parent.getGroupId(), parent.getArtifactId(), newVersion);
            } catch (final VersionRangeResolutionException e) {
                throw new UnresolvableModelException(
                        e.getMessage(), parent.getGroupId(), parent.getArtifactId(), parent.getVersion(), e);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  3. cmd/iam.go

    // policy is the role's policy.
    //
    // - inherited from parent - this is the case for AssumeRole API, where the
    // parent user is an actual real user with their own (permanent) credentials and
    // policy association.
    //
    // - inherited from "virtual" parent - this is the case for AssumeRoleWithLDAP
    // where the parent user is the DN of the actual LDAP user. The parent user
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 71.1K bytes
    - Viewed (1)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            public ModelSource resolveModel(Session session, Parent parent, AtomicReference<Parent> modified)
                    throws ModelResolverException {
                try {
                    org.apache.maven.model.Parent p = new org.apache.maven.model.Parent(parent);
                    ModelSource source = toSource(resolver.resolveModel(p));
                    if (p.getDelegate() != parent) {
                        modified.set(p.getDelegate());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCallResolver.kt

        private fun KtElement.getContainingDotQualifiedExpressionForSelectorExpression(): KtQualifiedExpression? {
            val parent = parent
            if (parent is KtDotQualifiedExpression && parent.selectorExpression == this) return parent
            if (parent is KtSafeQualifiedExpression && parent.selectorExpression == this) return parent
            return null
        }
    
        private fun createKtCall(
            psi: KtElement,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 70.8K bytes
    - Viewed (1)
  6. maven-compat/src/test/java/org/apache/maven/project/inheritance/t12scm/ProjectInheritanceTest.java

            MavenProject project1 = getProject(pom1);
    
            System.out.println("\n\n");
            System.out.println("Parent SCM URL is: " + project0.getScm().getUrl());
            System.out.println("Child SCM URL is: " + project1.getScm().getUrl());
            System.out.println();
            System.out.println("Parent SCM connection is: " + project0.getScm().getConnection());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  7. cmd/iam-store.go

    		// For STS accounts a policy is mapped to the parent user (if a mapping exists).
    		err = store.loadMappedPolicy(ctx, cred.ParentUser, userType, false, cache.iamSTSPolicyMap)
    	case svcUser:
    		// For service accounts, the parent may be a regular (internal) IDP
    		// user or a "virtual" user (parent of an STS account).
    		//
    		// If parent is a regular user => policy mapping is done on that parent itself.
    		//
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  8. api/maven-api-di/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven-api</artifactId>
        <version>4.0.0-beta-1-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-api-di</artifactId>
      <name>Maven 4 API :: Dependency Injection</name>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  9. api/maven-api-spi/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven-api</artifactId>
        <version>4.0.0-beta-1-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-api-spi</artifactId>
      <name>Maven 4 API :: SPI</name>
      <description>Maven 4 API - Maven SPI.</description>
    
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                pluginDescriptor.setArtifacts(pluginArtifacts);
            } else {
                Map<String, ClassLoader> foreignImports = calcImports(project, parent, imports);
    
                PluginRealmCache.Key cacheKey = pluginRealmCache.createKey(
                        plugin,
                        parent,
                        foreignImports,
                        filter,
                        project.getRemotePluginRepositories(),
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
Back to top