Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,396 for rfind (0.48 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathAttributesCrossVersionSpec.groovy

                               classpath.entries.find { it.path == 'containerPath' }.entryAttributes.customKey = 'customValue'
                           }
                       }
                   }
               }
            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
            def container = project.classpathContainers.find { it.path == 'containerPath' }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBrokenRemoteResolveIntegrationTest.groovy

                .assertHasCause("""Could not find group:projectA:1.2.
    Searched in the following locations:
      - ${module.pom.uri}
    Required by:
        project :""")
    
            when:
            module.pom.expectGetMissing()
    
            then:
            fails("showMissing")
            failure.assertResolutionFailure(':missing')
                .assertHasCause("""Could not find group:projectA:1.2.
    Searched in the following locations:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. tensorflow/c/eager/tape.h

        int64_t tensor_id = tensor_stack.back();
        tensor_stack.pop_back();
        auto op_id_it = tensor_tape.find(tensor_id);
        if (op_id_it == tensor_tape.end()) {
          continue;
        }
        int64_t op_id = op_id_it->second;
        auto op_it = op_tape->find(op_id);
        auto result_op_it = result.op_tape.find(op_id);
        if (op_id == -1 || op_it == op_tape->end() ||
            result_op_it != result.op_tape.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/SingleDepthFilesFinderTest.groovy

            FileFilter filter = { it != excludedFile }
    
            when:
            def result = new SingleDepthFilesFinder(1).find(tmpDir.getTestDirectory(), filter)
    
            then:
            result as List == [includedFile]
        }
    
        def "handles empty dir"() {
            when:
            def result = new SingleDepthFilesFinder(1).find(tmpDir.getTestDirectory(), { true })
    
            then:
            result as List == []
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppMissingToolchainIntegrationTest.groovy

      - Tool chain 'gcc' (GNU GCC):
          - Could not find C++ compiler 'g++'. Searched in:
              - ${file('gcc-bin')}
      - Tool chain 'clang' (Clang):
          - Could not find C++ compiler 'clang++'. Searched in:
              - ${file('clang-bin')}""")
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/ide/visualstudio/fixtures/ProjectFile.groovy

            }
    
            private Node getBuildConfiguration() {
                projectXml.PropertyGroup.find({ it.'@Label' == 'NMakeConfiguration' && it.'@Condition' == condition}) as Node
            }
    
            private Node getConfiguration() {
                projectXml.PropertyGroup.find({ it.'@Label' == 'Configuration' && it.'@Condition' == condition}) as Node
            }
    
            private String getCondition() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/util/NameMatcher.java

         *
         * @return The matching item if exactly 1 match found, null if no matches or multiple matches.
         * @see #find(String, Collection)
         */
        public <T> T find(String pattern, Map<String, ? extends T> items) {
            String name = find(pattern, items.keySet());
            if (name != null) {
                return items.get(name);
            }
            return null;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:48:18 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r11rc1/DependencyMetaDataCrossVersionSpec.groovy

            ExternalDependency coolLib = libs.find { it.file.name == 'coolLib-2.0.jar' }
            assert coolLib.gradleModuleVersion
            assert coolLib.gradleModuleVersion.group == 'foo.bar'
            assert coolLib.gradleModuleVersion.name == 'coolLib'
            assert coolLib.gradleModuleVersion.version == '2.0'
    
            ExternalDependency funLib = libs.find { it.file.name.contains('funLib') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/BuildInvocationsBuilderTest.groovy

            then:
            assert model.taskSelectors.find { it.name == 't1' }.description == 'T1 from root'
            assert model.taskSelectors.find { it.name == 't2' }.description == null
            assert model.taskSelectors.find { it.name == 't3' }.description == 'T3 from child'
            assert model.taskSelectors.find { it.name == 't4' }.description == 'T4 from grand child 1'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          if (curr.is_exiting) {
            if (node_map.find(curr.n) == node_map.end()) {
              Node* copy = g->CopyNode(curr.n);
              if (curr.n != start_node) {
                for (const Edge* e : curr.n->in_edges()) {
                  auto node_iter = node_map.find(e->src());
                  if (node_iter == node_map.end()) {
                    return errors::Internal("Cannot find node image for ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top