Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,960 for broot (0.06 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/singleClassContextReceiver.ir.txt

            VALUE_PARAMETER name:p0 index:0 type:<root>.Test
            EXPRESSION_BODY
              BLOCK type=kotlin.Int origin=null
                CALL 'public final fun useWithCtx1 ($context_receiver_0: <root>.Ctx1): kotlin.Int declared in <root>.ContextKt' type=kotlin.Int origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Apr 26 06:04:06 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DirectoryFileTreeTest.groovy

            given:
            def root = temporaryFolder.createDir("root")
            def rootFile1 = root.createFile("rootFile1")
            def dir1 = root.createDir("dir1")
            def dirFile1 = dir1.createFile("dirFile1")
            def dirFile2 = dir1.createFile("dirFile2")
            def rootFile2 = root.createFile("rootFile2")
    
            def fileTree = new DirectoryFileTree(root, new PatternSet(), TestFiles.fileSystem(), false).postfix()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. refactorings/TraverserRewrite.java

          return Traverser.forTree((N node) -> getChildren(node)).depthFirstPreOrder(root);
        }
      }
    
      abstract class TreeTraverserPostOrder<N> {
        @Placeholder
        abstract Iterable<N> getChildren(N node);
    
        @BeforeTemplate
        Iterable<N> before1(N root) {
          return TreeTraverser.using((N node) -> getChildren(node)).postOrderTraversal(root);
        }
    
        @BeforeTemplate
        Iterable<N> before2(N root) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 20 18:51:33 UTC 2020
    - 3K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webservice/webservice.iml.xml

              <root url="jar://@CACHE_DIR@/commons-lang/commons-lang/2.4/@SHA1@/commons-lang-2.4-javadoc.jar!/"/>
            </JAVADOC>
            <SOURCES>
              <root url="jar://@CACHE_DIR@/commons-lang/commons-lang/2.4/@SHA1@/commons-lang-2.4-sources.jar!/"/>
            </SOURCES>
          </library>
        </orderEntry>
        <orderEntry type="module-library" scope="RUNTIME">
          <library>
            <CLASSES>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/AbstractIdeDeduplicationIntegrationTest.groovy

        def "dedups child project with same name as parent project"() {
            given:
            project("root") {
                project("app") {
                    project("app") {}
                }
            }
    
            when:
            run ideName
    
            then:
            projectName(".") == "root"
            projectName("app") == "root-app"
            projectName("app/app") == "app-app"
    
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/outerClass.ir.txt

    MODULE_FRAGMENT
      FILE fqName:<root> fileName:fragment.kt
        CLASS CLASS name:CodeFragment modality:FINAL visibility:public superTypes:[kotlin.Any]
          $this: VALUE_PARAMETER INSTANCE_RECEIVER name:<this> type:<root>.CodeFragment
          CONSTRUCTOR visibility:public <> () returnType:<root>.CodeFragment [primary]
            BLOCK_BODY
              DELEGATING_CONSTRUCTOR_CALL 'public constructor <init> () [primary] declared in kotlin.Any'
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/match/match_test.go

    			given: func() Mapper {
    				// root (dest port):
    				//   <no matches>
    				//   fallback (dest ip):
    				//     1.2.3.4: chain
    				fallback := NewDestinationIP()
    				fallback.Map["1.2.3.4"] = ToChain("chain")
    
    				root := NewDestinationPort()
    				root.OnNoMatch = ToMatcher(fallback.Matcher)
    				return root
    			},
    			want: func() *matcher.Matcher {
    				// root (dest ip):
    				//   1.2.3.4: chain
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/cc/client/client_session_test.cc

      ClientSession session(root);
      std::vector<Tensor> outputs;
    
      TF_EXPECT_OK(session.Run({{a, 1}, {b, 41}}, {c}, &outputs));
      test::ExpectTensorEqual<int>(outputs[0], test::AsTensor<int>({42}, {}));
    }
    
    TEST(ClientSessionTest, Extend) {
      Scope root = Scope::NewRootScope();
      auto a = Placeholder(root, DT_INT32, Placeholder::Shape({2}));
      auto c = Add(root, a, {2, 2});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionMultipleCapturing.ir.txt

                    obj: GET_VAR 'a: kotlin.Int declared in <root>.Foo.test.call' type=kotlin.Int origin=null
                  CALL 'public final fun consume (obj: kotlin.Any): kotlin.Unit declared in <root>' type=kotlin.Unit origin=null
                    obj: GET_VAR '<this>: <root>.Foo declared in <root>.Foo.test' type=<root>.Foo origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/result/DefaultResolutionResultTest.groovy

            //does not contain unresolved dep, contains root
            modules == [root, dep1.selected, dep2.selected, dep3.selected] as Set
        }
    
        def "provides hooks for iterating each module or dependency exactly once"() {
            given:
            //root -> dep1,dep2; dep1 -> dep3
            def dep = newDependency('dep1')
            def dep3 = newDependency('dep3')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top