Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 152 for ast1 (0.08 sec)

  1. src/cmd/cgo/ast.go

    	// right place when we start editing the AST behind its back,
    	// so we use ast1 to look for the doc comments on import "C"
    	// and on exported functions, and we use ast2 for translating
    	// and reprinting.
    	// In cgo mode, we ignore ast2 and just apply edits directly
    	// the text behind ast1. In godefs mode we modify and print ast2.
    	ast1 := parse(abspath, src, parser.SkipObjectResolution|parser.ParseComments)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. test/typeparam/issue48191.go

    			m0 map[G2]byte
    			s1 G3
    		}{st3.st1.st3.i1: m2[<-m4[i8_1]][st5.st1.st3.i1-st3.st1.st3.i1-i2]}
    		st1 = struct {
    		}{}
    		pi64_0 = pi64_1
    		m4 = m6
    		as7 = as7
    		m6[(i8_0+i8_0)&^i8_1&^i8_1] = m5[G1(96)^i8_1]
    		st2 = struct {
    		}{}
    		st1 = struct {
    		}{}
    		am10 = []map[uint]int64{am9[len((*st4.pm2)[int64(65)].s0)+i], am11[st4.st1.st3.i1%st4.st1.st3.i1^i1]}
    		i2 = st5.st1.st3.i1*i - st5.st1.st3.i1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser_test.go

    	}
    }
    
    func verifyPrint(t *testing.T, filename string, ast1 *File) {
    	var buf1 bytes.Buffer
    	_, err := Fprint(&buf1, ast1, LineForm)
    	if err != nil {
    		panic(err)
    	}
    	bytes1 := buf1.Bytes()
    
    	ast2, err := Parse(NewFileBase(filename), &buf1, nil, nil, 0)
    	if err != nil {
    		panic(err)
    	}
    
    	var buf2 bytes.Buffer
    	_, err = Fprint(&buf2, ast2, LineForm)
    	if err != nil {
    		panic(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 16:30:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    package cryptobyte
    
    import (
    	encoding_asn1 "encoding/asn1"
    	"fmt"
    	"math/big"
    	"reflect"
    	"time"
    
    	"golang.org/x/crypto/cryptobyte/asn1"
    )
    
    // This file contains ASN.1-related methods for String and Builder.
    
    // Builder
    
    // AddASN1Int64 appends a DER-encoded ASN.1 INTEGER.
    func (b *Builder) AddASN1Int64(v int64) {
    	b.addASN1Signed(asn1.INTEGER, v)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/cryptobyte/asn1/asn1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package asn1 contains supporting types for parsing and building ASN.1
    // messages with the cryptobyte package.
    package asn1 // import "golang.org/x/crypto/cryptobyte/asn1"
    
    // Tag represents an ASN.1 identifier octet, consisting of a tag number
    // (indicating a type) and class (such as context-specific or constructed).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  6. src/encoding/asn1/asn1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package asn1 implements parsing of DER-encoded ASN.1 data structures,
    // as defined in ITU-T Rec X.690.
    //
    // See also “A Layman's Guide to a Subset of ASN.1, BER, and DER,”
    // http://luca.ntop.org/Teaching/Appunti/asn1.html.
    package asn1
    
    // ASN.1 is a syntax for specifying abstract objects and BER, DER, PER, XER etc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  7. src/go/ast/ast.go

    	// be conservative and guard against bad ASTs
    	if len(f.List) > 0 {
    		return f.List[0].Pos()
    	}
    	return token.NoPos
    }
    
    func (f *FieldList) End() token.Pos {
    	if f.Closing.IsValid() {
    		return f.Closing + 1
    	}
    	// the list should not be empty in this case;
    	// be conservative and guard against bad ASTs
    	if n := len(f.List); n > 0 {
    		return f.List[n-1].End()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  8. src/cmd/vet/testdata/asm/asm1.s

    Russ Cox <******@****.***> 1613743292 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 883 bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	Copy(copy func(AST) AST, skip func(AST) bool) AST
    
    	// Implement the fmt.GoStringer interface.
    	GoString() string
    	goString(indent int, field string) string
    }
    
    // ASTToString returns the demangled name of the AST.
    func ASTToString(a AST, options ...Option) string {
    	tparams := true
    	enclosingParams := true
    	llvmStyle := false
    	max := 0
    	for _, o := range options {
    		switch {
    		case o == NoTemplateParams:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  10. pkg/config/schema/ast/ast.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package ast
    
    import (
    	"encoding/json"
    	"fmt"
    
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pkg/config/validation"
    	// Force-import a function.
    	_ "istio.io/istio/pkg/config/validation/envoyfilter"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top