Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,396 for rfind (0.32 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m5/ToolingApiBuildExecutionCrossVersionSpec.groovy

            then:
            def taskA = project.gradleProject.tasks.find { it.name == 'a' }
            taskA != null
            taskA.path == ':a'
            taskA.description == 'this is task a'
            taskA.project == project.gradleProject
            project.gradleProject.tasks.find { it.name == 'b' }
            project.gradleProject.tasks.find { it.name == 'c' }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. internal/s3select/unused-errors.go

    	return &s3Error{
    		code:       "ParseExpectedDatePart",
    		message:    "Did not find the expected date part in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseExpectedKeyword(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseExpectedKeyword",
    		message:    "Did not find the expected keyword in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

      if (!device) {
        return original_launch_op->emitOpError()
               << "Launch op has an invalid device attribute.";
      }
    
      // Find the TPUCompile successor.
      Operation* tpu_compile_successor =
          FindCompileSuccessor(func_op, preprocess_op);
    
      // Return early if can't find TPUCompile successor.
      if (tpu_compile_successor == nullptr) return success();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	case *types.Chan:
    		return find(obj, T.Elem(), append(path, opElem), seen)
    	case *types.Map:
    		if r := find(obj, T.Key(), append(path, opKey), seen); r != nil {
    			return r
    		}
    		return find(obj, T.Elem(), append(path, opElem), seen)
    	case *types.Signature:
    		if r := findTypeParam(obj, T.TypeParams(), path, seen); r != nil {
    			return r
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top