Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 837 for provider (0.22 sec)

  1. src/math/big/doc.go

    argument x, [NewRat](a, b) returns a *[Rat] set to the fraction a/b where
    a and b are int64 values, and [NewFloat](f) returns a *[Float] initialized
    to the float64 argument f. More flexibility is provided with explicit
    setters, for instance:
    
    	var z1 Int
    	z1.SetUint64(123)                 // z1 := 123
    	z2 := new(Rat).SetFloat64(1.25)   // z2 := 5/4
    	z3 := new(Float).SetInt(z1)       // z3 := 123.0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/fmt/doc.go

    without a format or with the %v verb, as are digit-separating
    underscores.
    
    Width is interpreted in the input text but there is no
    syntax for scanning with a precision (no %5.2f, just %5f).
    If width is provided, it applies after leading spaces are
    trimmed and specifies the maximum number of runes to read
    to satisfy the verb. For example,
    
    	Sscanf(" 1234567 ", "%5s%d", &s, &i)
    
    will set s to "12345" and i to 67 while
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. src/crypto/cipher/cipher.go

    // See https://csrc.nist.gov/groups/ST/toolkit/BCM/current_modes.html
    // and NIST Special Publication 800-38A.
    package cipher
    
    // A Block represents an implementation of block cipher
    // using a given key. It provides the capability to encrypt
    // or decrypt individual blocks. The mode implementations
    // extend that capability to streams of blocks.
    type Block interface {
    	// BlockSize returns the cipher's block size.
    	BlockSize() int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/README

    	Note that 'exec' does not terminate the script (unlike Unix
    	shells).
    
    exists [-readonly] [-exec] file...
    	check that files exist
    
    
    go [args...] [&]
    	run the 'go' program provided by the script host
    
    
    grep [-count=N] [-q] 'pattern' file
    	find lines in a file that match a pattern
    
    	The command succeeds if at least one match (or the exact
    	count, if given) is found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    // license that can be found in the LICENSE file.
    
    // TODO(jba) deduce which functions wrap the log/slog functions, and use the
    // fact mechanism to propagate this information, so we can provide diagnostics
    // for user-supplied wrappers.
    
    package slog
    
    import (
    	_ "embed"
    	"fmt"
    	"go/ast"
    	"go/token"
    	"go/types"
    
    	"golang.org/x/tools/go/analysis"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/syscall/types_linux.go

    		|| (defined(__mips__) && _MIPS_SIM == _MIPS_SIM_ABI64) || defined(__loongarch64)
    	int32_t _padFd;
    #endif
    	int32_t fd;
    	int32_t pad;
    };
    
    // ustat is deprecated and glibc 2.28 removed ustat.h. Provide the type here for
    // backwards compatibility. Copied from /usr/include/bits/ustat.h
    struct ustat {
    	__daddr_t f_tfree;
    	__ino_t f_tinode;
    	char f_fname[6];
    	char f_fpack[6];
    };
    
    */
    import "C"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  7. src/net/url/url.go

    	RawFragment string    // encoded fragment hint (see EscapedFragment method)
    }
    
    // User returns a [Userinfo] containing the provided username
    // and no password set.
    func User(username string) *Userinfo {
    	return &Userinfo{username, "", false}
    }
    
    // UserPassword returns a [Userinfo] containing the provided username
    // and password.
    //
    // This functionality should only be used with legacy web sites.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  8. src/cmd/covdata/merge.go

    	pcombineflag = flag.Bool("pcombine", false, "Combine profiles derived from distinct program executables")
    	m := &mstate{
    		mm: newMetaMerge(),
    	}
    	return m
    }
    
    // mstate encapsulates state and provides methods for implementing the
    // merge operation. This type implements the CovDataVisitor interface,
    // and is designed to be used in concert with the CovDataReader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/internal/quoted/quoted.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package quoted provides string manipulation utilities.
    package quoted
    
    import (
    	"flag"
    	"fmt"
    	"strings"
    	"unicode"
    )
    
    func isSpaceByte(c byte) bool {
    	return c == ' ' || c == '\t' || c == '\n' || c == '\r'
    }
    
    // Split splits s into a list of fields,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:04:06 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. src/debug/pe/section.go

    	Offset               uint32
    	PointerToRelocations uint32
    	PointerToLineNumbers uint32
    	NumberOfRelocations  uint16
    	NumberOfLineNumbers  uint16
    	Characteristics      uint32
    }
    
    // Section provides access to PE COFF section.
    type Section struct {
    	SectionHeader
    	Relocs []Reloc
    
    	// Embed ReaderAt for ReadAt method.
    	// Do not embed SectionReader directly
    	// to avoid having Read and Seek.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top