Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 390 for Parses (0.21 sec)

  1. src/encoding/json/decode.go

    package json
    
    import (
    	"encoding"
    	"encoding/base64"
    	"fmt"
    	"reflect"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf16"
    	"unicode/utf8"
    	_ "unsafe" // for linkname
    )
    
    // Unmarshal parses the JSON-encoded data and stores the result
    // in the value pointed to by v. If v is nil or not a pointer,
    // Unmarshal returns an [InvalidUnmarshalError].
    //
    // Unmarshal uses the inverse of the encodings that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		parsed := apiextensionsv1.CustomResourceDefinition{}
    		if err := runtime.DefaultUnstructuredConverter.FromUnstructured(crd.Object, &parsed); err != nil {
    			b.Fatalf("Failed to parse CRD %v", err)
    			return
    		}
    
    		for _, v := range parsed.Spec.Versions {
    			gvk := schema.GroupVersionKind{
    				Group:   parsed.Spec.Group,
    				Version: v.Name,
    				Kind:    parsed.Spec.Names.Kind,
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. src/crypto/x509/verify.go

    						}, c.PermittedDNSDomains, c.ExcludedDNSDomains); err != nil {
    						return err
    					}
    
    				case nameTypeURI:
    					name := string(data)
    					uri, err := url.Parse(name)
    					if err != nil {
    						return fmt.Errorf("x509: internal error: URI SAN %q failed to parse", name)
    					}
    
    					if err := c.checkNameConstraints(&comparisonCount, maxConstraintComparisons, "URI", name, uri,
    						func(parsedName, constraint any) (bool, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. src/net/http/fs.go

    func (r httpRange) mimeHeader(contentType string, size int64) textproto.MIMEHeader {
    	return textproto.MIMEHeader{
    		"Content-Range": {r.contentRange(size)},
    		"Content-Type":  {contentType},
    	}
    }
    
    // parseRange parses a Range header string as per RFC 7233.
    // errNoOverlap is returned if none of the ranges overlap.
    func parseRange(s string, size int64) ([]httpRange, error) {
    	if s == "" {
    		return nil, nil // header not present
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client.go

    				tlsmaxrsasize.IncNonDefault()
    			}
    			return max, n <= max
    		}
    	}
    	return defaultMaxRSAKeySize, n <= defaultMaxRSAKeySize
    }
    
    // verifyServerCertificate parses and verifies the provided chain, setting
    // c.verifiedChains and c.peerCertificates or sending the appropriate alert.
    func (c *Conn) verifyServerCertificate(certificates [][]byte) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  6. src/archive/tar/writer_test.go

    				},
    			}, nil},
    			testClose{nil},
    		},
    	}, {
    		// Craft a theoretically valid PAX archive with global headers.
    		// The GNU and BSD tar tools do not parse these the same way.
    		//
    		// BSD tar v3.1.2 parses and ignores all global headers;
    		// the behavior is verified by researching the source code.
    		//
    		//	$ bsdtar -tvf pax-global-records.tar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar_test.go

    	t := tNow.Add(time.Duration(delta) * time.Second)
    	return "expires=" + t.Format(time.RFC1123)
    }
    
    // mustParseURL parses s to a URL and panics on error.
    func mustParseURL(s string) *url.URL {
    	u, err := url.Parse(s)
    	if err != nil || u.Scheme == "" || u.Host == "" {
    		panic(fmt.Sprintf("Unable to parse URL %s.", s))
    	}
    	return u
    }
    
    // jarTest encapsulates the following actions on a jar:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    			return nil, nil, fmt.Errorf("error loading go.work:\n%s:%d: %w", base.ShortPath(path), g.Syntax.Start.Line, err)
    		}
    	}
    
    	return wf, modRoots, nil
    }
    
    // ReadWorkFile reads and parses the go.work file at the given path.
    func ReadWorkFile(path string) (*modfile.WorkFile, error) {
    	path = base.ShortPath(path) // use short path in any errors
    	workData, err := fsys.ReadFile(path)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Linux system calls.
    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and
    // wrap it in our own nicer implementation.
    
    package syscall
    
    import (
    	"internal/itoa"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    // license that can be found in the LICENSE file.
    
    // Package modfile implements a parser and formatter for go.mod files.
    //
    // The go.mod syntax is described in
    // https://pkg.go.dev/cmd/go/#hdr-The_go_mod_file.
    //
    // The [Parse] and [ParseLax] functions both parse a go.mod file and return an
    // abstract syntax tree. ParseLax ignores unknown statements and may be used to
    // parse go.mod files that may have been developed with newer versions of Go.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top