Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 345 for Laurent (0.17 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/TestCachingContext.groovy

     */
    
    package org.gradle.internal.execution.steps
    
    abstract class TestCachingContext extends WorkspaceContext implements CachingContext {
        TestCachingContext(WorkspaceContext parent) {
            super(parent)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 829 bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10VisibilityChecker.kt

        }
    }
    
    private fun findContainingNonLocalDeclaration(element: PsiElement): KtCallableDeclaration? {
        for (parent in element.parentsWithSelf) {
            if (parent is KtCallableDeclaration && !KtPsiUtil.isLocal(parent)) {
                return parent
            }
        }
    
        return null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/validation/raw-model/repository-with-basedir-expression.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>org.apache.maven.validation</groupId>
        <artifactId>parent</artifactId>
        <version>1</version>
      </parent>
    
      <groupId>org.apache.maven.validation</groupId>
      <artifactId>project</artifactId>
      <version>1.0.0-SNAPSHOT</version>
    
      <repositories>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 15 18:09:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. 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());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sync/errgroup/go120.go

    // license that can be found in the LICENSE file.
    
    //go:build go1.20
    
    package errgroup
    
    import "context"
    
    func withCancelCause(parent context.Context) (context.Context, func(error)) {
    	return context.WithCancelCause(parent)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 335 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sync/errgroup/pre_go120.go

    // license that can be found in the LICENSE file.
    
    //go:build !go1.20
    
    package errgroup
    
    import "context"
    
    func withCancelCause(parent context.Context) (context.Context, func(error)) {
    	ctx, cancel := context.WithCancel(parent)
    	return ctx, func(error) { cancel() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 377 bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

                    return
                }
    
                val parentIsRoot = parentId.parent == null
                val parent = if (parentIsRoot) {
                    null
                } else {
                    val lookupParent = scopeSpecs[parentId]
                    require(lookupParent != null) {
                        "Cannot find parent $parentId for child scope $childId"
                    }
                    lookupParent
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/context/x_test.go

    		t.Fatalf("timed out after %v waiting for cancel functions; stacks:\n%s", d, buf[:n])
    	}
    }
    
    func TestInterlockedCancels(t *testing.T) {
    	parent, cancelParent := WithCancel(Background())
    	child, cancelChild := WithCancel(parent)
    	go func() {
    		<-parent.Done()
    		cancelChild()
    	}()
    	cancelParent()
    	d := quiescent(t)
    	timer := time.NewTimer(d)
    	defer timer.Stop()
    	select {
    	case <-child.Done():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

            Parent parent = m.getParent();
            if (parent != null) {
                validateStringNotEmpty(
                        "parent.groupId", problems, Severity.FATAL, Version.BASE, parent.getGroupId(), parent);
    
                validateStringNotEmpty(
                        "parent.artifactId", problems, Severity.FATAL, Version.BASE, parent.getArtifactId(), parent);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  10. fess-crawler-es/pom.xml

    	<artifactId>fess-crawler-es</artifactId>
    	<packaging>jar</packaging>
    	<name>Fess Crawler Elasticsearch</name>
    	<parent>
    		<groupId>org.codelibs.fess</groupId>
    		<artifactId>fess-crawler-parent</artifactId>
    		<version>14.15.0-SNAPSHOT</version>
    		<relativePath>../pom.xml</relativePath>
    	</parent>
    	<build>
    		<plugins>
    			<plugin>
    				<artifactId>maven-compiler-plugin</artifactId>
    			</plugin>
    			<plugin>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top