Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 416 for aliasRef (0.14 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/aliases.go

    Michael Matloob <******@****.***> 1709746618 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 385 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/aliases.go

    Michael Matloob <******@****.***> 1715181059 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 281 bytes
    - Viewed (0)
  3. hack/.import-aliases

    SataQiu <******@****.***> 1692249135 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 17 05:27:21 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/alias.go

    // gotypesalias setting with the GODEBUG environment variable.
    // For gotypesalias=1, alias declarations produce an Alias type.
    // Otherwise, the alias information is only in the type name,
    // which points directly to the actual (aliased) type.
    type Alias struct {
    	obj     *TypeName      // corresponding declared alias object
    	orig    *Alias         // original, uninstantiated alias
    	tparams *TypeParamList // type parameters, or nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/go/types/alias.go

    // gotypesalias setting with the GODEBUG environment variable.
    // For gotypesalias=1, alias declarations produce an Alias type.
    // Otherwise, the alias information is only in the type name,
    // which points directly to the actual (aliased) type.
    type Alias struct {
    	obj     *TypeName      // corresponding declared alias object
    	orig    *Alias         // original, uninstantiated alias
    	tparams *TypeParamList // type parameters, or nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/names/controller_names.go

    // They can only be changed if absolutely necessary. For example if an inappropriate name was chosen in the past, or if the scope of the controller changes.
    // When a name is changed, the old name should be aliased in app.ControllerDescriptor#GetAliases, while preserving all old aliases.
    // This is done to achieve backwards compatibility
    //
    // USE CASES
    // The following places should use the controller name constants, when:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/README.md

    wrapper library for Istio. It is similar in basic concept to [](https://github.com/kubernetes-sigs/iptables-wrappers) but Istio needs to invoke `iptables` from a more varied set of contexts than K8s, and so cannot simply rely on "default" binary aliases to `iptables`/`iptables-save`/`iptables-restore`
    
    This wrapper solves for that by fixing the wrapper lib to have binary detection logic that will work in *all* contexts where we use it, rely fully on binary autodetection in all spots, properly...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionCatalog.java

         * <p>
         * Note: Returned aliases are normalized: '-', '_' and '.' have been replaced with '.'
         * </p>
         * @return the list of bundle aliases
         *
         * @since 7.1
         */
        List<String> getBundleAliases();
    
        /**
         * Returns the list of version aliases defined in this version catalog.
         * <p>
         * Note: Returned aliases are normalized: '-', '_' and '.' have been replaced with '.'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/internal/TomlWriter.java

            }
            writeLn();
        }
    
        private void writeLibraries(DefaultVersionCatalog model) {
            List<String> aliases = model.getLibraryAliases();
            if (aliases.isEmpty()) {
                return;
            }
            writeTableHeader("libraries");
            for (String alias : aliases) {
                DependencyModel data = model.getDependencyData(alias);
                String group = data.getGroup();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/recv.go

    import (
    	"go/types"
    
    	"golang.org/x/tools/internal/aliases"
    )
    
    // ReceiverNamed returns the named type (if any) associated with the
    // type of recv, which may be of the form N or *N, or aliases thereof.
    // It also reports whether a Pointer was present.
    func ReceiverNamed(recv *types.Var) (isPtr bool, named *types.Named) {
    	t := recv.Type()
    	if ptr, ok := aliases.Unalias(t).(*types.Pointer); ok {
    		isPtr = true
    		t = ptr.Elem()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top