Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,030 for Lparen (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCache.java

            return get(id, classPath, parent, filterSpec, null);
        }
    
        @Override
        public ClassLoader get(ClassLoaderId id, ClassPath classPath, @Nullable ClassLoader parent, @Nullable FilteringClassLoader.Spec filterSpec, @Nullable HashCode implementationHash) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/scanner.go

    	case '(':
    		s.nextch()
    		s.tok = _Lparen
    
    	case '[':
    		s.nextch()
    		s.tok = _Lbrack
    
    	case '{':
    		s.nextch()
    		s.tok = _Lbrace
    
    	case ',':
    		s.nextch()
    		s.tok = _Comma
    
    	case ';':
    		s.nextch()
    		s.lit = "semicolon"
    		s.tok = _Semi
    
    	case ')':
    		s.nextch()
    		s.nlsemi = true
    		s.tok = _Rparen
    
    	case ']':
    		s.nextch()
    		s.nlsemi = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  3. src/context/context_test.go

    	// Context tree:
    	// parent -> cancelChild
    	// parent -> valueChild -> timerChild
    	// parent -> afterChild
    	parent, cancel := WithCancel(Background())
    	cancelChild, stop := WithCancel(parent)
    	defer stop()
    	valueChild := WithValue(parent, "key", "value")
    	timerChild, stop := WithTimeout(valueChild, veryLongDuration)
    	defer stop()
    	afterStop := AfterFunc(parent, func() {})
    	defer afterStop()
    
    	select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 19:13:01 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/ParentPomsReadOnlyCacheDependencyResolutionTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/12996")
        def "doesn't attempt to write in read-only cache if parent POM is missing from it"() {
            given:
            def parent = mavenHttpRepo.module('org.readonly', 'parent', '1.0')
            def other = mavenHttpRepo.module("org.other", "other", "1.0")
                .parent("org.readonly", "parent", "1.0").publish()
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/javaAnnotationWithVararg.ir.txt

            $this: VALUE_PARAMETER name:<this> type:kotlin.Any
          FUN FAKE_OVERRIDE name:setContentView visibility:public modality:OPEN <> ($this:p2.Parent, p0:kotlin.Int) returnType:kotlin.Unit [fake_override]
            overridden:
              public open fun setContentView (p0: kotlin.Int): kotlin.Unit declared in p2.Parent
            $this: VALUE_PARAMETER name:<this> type:p2.Parent
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationRunnerTest.groovy

                assert operation.id == parent.id
                assert context.failure == null
            }
        }
    
        def "cannot start child operation when parent has completed"() {
            BuildOperationRef parent = null
    
            given:
            operationRunner.run(runnableBuildOperation("parent") {
                parent = operationRunner.currentOperation
            })
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:56:07 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataTreeNode.java

        }
    
        public void setMd(ArtifactMetadata md) {
            this.md = md;
        }
    
        public MetadataTreeNode getParent() {
            return parent;
        }
    
        public void setParent(MetadataTreeNode parent) {
            this.parent = parent;
        }
    
        public MetadataTreeNode[] getChildren() {
            return children;
        }
    
        public void setChildren(MetadataTreeNode[] children) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/DomBuilder.groovy

        Document document
        Node parent
        List elements = []
    
        def DomBuilder(Document document) {
            this.document = document
            this.parent = document
        }
    
        def DomBuilder(Node parent) {
            this.document = parent.ownerDocument
            this.parent = parent
        }
    
        def DomBuilder(Document document, Node parent) {
            this.document = document
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ImmutableClassLoaderScope.java

            ClassLoaderScopeRegistryListener listener
        ) {
            super(id, origin, classLoaderCache, listener);
            this.parent = parent;
            this.classPath = classPath;
            this.classpathImplementationHash = classpathImplementationHash;
            listener.childScopeCreated(parent.getId(), id, origin);
            ClassLoaderId classLoaderId = id.localId();
            if (localClassLoaderFactory != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/BuildModelSourceTransformer.java

            }
        }
    
        //
        // Infer parent information
        //
        void handleParent(Path pomFile, TransformerContext context, Model model) {
            Parent parent = model.getParent();
            if (parent != null) {
                String version = parent.getVersion();
                String path = Optional.ofNullable(parent.getRelativePath()).orElse("..");
                if (version == null && !path.isEmpty()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top