Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 124 for addsym (0.1 sec)

  1. cmd/kubeadm/app/cmd/upgrade/node.go

    			if err := validation.ValidateMixedArguments(cmd.Flags()); err != nil {
    				return err
    			}
    
    			return nodeRunner.Run(args)
    		},
    		Args: cobra.NoArgs,
    	}
    
    	// adds flags to the node command
    	// flags could be eventually inherited by the sub-commands automatically generated for phases
    	addUpgradeNodeFlags(cmd.Flags(), nodeOptions)
    	options.AddConfigFlag(cmd.Flags(), &nodeOptions.cfgPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/controlplane/volumes.go

    	for _, v := range vols {
    		c.addComponentVolume(component, v)
    	}
    	for _, v := range volMounts {
    		c.addComponentVolumeMount(component, v)
    	}
    }
    
    // AddExtraHostPathMounts adds host path mounts and overwrites the default
    // paths in the case that a user specifies the same volume/volume mount name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. src/runtime/extern.go

    or the failure is internal to the run-time.
    GOTRACEBACK=none omits the goroutine stack traces entirely.
    GOTRACEBACK=single (the default) behaves as described above.
    GOTRACEBACK=all adds stack traces for all user-created goroutines.
    GOTRACEBACK=system is like “all” but adds stack frames for run-time functions
    and shows goroutines created internally by the run-time.
    GOTRACEBACK=crash is like “system” but crashes in an operating system-specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    	// do all the changes for a single envoy filter crd object. [including adds]
    	// then move on to the next one
    
    	// only removes/merges plus next level object operations [add/remove/merge]
    	for _, lis := range listeners {
    		if lis.Name == "" {
    			// removed by another op
    			continue
    		}
    		patchListener(patchContext, efw.Patches, lis, &listenersRemoved)
    	}
    	// adds at listener level if enabled
    	if !skipAdds {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/output/v1alpha3/zz_generated.conversion.go

    	runtime "k8s.io/apimachinery/pkg/runtime"
    	output "k8s.io/kubernetes/cmd/kubeadm/app/apis/output"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    // RegisterConversions adds conversion functions to the given scheme.
    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. pkg/proxy/endpointslicecache.go

    			endpointInfoBySP[svcPortName] = cache.addEndpoints(&svcPortName, int(*port.Port), endpointInfoBySP[svcPortName], sliceData.endpointSlice.Endpoints)
    		}
    	}
    
    	return endpointInfoBySP
    }
    
    // addEndpoints adds an Endpoint for each unique endpoint.
    func (cache *EndpointSliceCache) addEndpoints(svcPortName *ServicePortName, portNum int, endpointSet map[string]Endpoint, endpoints []discovery.Endpoint) map[string]Endpoint {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/util/util.go

    // name.namespace of the config, the type, etc.
    func BuildConfigInfoMetadata(config config.Meta) *core.Metadata {
    	return AddConfigInfoMetadata(nil, config)
    }
    
    // AddConfigInfoMetadata adds name.namespace of the config, the type, etc
    // to the given core.Metadata struct, if metadata is not initialized, build a new metadata.
    func AddConfigInfoMetadata(metadata *core.Metadata, config config.Meta) *core.Metadata {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // sure any argument of any op is on the same host of the op itself.
    std::unique_ptr<OperationPass<mlir::ModuleOp>> CreateCrossHostTransferPass();
    
    // Creates a pass that adds the device attribute to every tf.Const op based on
    // the device attribute of the operations that read its result. If the result of
    // a tf.Const op is read by operations placed on multiple devices, then the pass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  9. src/cmd/trace/gstate.go

    		return
    	}
    	if stk == trace.NoStack {
    		return
    	}
    	name := lastFunc(stk)
    	gs.baseName += fmt.Sprintf(" %s", name)
    	gs.named = true
    	gs.isSystemG = trace.IsSystemGoroutine(name)
    }
    
    // setLabel adds an additional label to the goroutine's name.
    func (gs *gState[R]) setLabel(label string) {
    	gs.label = label
    }
    
    // name returns a name for the goroutine.
    func (gs *gState[R]) name() string {
    	name := gs.baseName
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/pgen.go

    		if base.Ctxt.Arch.FixedFrameSize == 0 {
    			off -= int64(types.PtrSize)
    		}
    		if buildcfg.FramePointerEnabled {
    			off -= int64(types.PtrSize)
    		}
    	}
    	return int32(off + slot.Off)
    }
    
    // fieldtrack adds R_USEFIELD relocations to fnsym to record any
    // struct fields that it used.
    func fieldtrack(fnsym *obj.LSym, tracked map[*obj.LSym]struct{}) {
    	if fnsym == nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top