Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for coord_ (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/collateral/control.go

    			COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"}
    		done
    	fi
    }
    __istio_get_comp_words_by_ref() {
    	cur="${COMP_WORDS[COMP_CWORD]}"
    	prev="${COMP_WORDS[${COMP_CWORD}-1]}"
    	words=("${COMP_WORDS[@]}")
    	cword=("${COMP_CWORD[@]}")
    }
    __istio_filedir() {
    	local RET OLD_IFS w qw
    	__istio_debug "_filedir $@ cur=$cur"
    	if [[ "$1" = \~* ]]; then
    		# somehow does not work. Maybe, zsh does not call this at all
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top