Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 144 for funcdata (0.14 sec)

  1. src/runtime/asm_amd64.s

    // Copyright 2009 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.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    #include "cgo/abi_amd64.h"
    
    // _rt0_amd64 is common startup code for most amd64 systems when using
    // internal linking. This is the entry point for the program from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/obj.go

    //
    // preprocess is called once per linker symbol.
    //
    // When preprocess finishes, all instructions in the symbol are either
    // concrete, real RISC-V instructions or directive pseudo-ops like TEXT,
    // PCDATA, and FUNCDATA.
    func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {
    	if cursym.Func().Text == nil || cursym.Func().Text.Link == nil {
    		return
    	}
    
    	// Generate the prologue.
    	text := cursym.Func().Text
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	iscgo           bool
    	elfglobalsymndx int
    	interpreter     string
    
    	debug_s bool // backup old value of debug['s']
    	HEADR   int32
    
    	nerrors  int
    	liveness int64 // size of liveness data (funcdata), printed if -v
    
    	// See -strictdups command line flag.
    	checkStrictDups   int // 0=off 1=warning 2=error
    	strictDupMsgCount int
    )
    
    var (
    	Segtext      sym.Segment
    	Segrodata    sym.Segment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/workflow/doc_test.go

    	// Create a phase
    	var myPhase1 = Phase{
    		Name:  "myPhase1",
    		Short: "A phase of a kubeadm composable workflow...",
    		Run: func(data RunData) error {
    			// transform data into a typed data struct
    			d, ok := data.(myPhaseData)
    			if !ok {
    				return errors.New("invalid RunData type")
    			}
    
    			// implement your phase logic...
    			fmt.Printf("%v\n", d.Data())
    			return nil
    		},
    	}
    
    	// Create another phase
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 07:27:25 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/pac/kerberos/KerberosTicket.java

                }
            }
    
        }
    
    
        public String getUserPrincipalName () {
            return this.encData.getUserPrincipalName();
        }
    
    
        public String getUserRealm () {
            return this.encData.getUserRealm();
        }
    
    
        public String getServerPrincipalName () {
            return this.serverPrincipalName;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/init/controlplane.go

    }
    
    func runControlPlanePhase(c workflow.RunData) error {
    	data, ok := c.(InitData)
    	if !ok {
    		return errors.New("control-plane phase invoked with an invalid data struct")
    	}
    
    	fmt.Printf("[control-plane] Using manifest folder %q\n", data.ManifestDir())
    	return nil
    }
    
    func runControlPlaneSubphase(component string) func(c workflow.RunData) error {
    	return func(c workflow.RunData) error {
    		data, ok := c.(InitData)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/workflow/runner_test.go

    }
    
    func phaseBuilder2(name string, runIf func(data RunData) (bool, error), run func(data RunData) error, phases ...Phase) Phase {
    	return Phase{
    		Name:   name,
    		Short:  fmt.Sprintf("long description for %s ...", name),
    		Phases: phases,
    		Run:    run,
    		RunIf:  runIf,
    	}
    }
    
    func runPass(data RunData) error {
    	return nil
    }
    
    func runFails(data RunData) error {
    	return errors.New("run fails")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 20:03:45 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    	// among all the phases included in the workflow
    	runDataInitializer func(*cobra.Command, []string) (RunData, error)
    
    	// runData is part of the internal state of the runner and it is used for implementing
    	// a singleton in the InitData methods (thus avoiding to initialize data
    	// more than one time)
    	runData RunData
    
    	// runCmd is part of the internal state of the runner and it is used to track the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/certs.go

    }
    
    func runCerts(c workflow.RunData) error {
    	data, ok := c.(InitData)
    	if !ok {
    		return errors.New("certs phase invoked with an invalid data struct")
    	}
    
    	fmt.Printf("[certs] Using certificateDir folder %q\n", data.CertificateWriteDir())
    	return nil
    }
    
    func runCAPhase(ca *certsphase.KubeadmCert) func(c workflow.RunData) error {
    	return func(c workflow.RunData) error {
    		data, ok := c.(InitData)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/workflow/phase.go

    	// It is recommended to implent type assertion, e.g. using golang type switch,
    	// for validating the RunData type.
    	Run func(data RunData) error
    
    	// RunIf define a function that implements a condition that should be checked
    	// before executing the phase action.
    	// If this function return nil, the phase action is always executed.
    	RunIf func(data RunData) (bool, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.2K bytes
    - Viewed (0)
Back to top