Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for oKey (0.12 sec)

  1. guava/src/com/google/common/io/ReaderInputStream.java

      }
    
      // TODO(chrisn): Consider trying to encode/flush directly to the argument byte
      // buffer when possible.
      @Override
      public int read(byte[] b, int off, int len) throws IOException {
        // Obey InputStream contract.
        checkPositionIndexes(off, off + len, b.length);
        if (len == 0) {
          return 0;
        }
    
        // The rest of this method implements the process described by the CharsetEncoder javadoc.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

             * into a repository. In the first case, the result needs to be a proper local repository that one can use for
             * local artifact resolution. In the second case, the result needs to precisely obey the path information of the
             * repository's layout to allow pointing at artifacts within the repository. Unfortunately,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/version/version.go

    // the "Semantic Versioning" specification (http://semver.org/) (although it ignores
    // leading and trailing whitespace, and allows the version to be preceded by "v"). For
    // version strings that are not guaranteed to obey the Semantic Versioning syntax, use
    // ParseGeneric.
    func ParseSemantic(str string) (*Version, error) {
    	return parse(str, true)
    }
    
    // MustParseSemantic is like ParseSemantic except that it panics on error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. src/net/http/roundtrip_js.go

    	// If they aren't set then the documented contract is to use Dial or DialTLS, even
    	// though they are deprecated. Therefore, if any of these are set, we should obey
    	// the contract and dial using the regular round-trip instead. Otherwise, we'll try
    	// to fall back on the Fetch API, unless it's not available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/runtime/asm_s390x.s

    TEXT runtime·setg(SB), NOSPLIT, $0-8
    	MOVD	gg+0(FP), g
    	// This only happens if iscgo, so jump straight to save_g
    	BL	runtime·save_g(SB)
    	RET
    
    // void setg_gcc(G*); set g in C TLS.
    // Must obey the gcc calling convention.
    TEXT setg_gcc<>(SB),NOSPLIT|NOFRAME,$0-0
    	// The standard prologue clobbers LR (R14), which is callee-save in
    	// the C ABI, so we have to use NOFRAME and save LR ourselves.
    	MOVD	LR, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. src/runtime/asm_mipsx.s

    // This only happens if iscgo, so jump straight to save_g
    TEXT runtime·setg(SB),NOSPLIT,$0-4
    	MOVW	gg+0(FP), g
    	JAL	runtime·save_g(SB)
    	RET
    
    // void setg_gcc(G*); set g in C TLS.
    // Must obey the gcc calling convention.
    TEXT setg_gcc<>(SB),NOSPLIT,$0
    	MOVW	R4, g
    	JAL	runtime·save_g(SB)
    	RET
    
    TEXT runtime·abort(SB),NOSPLIT,$0-0
    	UNDEF
    
    // AES hashing not implemented for mips
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/syscall/types_windows.go

    //
    // Pointer-typed fields may point to one of many different types. It's
    // up to the caller to provide a pointer to the appropriate type, cast
    // to Pointer. The caller must obey the unsafe.Pointer rules while
    // doing so.
    type Pointer *struct{}
    
    // Invented values to support what package os expects.
    type Timeval struct {
    	Sec  int32
    	Usec int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_ppc64x.s

    TEXT runtime·cgoSigtramp(SB),NOSPLIT|NOFRAME,$0
    	// The stack unwinder, presumably written in C, may not be able to
    	// handle Go frame correctly. So, this function is NOFRAME, and we
    	// save/restore LR manually, and obey ELFv2 calling conventions.
    	MOVD	LR, R10
    
    	// We're coming from C code, initialize R0
    	MOVD	$0, R0
    
    	// If no traceback function, do usual sigtramp.
    	MOVD	runtime·cgoTraceback(SB), R6
    	CMP	$0, R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    	// EncodeParameters encodes the provided object as query parameters or returns an error.
    	EncodeParameters(obj Object, to schema.GroupVersion) (url.Values, error)
    }
    
    // Framer is a factory for creating readers and writers that obey a particular framing pattern.
    type Framer interface {
    	NewFrameReader(r io.ReadCloser) io.ReadCloser
    	NewFrameWriter(w io.Writer) io.Writer
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableSortedMultiset.java

     * equals</i>. That is, {@code a.compareTo(b)} or {@code comparator.compare(a, b)} should equal zero
     * <i>if and only if</i> {@code a.equals(b)}. If this advice is not followed, the resulting
     * collection will not correctly obey its specification.
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/ImmutableCollectionsExplained">immutable collections</a>.
     *
     * @author Louis Wasserman
     * @since 12.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top