Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,133 for rfind (2.09 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/FilteringClassLoader.java

                || resourcePrefixes.find(resourceName);
        }
    
        private boolean isPackageAllowed(String packageName) {
            if (disallowedPackagePrefixes.find(packageName)) {
                return false;
            }
    
            return SYSTEM_PACKAGES.contains(packageName)
                || packageNames.contains(packageName)
                || packagePrefixes.find(packageName);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

                    assert allLoggingProgress.details.logLevel == 'LIFECYCLE'
                }
            }
    
            def runBuildProgress = operations.only('Run build').progress
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

            def projectDir = 'C:\\some\\agent\\workspace'
    
            expect:
            (line =~ KillLeakingJavaProcesses.generateLeakingProcessKillPattern(projectDir)).find()
        }
    
        def "matches daemon process started by performance test on Windows"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:00:39 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_util.cc

        int src_output = e->src_output(), dst_input = e->dst_input();
        g->RemoveEdge(e);
    
        // Find or create placeholder node.
        string new_name =
            absl::StrCat(src->name(), "_oc_to_oc_placeholder_", src_output);
        auto placeholder_index = std::make_pair(src->name(), src_output);
        auto iter = placeholders.find(placeholder_index);
        Node* placeholder_node;
        if (iter == placeholders.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenHttpRepoResolveIntegrationTest.groovy

            then:
    
            failure.assertHasCause('Could not find :name1:1.0.')
            failure.assertHasCause('Could not find any matches for :name2:[1.0, 2.0] as no versions of :name2 are available.')
            failure.assertHasCause('Could not find :name3:1.0-SNAPSHOT.')
            failure.assertHasCause('Could not find group1::1.0.')
            failure.assertHasCause('Could not find any matches for group2::[1.0, 2.0] as no versions of group2: are available.')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

            def project = new XmlSlurper().parse(file(iprFileName))
            def libraryTable = project.component.find { it.@name == "libraryTable" }
            assert libraryTable
    
            def library = libraryTable.library.find { it.@name == libraryName }
            assert library: "Can't find $libraryName in ${******@****.***(', ')}"
    
            def classesRoots = library.CLASSES.root
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

                details.select(candidates.find { it.version == '1.2' })
            }
            1 * conflictResolver.select(!null) >> { args ->
                def details = args[0]
                Collection<ComponentResolutionState> candidates = details.candidates
                assert candidates*.version == ['2.2', '2.1']
                details.select(candidates.find { it.version == '2.2' })
            }
            0 * conflictResolver._
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

            first.artifactVerifications[0].checksums.find { it.kind == ChecksumKind.sha512 }.value == "5678abcd"
            first.artifactVerifications[1].artifactName == "bar-1.2.jar"
            first.artifactVerifications[1].checksums.find { it.kind == ChecksumKind.sha1 }.value == "9876"
            first.artifactVerifications[1].checksums.find { it.kind == ChecksumKind.sha512 }.value == "123def"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

        auto new_operands = llvm::to_vector<8>(call.getOperands());
        for (int64_t i = 0; i < call.getNumOperands(); ++i) {
          auto arg_it = info.buffer_arg_to_size_arg.find(i);
          if (arg_it == info.buffer_arg_to_size_arg.end()) continue;
          auto it = buffer_to_size->find(call.getOperand(i));
          if (it == buffer_to_size->end()) {
            call.emitOpError("unknown tensor list.");
            return failure();
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionResolveIntegrationTest.groovy

            repositoryInteractions {
                'org.test:projectA' {
                    expectVersionListing()
                }
            }
            runAndFail 'checkDeps'
    
            then:
            failureHasCause 'Could not find any matches for org.test:projectA:latest.integration as no versions of org.test:projectA are available.'
    
            when:
            resetExpectations()
            repository {
                'org.test:projectA' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
Back to top