Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,001 for rfind (0.05 sec)

  1. integration-tests/gradle/build.gradle.kts

    val runningGradle5 = gradle.gradleVersion.startsWith("5.")
    
    val guavaVersionJre =
      "<version>(.*)</version>".toRegex().find(file("../../pom.xml").readText())?.groups?.get(1)?.value
        ?: error("version not found in pom")
    
    val expectedReducedRuntimeClasspathAndroidVersion =
      setOf(
        "guava-${guavaVersionJre.replace("jre", "android")}.jar",
        "failureaccess-1.0.2.jar",
        "jsr305-3.0.2.jar",
        "checker-qual-3.43.0.jar",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. src/cmd/trace/jsontrace.go

    			if firstEv == nil || firstEv.Goroutine() == trace.NoGoroutine {
    				log.Printf("failed to find task with id %d", taskid)
    				return
    			}
    
    			// Set the goroutine filtering options.
    			goid := firstEv.Goroutine()
    			opts.focusGoroutine = goid
    			goroutines := make(map[trace.GoID]struct{})
    			for _, task := range opts.tasks {
    				// Find only directly involved goroutines.
    				for id := range task.Goroutines {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r211/ToolingApiEclipseModelCrossVersionSpec.groovy

            EclipseProject rootProject = loadToolingModel(EclipseProject)
            EclipseProject subprojectA = rootProject.children.find { it.name == 'subproject-a' }
            EclipseProject subprojectB = rootProject.children.find { it.name == 'subproject-b' }
            EclipseProject subprojectC = rootProject.children.find { it.name == 'subproject-c' }
    
            then:
            subprojectA.javaSourceSettings.targetBytecodeVersion == JavaVersion.VERSION_1_1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            return find(ModelPath.path(path), type);
        }
    
        @Override
        public <T> T find(ModelPath path, ModelType<T> type) {
            return toType(type, get(path), "find(ModelPath, ModelType)");
        }
    
        private <T> T toType(ModelType<T> type, ModelNodeInternal node, String msg) {
            if (node == null) {
                return null;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  6. 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)
  7. src/internal/bytealg/indexbyte_loong64.s

    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·IndexByte<ABIInternal>(SB),NOSPLIT,$0-40
    	// R4 = b_base
    	// R5 = b_len
    	// R6 = b_cap (unused)
    	// R7 = byte to find
    	AND	$0xff, R7
    	MOVV	R4, R6		// store base for later
    	ADDV	R4, R5		// end
    	ADDV	$-1, R4
    
    	PCALIGN	$16
    loop:
    	ADDV	$1, R4
    	BEQ	R4, R5, notfound
    	MOVBU	(R4), R8
    	BNE	R7, R8, loop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 905 bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/MethodCache.kt

    
    internal
    fun Iterable<Method>.firstAccessibleMatchingMethodOrNull(predicate: Method.() -> Boolean): Method? =
        find(predicate)?.apply { isAccessible = true }
    
    
    internal
    fun Class<*>.firstMatchingMethodOrNull(predicate: Method.() -> Boolean): Method? =
        allMethods().find(predicate)
    
    
    internal
    fun Class<*>.allMethods() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/SymbolByFqName.kt

                    ?: error("Cannot find enum class `${enumEntryId.classId}`.")
    
                require(classSymbol is KaNamedClassOrObjectSymbol) { "`${enumEntryId.classId}` must be a named class." }
                require(classSymbol.classKind == KaClassKind.ENUM_CLASS) { "`${enumEntryId.classId}` must be an enum class." }
    
                val enumEntrySymbol = classSymbol.getEnumEntries().find { it.name == enumEntryId.callableName }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. src/runtime/mpallocbits.go

    		}
    	}
    	return packPallocSum(start, most, cur)
    }
    
    // find searches for npages contiguous free pages in pallocBits and returns
    // the index where that run starts, as well as the index of the first free page
    // it found in the search. searchIdx represents the first known free page and
    // where to begin the next search from.
    //
    // If find fails to find any free space, it returns an index of ^uint(0) and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top