Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,012 for rfind (0.13 sec)

  1. src/cmd/go/testdata/script/build_trimpath_goroot.txt

    ! exec ./example-trimpath.exe
    stdout '^GOROOT $'
    stderr 'cannot find package "runtime" in any of:\n\t\(\$GOROOT not set\)\n\t'$WORK${/}gopath${/}src${/}runtime' \(from \$GOPATH\)\n\z'
    
    exec ./example.test.exe -test.v
    stdout '^GOROOT '$TESTGO_GOROOT'$'
    stdout '^runtime '$TESTGO_GOROOT${/}src${/}runtime'$'
    
    ! exec ./example.test-trimpath.exe -test.v
    stdout '^GOROOT $'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r212/ToolingApiIdeaModelCrossVersionSpec.groovy

            ideaProject.modules.find { it.name == 'root' }.javaLanguageSettings == null
            ideaProject.modules.find { it.name == 'child1' }.javaLanguageSettings == null
            ideaProject.modules.find { it.name == 'child2' }.javaLanguageSettings.languageLevel == JavaVersion.VERSION_1_2
            ideaProject.modules.find { it.name == 'child3' }.javaLanguageSettings.languageLevel == JavaVersion.VERSION_1_5
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/RuntimePropertyResolver.kt

            receiverClass.memberFunctions.find { it.name == getterName(name) && it.parameters.size == 1 && it.visibility == KVisibility.PUBLIC }
                ?.let { property -> DeclarativeRuntimePropertyGetter { property.call(it) } }
    
        private
        fun findKotlinFunctionSetter(receiverClass: KClass<*>, name: String) =
            receiverClass.memberFunctions.find { it.name == setterName(name) && it.visibility == KVisibility.PUBLIC }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 17:34:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderDependenciesTest.groovy

            then:
            def projectDependencies = eclipseModel.children.find { it.name == projectName }.projectDependencies
            projectDependencies.collect { it.classpathAttributes.find { it.name == 'test' }?.value } == expectedTestAttributes
    
            where:
            projectName | expectedTestAttributes
            'child2'    | [ null ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/impldeps/GradleImplDepsCompatibilityIntegrationTest.groovy

                    doLast {
                        copy {
                            into '$outputDirPath'
                            from configurations.gradleApi.resolve().find { it.name.startsWith('gradle-api-') }
                            from configurations.testKit.resolve().find { it.name.startsWith('gradle-test-kit-') }
                        }
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/isolated/IsolationSchemeTest.groovy

            def params = Stub(SomeParams)
            def service = Stub(serviceType)
            _ * allServices.find(serviceType) >> service
    
            def injectedServices = scheme.servicesForImplementation(params, allServices)
    
            when:
            def result = injectedServices.find(serviceType)
    
            then:
            result.is(service)
    
            when:
            def result2 = injectedServices.get(serviceType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 19:49:52 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. src/runtime/runtime-gdb_unix_test.go

    	re := regexp.MustCompile(`#.* runtime\.sigtramp `)
    	if found := re.Find(got) != nil; !found {
    		t.Fatalf("could not find sigtramp in backtrace")
    	}
    
    	re = regexp.MustCompile("#.* <signal handler called>")
    	loc := re.FindIndex(got)
    	if loc == nil {
    		t.Fatalf("could not find signal handler marker in backtrace")
    	}
    	rest := got[loc[1]:]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/reflect/DirectInstantiatorTest.groovy

            e.cause instanceof IllegalArgumentException
            e.cause.message == "Could not find any public constructor for ${SomeType} which accepts parameters [java.lang.Object]."
    
            when:
            instantiator.newInstance(SomeType, "a", "b")
    
            then:
            e = thrown()
            e.cause.message == "Could not find any public constructor for ${SomeType} which accepts parameters [java.lang.String, java.lang.String]."
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. hack/update-vendor-licenses.sh

         ;;
        *)
         package_root="${package}"
         ;;
      esac
    
      # Find files - only root and package level
      local_files=()
      IFS=" " read -r -a local_files <<< "$(
        for dir_root in ${package} ${package_root}; do
          [[ -d ${DEPS_DIR}/${dir_root} ]] || continue
    
          # One (set) of these is fine
          find "${DEPS_DIR}/${dir_root}" \
              -xdev -follow -maxdepth ${find_maxdepth} \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. native-image-tests/src/test/kotlin/okhttp3/nativeImage/NativeImageTestsTest.kt

        val testSelector = testSelectors()
        val x = findTests(testSelector)
    
        x.find { it is ClassBasedTestDescriptor && it.testClass == SampleTest::class.java }
      }
    
      @Test
      fun testFindsModuleTests() {
        val testSelector = DiscoverySelectors.selectPackage("okhttp3")
        val x = findTests(listOf(testSelector))
    
        x.find { it is ClassBasedTestDescriptor && it.testClass == SampleTest::class.java }
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top