Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for coord_ (0.44 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            }
    
            void withName(String name) {
                assert model.name == name
            }
    
            void withGAV(String gav) {
                def coord = gav.split(':')
                def v = coord.length > 2 ? coord[2] : ''
                withGAV(coord[0], coord[1], v)
            }
    
            void withGAV(String group, String name, String version) {
                withGroup group
                withName name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

            apiVariant.dependencies.find { it.coords == 'org.springframework:spring-core:2.5.6' }.excludes == ['commons-logging:commons-logging']
            apiVariant.dependencies.find { it.coords == 'commons-beanutils:commons-beanutils:1.8.3' }.excludes == ['commons-logging:*']
            apiVariant.dependencies.find { it.coords == 'commons-dbcp:commons-dbcp:1.4' }.excludes == ['*:*']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  3. src/go/types/object.go

    	return &Label{object{pos: pos, pkg: pkg, name: name, typ: Typ[Invalid], color_: black}, false}
    }
    
    // A Builtin represents a built-in function.
    // Builtins don't have a valid type.
    type Builtin struct {
    	object
    	id builtinId
    }
    
    func newBuiltin(id builtinId) *Builtin {
    	return &Builtin{object{name: predeclaredFuncs[id].name, typ: Typ[Invalid], color_: black}, id}
    }
    
    // Nil represents the predeclared value nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/object.go

    	return &Label{object{pos: pos, pkg: pkg, name: name, typ: Typ[Invalid], color_: black}, false}
    }
    
    // A Builtin represents a built-in function.
    // Builtins don't have a valid type.
    type Builtin struct {
    	object
    	id builtinId
    }
    
    func newBuiltin(id builtinId) *Builtin {
    	return &Builtin{object{name: predeclaredFuncs[id].name, typ: Typ[Invalid], color_: black}, id}
    }
    
    // Nil represents the predeclared value nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

      }
    }
    
    // Converts an MLIR elements attribute and adds it to specified repeated field.
    template <typename T, typename Cord>
    void ConvertFloatElementsAttr(const mlir::DenseElementsAttr attr,
                                  protobuf::RepeatedField<T>* output,
                                  Cord* tensor_content) {
      if (attr.isSplat()) {
        if (attr.getSplatValue<T>() != T(0)) output->Add(attr.getSplatValue<T>());
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyGradleModuleMetadataPublishIntegrationTest.groovy

            module.assertPublished()
            module.parsedModuleMetadata.variants.size() == 1
            def api = module.parsedModuleMetadata.variant('api')
            api.dependencies[0].coords == 'group.a:lib_a:4.5'
            api.dependencies[1].coords == 'group.b:utils:0.01'
        }
    
        def "publishes component with strict and prefer dependencies"() {
            settingsFile << "rootProject.name = 'root'"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 30.4K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenGradleModuleMetadataPublishIntegrationTest.groovy

            module.assertPublished()
            module.parsedModuleMetadata.variants.size() == 1
            def api = module.parsedModuleMetadata.variant('api')
            api.dependencies[0].coords == 'group.a:lib_a:4.5'
            api.dependencies[1].coords == 'group.b:utils:0.01'
        }
    
        def "publishes component with strict and prefer dependencies"() {
            settingsFile << "rootProject.name = 'root'"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  8. platforms/software/publish/src/test/groovy/org/gradle/api/publish/internal/metadata/GradleModuleMetadataWriterTest.groovy

    """
        }
    
        def publication(SoftwareComponentInternal component, ModuleVersionIdentifier coords, VersionMappingStrategyInternal mappingStrategyInternal = null, boolean withBuildId = false) {
            def publication = Stub(PublicationInternal)
            publication.component >> Providers.of(component)
            publication.coordinates >> coords
            publication.versionMappingStrategy >> mappingStrategyInternal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  9. src/go/types/decl.go

    	// its methods, and we don't want a cycle error in that case.
    	// TODO(gri) review if this is correct and/or whether we still need this?
    	saved := obj.color_
    	obj.color_ = black
    	fdecl := decl.fdecl
    	check.funcType(sig, fdecl.Recv, fdecl.Type)
    	obj.color_ = saved
    
    	// Set the scope's extent to the complete "func (...) { ... }"
    	// so that Scope.Innermost works correctly.
    	sig.scope.pos = fdecl.Pos()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/decl.go

    	// its methods, and we don't want a cycle error in that case.
    	// TODO(gri) review if this is correct and/or whether we still need this?
    	saved := obj.color_
    	obj.color_ = black
    	fdecl := decl.fdecl
    	check.funcType(sig, fdecl.Recv, fdecl.TParamList, fdecl.Type)
    	obj.color_ = saved
    
    	// Set the scope's extent to the complete "func (...) { ... }"
    	// so that Scope.Innermost works correctly.
    	sig.scope.pos = fdecl.Pos()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top