Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 66 for extexit (0.12 sec)

  1. licenses/github.com/hashicorp/go-multierror/LICENSE

       order, or regulation then You must: (a) comply with the terms of this License
       to the maximum extent possible; and (b) describe the limitations and the code
       they affect. Such description must be placed in a text file included with all
       distributions of the Covered Software under this License. Except to the
       extent prohibited by statute or regulation, such description must be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/plist.go

    				s := ctxt.GCLocalsSym(b)
    				if !s.OnList() {
    					ctxt.Globl(s, int64(len(s.P)), int(RODATA|DUPOK))
    				}
    				p.To.Sym = s
    			}
    
    		}
    
    		if curtext == nil {
    			etext = nil
    			continue
    		}
    		etext.Link = p
    		etext = p
    	}
    
    	if newprog == nil {
    		newprog = ctxt.NewProg
    	}
    
    	// Add reference to Go arguments for assembly functions without them.
    	if ctxt.IsAsm {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. src/text/template/parse/lex.go

    	}
    	return l
    }
    
    // state functions
    
    const (
    	leftDelim    = "{{"
    	rightDelim   = "}}"
    	leftComment  = "/*"
    	rightComment = "*/"
    )
    
    // lexText scans until an opening action delimiter, "{{".
    func lexText(l *lexer) stateFn {
    	if x := strings.Index(l.input[l.pos:], l.leftDelim); x >= 0 {
    		if x > 0 {
    			l.pos += Pos(x)
    			// Do we trim any trailing space?
    			trimLength := Pos(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    other Contributor ("Indemnified Contributor") against any losses,
    damages and costs (collectively "Losses") arising from claims, lawsuits
    and other legal actions brought by a third party against the Indemnified
    Contributor to the extent caused by the acts or omissions of such
    Commercial Contributor in connection with its distribution of the Program
    in a commercial product offering. The obligations in this section do not
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

                        // (documentation says that getEndPosition() will be NOPOS if and only if the getPosition() is NOPOS)
                        if (0 < position) {
                            // ... we can report the line, column, and extent ...
                            spec.lineInFileLocation(resourceName, line, column, end - position);
                        } else {
                            // ... otherwise we can still report the line and column
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/main.go

    	if ctxt.Debugvlog > 0 {
    		// dump symbol info on crash
    		defer func() { ctxt.loader.Dump() }()
    	}
    	if ctxt.Debugvlog > 1 {
    		// dump symbol info on error
    		AtExit(func() {
    			if nerrors > 0 {
    				ctxt.loader.Dump()
    			}
    		})
    	}
    
    	switch *flagHeadType {
    	case "":
    	case "windowsgui":
    		ctxt.HeadType = objabi.Hwindows
    		windowsgui = true
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. cluster/log-dump/log-dump.sh

    # (defaults to _artifacts). Only works if the provider supports SSH.
    
    # TODO(shyamjvs): This script should be moved to test/e2e which is where it ideally belongs.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    readonly report_dir="${1:-_artifacts}"
    readonly gcs_artifacts_dir="${2:-}"
    readonly logexporter_namespace="${3:-logexporter}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. docs/fr/docs/python-types.md

    Mais malheureusement, rien d'utile n'en résulte :
    
    <img src="/img/python-types/image01.png">
    
    ### Ajouter des types
    
    Modifions une seule ligne de la version précédente.
    
    Nous allons changer seulement cet extrait, les paramètres de la fonction, de :
    
    
    ```Python
        first_name, last_name
    ```
    
    à :
    
    ```Python
        first_name: str, last_name: str
    ```
    
    C'est tout.
    
    Ce sont des annotations de types :
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/encoding/gob/type.go

    	base        reflect.Type // the base type after all indirections
    	indir       int          // number of indirections to reach the base type
    	externalEnc int          // xGob, xBinary, or xText
    	externalDec int          // xGob, xBinary, or xText
    	encIndir    int8         // number of indirections to reach the receiver type; may be negative
    	decIndir    int8         // number of indirections to reach the receiver type; may be negative
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. src/runtime/debuglog.go

    	if len(x) > 4 && datap.etext <= uintptr(unsafe.Pointer(strData)) && uintptr(unsafe.Pointer(strData)) < datap.end {
    		// String constants are in the rodata section, which
    		// isn't recorded in moduledata. But it has to be
    		// somewhere between etext and end.
    		l.w.byte(debugLogConstString)
    		l.w.uvarint(uint64(len(x)))
    		l.w.uvarint(uint64(uintptr(unsafe.Pointer(strData)) - datap.etext))
    	} else {
    		l.w.byte(debugLogString)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top