Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for sheugh (0.11 sec)

  1. src/cmd/cgo/doc.go

    	// #include <stdio.h>
    	// #include <errno.h>
    	import "C"
    
    The preamble may contain any C code, including function and variable
    declarations and definitions. These may then be referred to from Go
    code as though they were defined in the package "C". All names
    declared in the preamble may be used, even if they start with a
    lower-case letter. Exception: static variables in the preamble may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/BaseEncoding.java

     *
     * <p>...returns the ASCII bytes of the string {@code "foo"}.
     *
     * <p>By default, {@code BaseEncoding}'s behavior is relatively strict and in accordance with RFC
     * 4648. Decoding rejects characters in the wrong case, though padding is optional. To modify
     * encoding and decoding behavior, use configuration methods to obtain a new encoding with modified
     * behavior:
     *
     * <pre>{@code
     * BaseEncoding.base16().lowerCase().decode("deadbeef");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug_test.go

    // and debugger were behaving properly, the inlined code and repeated lines would not appear,
    // so the expected output is closer to what we hope to see, though it also encodes all our
    // current bugs.
    //
    // The file being tested may contain comments of the form
    // //DBG-TAG=(v1,v2,v3)
    // where DBG = {gdb,dlv} and TAG={dbg,opt}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/CompactHashMap.java

             */
            return uncheckedCastNullableTToT(delegate.get(key));
          }
          updateLastKnownIndex();
          /*
           * If the entry has been removed from the map, we return null, even though that might not be a
           * valid value. That's the best we can do, short of holding a reference to the most recently
           * seen value. And while we *could* do that, we aren't required to: Map.Entry explicitly says
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/BaseEncoding.java

     *
     * <p>...returns the ASCII bytes of the string {@code "foo"}.
     *
     * <p>By default, {@code BaseEncoding}'s behavior is relatively strict and in accordance with RFC
     * 4648. Decoding rejects characters in the wrong case, though padding is optional. To modify
     * encoding and decoding behavior, use configuration methods to obtain a new encoding with modified
     * behavior:
     *
     * <pre>{@code
     * BaseEncoding.base16().lowerCase().decode("deadbeef");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/typecheck.go

    		np = &dot.X // peel away method selector
    	}
    
    	// Check for side effects in the callee expression.
    	// We explicitly special case new(T) though, because it doesn't have
    	// observable side effects, and keeping it in place allows better escape analysis.
    	if !ir.Any(*np, func(n ir.Node) bool { return n.Op() != ir.ONEW && callOrChan(n) }) {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/buildid.go

    	c := cache.Default()
    
    	// Cache output from compile/link, even if we don't do the rest.
    	switch a.Mode {
    	case "build":
    		cache.PutBytes(c, cache.Subkey(a.actionID, "stdout"), a.output)
    	case "link":
    		// Even though we don't cache the binary, cache the linker text output.
    		// We might notice that an installed binary is up-to-date but still
    		// want to pretend to have run the linker.
    		// Store it under the main package's action ID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/issues_test.go

    	const src = `
    //go:build go1.18
    package p
    
    func f[S ~[]E, E any](S) {}
    
    func _() {
    	f([]string{})
    }
    `
    	// Per the go:build directive, the source must typecheck
    	// even though the (module) Go version is set to go1.17.
    	conf := Config{GoVersion: "go1.17"}
    	mustTypecheck(src, &conf, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/unify.go

    	// are valid underlying types and may appear as core types of type constraints.
    	// If we exclude them, inferred defined types for type parameters may not
    	// match against the core types of their constraints (even though they might
    	// correctly match against some of the types in the constraint's type set).
    	// Finally, if unification (incorrectly) succeeds by matching the underlying
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/InetAddresses.java

       * remaining 32 bits interpreted as an IPv4 address. These are conventionally represented in
       * string literals as {@code "::192.168.0.1"}, though {@code "::c0a8:1"} is also considered an
       * IPv4 compatible address (and equivalent to {@code "::192.168.0.1"}).
       *
       * <p>For more on IPv4 compatible addresses see section 2.5.5.1 of <a target="_parent"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top