Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 787 for alias2 (0.25 sec)

  1. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/internal/DependenciesAwareVersionCatalogBuilder.java

            String alias = normalizeName(name);
            if (containsLibraryAlias(alias)) {
                throw new InvalidUserDataException("A dependency with alias '" + alias + "' already exists for module '" + group + ":" + name + "'. Please configure an explicit alias for this dependency.");
            }
            if (!ALIAS_PATTERN.matcher(alias).matches()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. pkg/config/schema/codegen/templates/gvk.go.tmpl

    	{{- range $alias := .Resource.VersionAliases }}
    	{{$entry.Resource.Identifier}}_{{$alias}} = config.GroupVersionKind{Group: "{{$entry.Resource.Group}}", Version: "{{$alias}}", Kind: "{{$entry.Resource.Kind}}"}
        {{- end }}
    {{- end }}
    )
    
    // ToGVR converts a GVK to a GVR.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 03:54:51 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/object.go

    }
    
    // IsAlias reports whether obj is an alias name for a type.
    func (obj *TypeName) IsAlias() bool {
    	switch t := obj.typ.(type) {
    	case nil:
    		return false
    	// case *Alias:
    	//	handled by default case
    	case *Basic:
    		// unsafe.Pointer is not an alias.
    		if obj.pkg == Unsafe {
    			return false
    		}
    		// Any user-defined type name for a basic type is an alias for a
    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. docs/distributed/DECOMMISSION.md

    ## How to decommission a pool
    
    ```
    λ mc admin decommission start alias/ http://minio{1...2}/data{1...4}
    ```
    
    ## Status decommissioning a pool
    
    ### Decommissioning without args lists all pools
    
    ```
    λ mc admin decommission status alias/
    ┌─────┬─────────────────────────────────┬──────────────────────────────────┬────────┐
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 11 14:59:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  5. platforms/software/plugins-version-catalog/src/integTest/groovy/org/gradle/catalog/VersionCatalogPluginApplicationIntegrationTest.groovy

                include 'subproject'
            """
            buildFile """
                plugins {
                    alias(libs.plugins.orgExample)
                }
            """
            file("subproject/build.gradle") << """
                plugins {
                    alias(libs.plugins.orgExample)
                }
            """
    
            when:
            succeeds(":pluginTask")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. fastapi/params.py

            self.include_in_schema = include_in_schema
            self.openapi_examples = openapi_examples
            kwargs = dict(
                default=default,
                default_factory=default_factory,
                alias=alias,
                title=title,
                description=description,
                gt=gt,
                ge=ge,
                lt=lt,
                le=le,
                min_length=min_length,
                max_length=max_length,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. dbflute_fess/dfprop/classificationDefinitionMap.dfprop

    #         ; map:{
    #             ; code=[code]; name=[name]; alias=[alias]; comment=[comment]
    #             ; sisterCode=[code or code-list]; subItemMap=map:{[free-map]}
    #         }
    #         # settings for table classification
    #         ; map:{
    #             ; table=[table-name]
    #             ; code=[column-name for code]; name=[column-name for name]
    #             ; alias=[column-name for alias]; comment=[column-name for comment]}
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  8. src/go/types/predicates.go

    // TODO(gri) should we include signatures or assert that they are not present?
    func isGeneric(t Type) bool {
    	// A parameterized type is only generic if it doesn't have an instantiation already.
    	if alias, _ := t.(*Alias); alias != nil && alias.tparams != nil && alias.targs == nil {
    		return true
    	}
    	named := asNamed(t)
    	return named != nil && named.obj != nil && named.inst == nil && named.TypeParams().Len() > 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/service.go

    	LabelSelectors map[string]string
    
    	// Aliases is the resolved set of aliases for this service. This is computed based on a global view of all Service's `AliasFor`
    	// fields.
    	// For example, if I had two Services with `externalName: foo`, "a" and "b", then the "foo" service would have Aliases=[a,b].
    	Aliases []NamespacedHostname
    
    	// For Kubernetes platform
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. internal/s3select/sql/statement.go

    	stmt.selectQProp = selectAST.Expression.analyze(&selectAST)
    	err = stmt.selectQProp.err
    	if err != nil {
    		err = errQueryAnalysisFailure(err)
    	}
    
    	// Set table alias
    	stmt.tableAlias = selectAST.From.As
    	// Remove quotes from column aliases
    	if selectAST.Expression != nil {
    		for _, exp := range selectAST.Expression.Expressions {
    			if strings.HasSuffix(exp.As, "'") && strings.HasPrefix(exp.As, "'") && len(exp.As) >= 2 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 09 17:19:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top