Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,960 for broot (0.2 sec)

  1. guava/src/com/google/common/collect/TreeTraverser.java

              }
            }.accept(root);
          }
        };
      }
    
      UnmodifiableIterator<T> postOrderIterator(T root) {
        return new PostOrderIterator(root);
      }
    
      private static final class PostOrderNode<T> {
        final T root;
        final Iterator<T> childIterator;
    
        PostOrderNode(T root, Iterator<T> childIterator) {
          this.root = checkNotNull(root);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. test/typeparam/listimp2.dir/a.go

    func CheckListPointers[T any](l *List[T], es []*Element[T]) {
    	root := &l.root
    
    	if !CheckListLen(l, len(es)) {
    		return
    	}
    
    	// zero length lists must be the zero value or properly initialized (sentinel circle)
    	if len(es) == 0 {
    		if l.root.next != nil && l.root.next != root || l.root.prev != nil && l.root.prev != root {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParameterizedModelQueryIntegrationTest.groovy

            }
            outputContains("configuring root")
            outputContains("creating model with parameter='fetch1' for root project 'root'")
            outputContains("creating model with parameter='fetch2' for root project 'root'")
    
            and:
            models.keySet() ==~ [":"]
            models.values().every { it.size() == 4 }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/javaAnnotationWithVararg.ir.txt

            BLOCK_BODY
              CALL 'protected/*protected and package*/ open fun onCreate (): kotlin.Unit declared in p2.Parent' superQualifier='CLASS IR_EXTERNAL_JAVA_DECLARATION_STUB CLASS name:Parent modality:OPEN visibility:public superTypes:[kotlin.Any]' type=kotlin.Unit origin=null
                $this: GET_VAR '<this>: <root>.Child declared in <root>.Child.onCreate' type=<root>.Child origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/contextReceiver.ir.txt

            VALUE_PARAMETER name:p0 index:0 type:<root>.Foo
            EXPRESSION_BODY
              BLOCK type=kotlin.String origin=null
                CALL 'public final fun <get-foo> (): kotlin.String declared in <root>.Foo' type=kotlin.String origin=GET_PROPERTY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 896 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/contextReceiverExplicit.ir.txt

            VALUE_PARAMETER name:p0 index:0 type:<root>.Foo
            EXPRESSION_BODY
              BLOCK type=kotlin.String origin=null
                CALL 'public final fun <get-foo> (): kotlin.String declared in <root>.Foo' type=kotlin.String origin=GET_PROPERTY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 896 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/privateMemberCall.ir.txt

            VALUE_PARAMETER name:p0 index:0 type:<root>.A
            EXPRESSION_BODY
              BLOCK type=kotlin.Int origin=null
                CALL 'private final fun foo (): kotlin.Int declared in <root>.A' type=kotlin.Int origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 861 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/outerClassMutated.ir.txt

            VALUE_PARAMETER name:p0 index:0 type:<root>.Test
            EXPRESSION_BODY
              BLOCK type=kotlin.Unit origin=null
                CALL 'public final fun <set-a> (value: kotlin.String): kotlin.Unit declared in <root>.Test' type=kotlin.Unit origin=EQ
                  $this: GET_VAR 'p0: <root>.Test declared in <root>.CodeFragment.run' type=<root>.Test origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 966 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilderTest.groovy

            }
            configurationsProvider.findByName('root') >> resolvable()
            configurationsProvider.findByName('conf') >> resolvable()
    
            def root = builder.toRootComponent('root')
            def variant = root.rootComponent.getConfiguration('conf')
    
            when:
            builder.validator.validateMutation(mutationType)
            def otherRoot = builder.toRootComponent('root')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/preferCorrectResolve.ir.txt

            VALUE_PARAMETER name:p0 index:0 type:<root>.A
            EXPRESSION_BODY
              BLOCK type=kotlin.Int origin=null
                CALL 'public final fun foo (x: kotlin.Any): kotlin.Int declared in <root>.A' type=kotlin.Int origin=null
                  $this: GET_VAR 'p0: <root>.A declared in <root>.CodeFragment.run' type=<root>.A origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 924 bytes
    - Viewed (0)
Back to top