Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 98 for planes (0.13 sec)

  1. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	}
    
    	// Make sure the compared CAs are whitespace-trimmed. The function clientcmd.LoadFromFile() just decodes
    	// the base64 CA and places it raw in the v1.Config object. In case the user has extra whitespace
    	// in the CA they used to create a kubeconfig this comparison to a generated v1.Config will otherwise fail.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. pilot/test/xds/fake.go

    // limitations under the License.
    
    package xds
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"strings"
    	"time"
    
    	endpoint "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials/insecure"
    	"google.golang.org/grpc/test/bufconn"
    	authorizationv1 "k8s.io/api/authorization/v1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. pkg/xds/server.go

    // limitations under the License.
    
    package xds
    
    import (
    	"strings"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/status"
    	"google.golang.org/protobuf/types/known/anypb"
    
    	"istio.io/istio/pilot/pkg/features"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/security/oauth2-scopes.md

    In this case, it requires the scope `me` (it could require more than one scope).
    
    !!! note
        You don't necessarily need to add different scopes in different places.
    
        We are doing it here to demonstrate how **FastAPI** handles scopes declared at different levels.
    
    === "Python 3.10+"
    
        ```Python hl_lines="5  140  171"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/func.go

    	return FuncNameABI(f.Name, f.ABISelf.Which())
    }
    
    // FuncNameABI returns n followed by a comma and the value of a.
    // This is a separate function to allow a single point encoding
    // of the format, which is used in places where there's not a Func yet.
    func FuncNameABI(n string, a obj.ABI) string {
    	return fmt.Sprintf("%s,%d", n, a)
    }
    
    // newSparseSet returns a sparse set that can store at least up to n integers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

              within such NOTICE file, excluding those notices that do not
              pertain to any part of the Derivative Works, in at least one
              of the following places: within a NOTICE text file distributed
              as part of the Derivative Works; within the Source form or
              documentation, if provided along with the Derivative Works; or,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/patches/patches.go

    	utilyaml "k8s.io/apimachinery/pkg/util/yaml"
    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	"sigs.k8s.io/yaml"
    )
    
    // PatchTarget defines a target to be patched, such as a control-plane static Pod.
    type PatchTarget struct {
    	// Name must be the name of a known target. In the case of Kubernetes objects
    	// this is likely to match the ObjectMeta.Name of a target.
    	Name string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. pilot/pkg/xds/ads.go

    // limitations under the License.
    
    package xds
    
    import (
    	"fmt"
    	"strconv"
    	"strings"
    	"sync/atomic"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	uatomic "go.uber.org/atomic"
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/peer"
    	"google.golang.org/grpc/status"
    
    	"istio.io/api/label"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/app/cmd.go

    			}
    
    			secOpts, err := options.NewSecurityOptions(proxyConfig, proxyArgs.StsPort, proxyArgs.TokenManagerPlugin)
    			if err != nil {
    				return err
    			}
    
    			// If we are using a custom template file (for control plane proxy, for example), configure this.
    			if proxyArgs.TemplateFile != "" && proxyConfig.CustomConfigFile == "" {
    				proxyConfig.ProxyBootstrapTemplatePath = proxyArgs.TemplateFile
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    // limitations under the License.
    
    package envoyfilter
    
    import (
    	"fmt"
    	"strings"
    
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	"google.golang.org/protobuf/proto"
    	anypb "google.golang.org/protobuf/types/known/anypb"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top