Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 420 for Parses (0.16 sec)

  1. android/guava/src/com/google/common/primitives/Doubles.java

        fpPattern =
            fpPattern.replace(
                "#",
                "+"
                );
        return
        java.util.regex.Pattern
            .compile(fpPattern);
      }
    
      /**
       * Parses the specified string as a double-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
    - 27.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/Doubles.java

        fpPattern =
            fpPattern.replace(
                "#",
                "+"
                );
        return
        java.util.regex.Pattern
            .compile(fpPattern);
      }
    
      /**
       * Parses the specified string as a double-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
    - 27.3K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/authentication.go

    		if o.ServiceAccounts.JWKSURI != "" {
    			if u, err := url.Parse(o.ServiceAccounts.JWKSURI); err != nil {
    				allErrors = append(allErrors, fmt.Errorf("service-account-jwks-uri must be a valid URL: %v", err))
    			} else if u.Scheme != "https" {
    				allErrors = append(allErrors, fmt.Errorf("service-account-jwks-uri requires https scheme, parsed as: %v", u.String()))
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. pkg/kubelet/container/runtime.go

    	return name + "_" + namespace
    }
    
    // ParsePodFullName parsed the pod full name.
    func ParsePodFullName(podFullName string) (string, string, error) {
    	parts := strings.Split(podFullName, "_")
    	if len(parts) != 2 || parts[0] == "" || parts[1] == "" {
    		return "", "", fmt.Errorf("failed to parse the pod full name %q", podFullName)
    	}
    	return parts[0], parts[1], nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

          SymbolTable(module).insert(lowered_callee);
          callee = lowered_callee;
        }
      }
      if (info.signature_change) return recreate_caller();
      return success();
    }
    
    // Parses an R1 value to `shape` if it is a TF::ConstOp output. Otherwise,
    // returns an error.
    LogicalResult GetConstShapeValue(Value shape_value,
                                     llvm::SmallVector<int64_t, 8>* shape) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/fetch.go

    // A bug caused us to write these into go.sum files for non-modules.
    // We detect and remove them.
    const emptyGoModHash = "h1:G7mAYYxgmS0lVkHyy2hEOLQCFB0DlQFTMLWggykrydY="
    
    // readGoSum parses data, which is the content of file,
    // and adds it to goSum.m. The goSum lock must be held.
    func readGoSum(dst map[module.Version][]string, file string, data []byte) {
    	lineno := 0
    	for len(data) > 0 {
    		var line []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/encoding/xml/xml.go

    }
    
    // A Decoder represents an XML parser reading a particular input stream.
    // The parser assumes that its input is encoded in UTF-8.
    type Decoder struct {
    	// Strict defaults to true, enforcing the requirements
    	// of the XML specification.
    	// If set to false, the parser allows input containing common
    	// mistakes:
    	//	* If an element is missing an end tag, the parser invents
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top