Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 746 for defn (0.06 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    // TODO(adonovan): make this a library function or method of Info.
    func imported(info *types.Info, spec *ast.ImportSpec) *types.Package {
    	obj, ok := info.Implicits[spec]
    	if !ok {
    		obj = info.Defs[spec.Name] // renaming import
    	}
    	return obj.(*types.PkgName).Imported()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.h

    #define TENSORFLOW_COMPILER_JIT_COMPILABILITY_CHECK_UTIL_H_
    
    #include <string>
    
    #include "absl/algorithm/container.h"
    #include "absl/strings/string_view.h"
    #include "absl/types/optional.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/device_util.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/jit/resource_operation_safety_analysis.h"
    #include "tensorflow/compiler/tf2xla/const_analysis.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/BUILD

    )
    
    gentbl_cc_library(
        name = "runtime_fallback_ops_inc_gen",
        tbl_outs = [
            (
                ["-gen-op-decls"],
                "runtime_fallback_ops.h.inc",
            ),
            (
                ["-gen-op-defs"],
                "runtime_fallback_ops.cc.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "runtime_fallback/runtime_fallback_ops.td",
        deps = [":runtime_fallback_ops_td_files"],
    )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/local/LocalFileStandInExternalResourceTest.groovy

            def file = tmpDir.file("missing")
            def outFile = tmpDir.file("out")
    
            expect:
            def resource = new LocalFileStandInExternalResource(file, TestFiles.fileSystem())
            def result = resource.writeToIfPresent(outFile)
            result == null
            !outFile.exists()
        }
    
        def "can fail on missing file when copying to file"() {
            def file = tmpDir.file("missing")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultIsolatableFactoryTest.groovy

            expect:
            def original = "abc"
            def isolated = isolatableFactory.isolate(original)
            isolated instanceof StringValueSnapshot
            isolated.isolate().is(original)
        }
    
        def "can coerce string value"() {
            expect:
            def original = "abc"
            def isolated = isolatableFactory.isolate(original)
            isolated.coerce(String).is(original)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/ImmutableActionSetTest.groovy

        def "can merge composite set into itself"() {
            def action1 = Mock(Action)
            def action2 = Mock(Action)
            def original = ImmutableActionSet.of(action1, action2)
    
            expect:
            def set = original.mergeFrom(original)
            set.is(original)
        }
    
        def "can merge composite sets with common ancestors"() {
            def action1 = Mock(Action)
            def action2 = Mock(Action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

        def "selects candidate with subset of attributes and whose values match"() {
            given:
            def matcher = new DefaultAttributeMatcher(schema)
    
            def usage = Attribute.of('usage', String)
            schema.attribute(usage)
            def other = Attribute.of('other', String)
            schema.attribute(other)
    
            def candidate1 = attributes(usage: "match")
            def candidate2 = attributes(usage: "no match")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

        def classpathWalker = new ClasspathWalker(TestFiles.fileSystem())
        def classpathBuilder = new DefaultClasspathBuilder(TestFiles.tmpDirTemporaryFileProvider(testDirectoryProvider.createDir("tmp")))
        def fileSystemAccess = TestFiles.fileSystemAccess()
        def globalCacheLocations = Stub(GlobalCacheLocations)
        def fileLockManager = Stub(FileLockManager)
        def agentStatus = Stub(AgentStatus) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultBinaryCollectionTest.groovy

            def p = container.get(spec)
            p.present
            p.get() == binary2
        }
    
        def "fires finalize event for element by spec after configuration has completed"() {
            def spec = Stub(Spec)
            def binary1 = Stub(SwiftBinary)
            def binary2 = Stub(SwiftBinary)
            def action1 = Mock(Action)
            def action2 = Mock(Action)
            def finalizeAction = Mock(Action)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/configuration/internal/DefaultListenerBuildOperationDecoratorTest.groovy

        }
    
        def 'decorates listeners that are a combination of listener interfaces'() {
            given:
            def settingsEvaluatedArg = Mock(Settings)
            def projectsLoadedArg = Mock(Gradle)
            def beforeEvaluateArg = Mock(Project)
            def graphPopulatedArg = Mock(TaskExecutionGraph)
            def listener = Mock(ComboListener)
            def id
            def decoratedListener
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top