Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 140 for Aliases (0.12 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/facts/imports.go

    			addType(obj.Type())
    			if pkg := obj.Pkg(); pkg != nil {
    				packages[pkg.Path()] = pkg
    			}
    		}
    	}
    
    	addType = func(T types.Type) {
    		switch T := T.(type) {
    		case *aliases.Alias:
    			addType(aliases.Unalias(T))
    		case *types.Basic:
    			// nop
    		case *types.Named:
    			// Remove infinite expansions of *types.Named by always looking at the origin.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

    					// naked: only test app without sidecar, send requests from trust domain aliases
    					// client: app with sidecar, send request from cluster.local
    					// server: app with sidecar, verify requests from cluster.local or trust domain aliases
    					client := match.Cluster(cluster).FirstOrFail(t, client)
    					naked := match.Cluster(cluster).FirstOrFail(t, apps.Naked)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/testing/testserver.go

    	s, err := options.NewKubeControllerManagerOptions()
    	if err != nil {
    		return TestServer{}, err
    	}
    	all, disabled, aliases := app.KnownControllers(), app.ControllersDisabledByDefault(), app.ControllerAliases()
    	namedFlagSets := s.Flags(all, disabled, aliases)
    	for _, f := range namedFlagSets.FlagSets {
    		fs.AddFlagSet(f)
    	}
    	fs.Parse(customFlags)
    
    	if s.SecureServing.BindPort != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/batch.go

    	"k8s.io/kubernetes/pkg/controller/cronjob"
    	"k8s.io/kubernetes/pkg/controller/job"
    )
    
    func newJobControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.JobController,
    		aliases:  []string{"job"},
    		initFunc: startJobController,
    	}
    }
    
    func startJobController(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller.Interface, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    This error indicates that your version catalog contains (at least) two aliases which are mapped to the same accessor.
    Given an alias like `some.alias`, Gradle implements a mapping strategy to a _getter_ for type-checked accessors.
    In this case, it means that two aliases are in conflict because they result in the same getter being created.
    
    To fix this problem, you must choose different aliases.
    
    [[too_many_entries]]
    == Too many entries in a single catalog
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/cc_op_gen_util.h

      // interface_op_def: The OpDef used in the interface in the generated
      //   code, with possibly overridden names and defaults.
      OpInfo(const OpDef& graph_op_def, const ApiDef& api_def,
             const std::vector<string>& aliases);
      OpInfo(const OpDef& graph_op_def, const ApiDef& api_def);
      string GetOpAttrStruct() const;
      string GetConstructorDecl(StringPiece op_name_prefix,
                                bool include_attr) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-versionCatalogPlugin/kotlin/build.gradle.kts

    // tag::apply_plugin[]
    plugins {
        `version-catalog`
        `maven-publish`
    }
    // end::apply_plugin[]
    
    group = "com.mycompany"
    version = "1.0"
    
    // tag::catalog_spec[]
    catalog {
        // declare the aliases, bundles and versions in this block
        versionCatalog {
            library("my-lib", "com.mycompany:mylib:1.2")
        }
    }
    // end::catalog_spec[]
    
    // tag::catalog_publish[]
    publishing {
        publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go121.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !go1.22
    // +build !go1.22
    
    package aliases
    
    import (
    	"go/types"
    )
    
    // Alias is a placeholder for a go/types.Alias for <=1.21.
    // It will never be created by go/types.
    type Alias struct{}
    
    func (*Alias) String() string         { panic("unreachable") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 962 bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/rbac.go

    )
    
    func newClusterRoleAggregrationControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.ClusterRoleAggregationController,
    		aliases:  []string{"clusterrole-aggregation"},
    		initFunc: startClusterRoleAggregationController,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. doc/next/2-language.md

    For details see the [language spec](/ref/spec#For_statements).
    
    <!-- go.dev/issue/46477, CL 566856, CL 586955, CL 586956 -->
    Go 1.23 includes preview support for [generic type aliases](/issue/46477).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 757 bytes
    - Viewed (0)
Back to top