Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,014 for central (0.13 sec)

  1. cmd/postpolicyform.go

    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    func NewControlPlaneJoinPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "control-plane-join",
    		Short:   "Join a machine as a control plane instance",
    		Example: controlPlaneJoinExample,
    		Phases: []workflow.Phase{
    			{
    				Name:           "all",
    				Short:          "Join a machine as a control plane instance",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/upgrade/node/controlplane.go

    		data, ok := c.(Data)
    		if !ok {
    			return errors.New("control-plane phase invoked with an invalid data struct")
    		}
    
    		// if this is not a control-plane node, this phase should not be executed
    		if !data.IsControlPlaneNode() {
    			fmt.Println("[upgrade] Skipping phase. Not a control plane node.")
    			return nil
    		}
    
    		// otherwise, retrieve all the info required for control plane upgrade
    		cfg := data.InitCfg()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    	# Prepares the machine for serving a control plane
    	kubeadm join phase control-plane-prepare all
    `)
    
    // NewControlPlanePreparePhase creates a kubeadm workflow phase that implements the preparation of the node to serve a control plane
    func NewControlPlanePreparePhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "control-plane-prepare",
    		Short:   "Prepare the machine for serving a control plane",
    		Example: controlPlanePrepareExample,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. cmd/generic-handlers.go

    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

    // ```
    //
    // `%merged_control` is a NoOp control barrier in this case.
    //
    // Checks if the value `control` is a NoOp control barrier.
    bool IsNoOpControlBarrier(Value control) {
      if (!mlir::isa<ControlType>(control.getType())) return false;
    
      auto control_island = dyn_cast_or_null<IslandOp>(control.getDefiningOp());
      if (!control_island) return false;
    
      // All islands perfectly wrap a single op is an invariant of this pass and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_zos.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.
    
    // Socket control messages
    
    package unix
    
    import "unsafe"
    
    // UnixCredentials encodes credentials into a socket control message
    // for sending to another process. This can be used for
    // authentication.
    func UnixCredentials(ucred *Ucred) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// Possible usages are:
    	// e.g. In a cluster with more than one control plane instances, this field should be
    	// assigned the address of the external load balancer in front of the
    	// control plane instances.
    	// e.g.  in environments with enforced node recycling, the ControlPlaneEndpoint
    	// could be used for assigning a stable DNS to the control plane.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. src/runtime/mstats.go

    //
    // The world must be stopped.
    func readmemstats_m(stats *MemStats) {
    	assertWorldStopped()
    
    	// Flush mcaches to mcentral before doing anything else.
    	//
    	// Flushing to the mcentral may in general cause stats to
    	// change as mcentral data structures are manipulated.
    	systemstack(flushallmcaches)
    
    	// Calculate memory allocator stats.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/model/permission.go

    package model
    
    import (
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	rbacpb "github.com/envoyproxy/go-control-plane/envoy/config/rbac/v3"
    	routepb "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	uri_template "github.com/envoyproxy/go-control-plane/envoy/extensions/path/match/uri_template/v3"
    	matcher "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    
    	"istio.io/istio/pilot/pkg/util/protoconv"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top