Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 186 for Parses (0.13 sec)

  1. src/go/types/check_test.go

    )
    
    var fset = token.NewFileSet()
    
    func parseFiles(t *testing.T, filenames []string, srcs [][]byte, mode parser.Mode) ([]*ast.File, []error) {
    	var files []*ast.File
    	var errlist []error
    	for i, filename := range filenames {
    		file, err := parser.ParseFile(fset, filename, srcs[i], mode)
    		if file == nil {
    			t.Fatalf("%s: %s", filename, err)
    		}
    		files = append(files, file)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/net/conf.go

    	case dnsSource:
    		return hostLookupDNS, dnsConf
    	}
    
    	// Something weird. Fallback to the default.
    	return fallbackOrder, dnsConf
    }
    
    var netdns = godebug.New("netdns")
    
    // goDebugNetDNS parses the value of the GODEBUG "netdns" value.
    // The netdns value can be of the form:
    //
    //	1       // debug level 1
    //	2       // debug level 2
    //	cgo     // use cgo for DNS lookups
    //	go      // use go for DNS lookups
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/runtime/runtime1.go

    	parsegodebug(godebugDefault, seen)
    	// apply defaults for as-yet-unseen variables
    	for _, v := range dbgvars {
    		if v.atomic != nil && !seen[v.name] {
    			v.atomic.Store(0)
    		}
    	}
    }
    
    // parsegodebug parses the godebug string, updating variables listed in dbgvars.
    // If seen == nil, this is startup time and we process the string left to right
    // overwriting older settings with newer ones.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    		return fmt.Errorf("kmsv2 Provider %s is not healthy, error: %w", h.name, err)
    	}
    	return nil
    }
    
    // loadConfig parses the encryption configuration file at filepath and returns the parsed config and hash of the file.
    func loadConfig(filepath string, reload bool) (*apiserver.EncryptionConfiguration, string, error) {
    	data, contentHash, err := loadDataAndHash(filepath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  5. cmd/generic-handlers.go

    	"x-amz-date",
    	"date",
    }
    
    // parseAmzDateHeader - parses supported amz date headers, in
    // supported amz date formats.
    func parseAmzDateHeader(req *http.Request) (time.Time, APIErrorCode) {
    	for _, amzDateHeader := range amzDateHeaders {
    		amzDateStr := req.Header.Get(amzDateHeader)
    		if amzDateStr != "" {
    			t, err := amztime.Parse(amzDateStr)
    			if err != nil {
    				return time.Time{}, ErrMalformedDate
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. pkg/controller/endpointslice/endpointslice_controller.go

    		if endpointSlice.DeletionTimestamp == nil {
    			endpointSlices[n] = endpointSlice
    			n++
    		}
    	}
    	return endpointSlices[:n]
    }
    
    // getEndpointSliceFromDeleteAction parses an EndpointSlice from a delete action.
    func getEndpointSliceFromDeleteAction(obj interface{}) *discovery.EndpointSlice {
    	if endpointSlice, ok := obj.(*discovery.EndpointSlice); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. src/syscall/syscall_aix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Aix 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 (
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. src/net/http/request_test.go

    	"strings"
    	"testing"
    )
    
    func TestQuery(t *testing.T) {
    	req := &Request{Method: "GET"}
    	req.URL, _ = url.Parse("http://www.google.com/search?q=foo&q=bar")
    	if q := req.FormValue("q"); q != "foo" {
    		t.Errorf(`req.FormValue("q") = %q, want "foo"`, q)
    	}
    }
    
    // Issue #25192: Test that ParseForm fails but still parses the form when a URL
    // containing a semicolon is provided.
    func TestParseFormSemicolonSeparator(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  9. src/go/printer/printer_test.go

    	idempotent
    	allowTypeParams
    )
    
    // format parses src, prints the corresponding AST, verifies the resulting
    // src is syntactically correct, and returns the resulting src or an error
    // if any.
    func format(src []byte, mode checkMode) ([]byte, error) {
    	// parse src
    	f, err := parser.ParseFile(fset, "", src, parser.ParseComments)
    	if err != nil {
    		return nil, fmt.Errorf("parse: %s\n%s", err, src)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    }
    
    // Find the compilation device from system device with `DEVICE_CPU` as its
    // type.
    std::string GetTPUCompilationDevice(ParsedDevice system_device) {
      // TODO(b/110910013) GetTPUSystemDevices parses the spec and returns the
      // TPU_SYSTEM device, which we replace with the CPU device. We do this
      // replacement because we want to place the `tf._TPUCompileMlir` explicitly on
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top