Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 420 for Parses (0.14 sec)

  1. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    		}
    	}
    	return altNames, nil
    }
    
    // appendSANsToAltNames parses SANs from as list of strings and adds them to altNames for use on a specific cert
    // altNames is passed in with a pointer, and the struct is modified
    // valid IP address strings are parsed and added to altNames.IPs as net.IP's
    // RFC-1123 compliant DNS strings are added to altNames.DNSNames as strings
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	"strconv"
    	"strings"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    )
    
    const Doc = "report mismatches between assembly files and Go declarations"
    
    var Analyzer = &analysis.Analyzer{
    	Name: "asmdecl",
    	Doc:  Doc,
    	URL:  "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/asmdecl",
    	Run:  run,
    }
    
    // 'kind' is a kind of assembly variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  3. 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)
  4. android/guava/src/com/google/common/primitives/Floats.java

        }
    
        float[] toFloatArray() {
          return Arrays.copyOfRange(array, start, end);
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /**
       * Parses the specified string as a single-precision floating point value. The ASCII character
       * {@code '-'} (<code>'&#92;u002D'</code>) is recognized as the minus sign.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Floats.java

        }
    
        float[] toFloatArray() {
          return Arrays.copyOfRange(array, start, end);
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /**
       * Parses the specified string as a single-precision floating point value. The ASCII character
       * {@code '-'} (<code>'&#92;u002D'</code>) is recognized as the minus sign.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	return &input{
    		filename:  filename,
    		complete:  data,
    		remaining: data,
    		pos:       Position{Line: 1, LineRune: 1, Byte: 0},
    	}
    }
    
    // parse parses the input file.
    func parse(file string, data []byte) (f *FileSyntax, err error) {
    	// The parser panics for both routine errors like syntax errors
    	// and for programmer bugs like array index errors.
    	// Turn both into error returns. Catching bug panics is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. 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)
  8. schema/field.go

    	// It causes field unnecessarily migration.
    	// Therefore, we need to record the UniqueIndex on this column (exclude Mul UniqueIndex) for MigrateColumnUnique.
    	UniqueIndex string
    }
    
    func (field *Field) BindName() string {
    	return strings.Join(field.BindNames, ".")
    }
    
    // ParseField parses reflect.StructField to Field
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. src/internal/abi/type.go

    	return (*n.Bytes)&(1<<1) != 0
    }
    
    // IsEmbedded returns true iff n is embedded (an anonymous field).
    func (n Name) IsEmbedded() bool {
    	return (*n.Bytes)&(1<<3) != 0
    }
    
    // ReadVarint parses a varint as encoded by encoding/binary.
    // It returns the number of encoded bytes and the encoded value.
    func (n Name) ReadVarint(off int) (int, int) {
    	v := 0
    	for i := 0; ; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. src/cmd/cgo/doc.go

    	const char __cgodebug_str__10[] = s10;
    	const unsigned long long __cgodebug_strlen__10 = sizeof(s10)-1;
    
    and again invokes the system C compiler, to produce an object file
    containing debug information. Cgo parses the DWARF debug information
    for __cgo__N to learn the type of each identifier. (The types also
    distinguish functions from global variables.) Cgo reads the constant
    values from the __cgodebug_* from the object file's data segment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top