Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for elide (0.22 sec)

  1. src/net/netip/netip_test.go

    		},
    		// IPv6 with elided fields in the middle.
    		{
    			in: "fd7a:115c::626b:430b",
    			ip: MkAddr(Mk128(0xfd7a115c00000000, 0x00000000626b430b), Z6noz),
    		},
    		// IPv6 with elided fields at the end.
    		{
    			in: "fd7a:115c:a1e0:ab12:4843:cd96::",
    			ip: MkAddr(Mk128(0xfd7a115ca1e0ab12, 0x4843cd9600000000), Z6noz),
    		},
    		// IPv6 with single elided field at the end.
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  2. src/runtime/arena.go

    // addresses. The reason for this is to take advantage of a GC optimization wherein
    // the GC will stop scanning an object when there are no more pointers in it, which
    // also allows us to elide clearing the heap bitmap for pointer-free Go values
    // allocated into arenas.
    //
    // Note that arenas are not safe to use concurrently.
    //
    // In summary, there are 2 resources: arenas, and arena chunks. They exist in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  3. src/net/netip/netip.go

    	return ret
    }
    
    // string6 formats ip in IPv6 textual representation. It follows the
    // guidelines in section 4 of RFC 5952
    // (https://tools.ietf.org/html/rfc5952#section-4): no unnecessary
    // zeros, use :: to elide the longest run of zeros, and don't use ::
    // to compact a single zero field.
    func (ip Addr) string6() string {
    	// Use a zone with a "plausibly long" name, so that most zone-ful
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    			//
    			// Instead, we'll inject a fake "vendor/modules.txt" module that provides
    			// those transitive dependencies, and mark it as a dependency of the main
    			// module. That allows us to elide the actual structure of the module
    			// graph, but still distinguishes between direct and indirect
    			// dependencies.
    			vendorMod := module.Version{Path: "vendor/modules.txt", Version: ""}
    			if inWorkspaceMode() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // absorb InvertFlags into boolean values
    ((Equal|NotEqual|LessThan|GreaterThan|LessEqual|GreaterEqual) (InvertFlags x)) => ((Equal|NotEqual|GreaterThan|LessThan|GreaterEqual|LessEqual) x)
    
    
    // Elide compares of bit tests
    ((EQ|NE|LT|LE|GT|GE) (CMPconst [0] z:(AND x y)) yes no) && z.Uses == 1 => ((EQ|NE|LT|LE|GT|GE) (Select1 <types.TypeFlags> (ANDCC x y)) yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  6. doc/go_spec.html

    <p>
    Within a composite literal of array, slice, or map type <code>T</code>,
    elements or map keys that are themselves composite literals may elide the respective
    literal type if it is identical to the element or key type of <code>T</code>.
    Similarly, elements or keys that are addresses of composite literals may elide
    the <code>&amp;T</code> when the element or key type is <code>*T</code>.
    </p>
    
    <pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  7. src/cmd/go/internal/work/exec.go

    func (b *Builder) ccompile(a *Action, outfile string, flags []string, file string, compiler []string) error {
    	p := a.Package
    	sh := b.Shell(a)
    	file = mkAbs(p.Dir, file)
    	outfile = mkAbs(p.Dir, outfile)
    
    	// Elide source directory paths if -trimpath is set.
    	// This is needed for source files (e.g., a .c file in a package directory).
    	// TODO(golang.org/issue/36072): cgo also generates files with #line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      return ConstBytesAttr::get(parser.getBuilder().getContext(), bytes_data);
    }
    
    void ConstBytesAttr::print(mlir::AsmPrinter& printer) const {
      StringRef bytes_str = getValue();
      // Elide the attribute if flag is set.
      std::optional<int64_t> limit = OpPrintingFlags().getLargeElementsAttrLimit();
      printer << " : \"";
      if (limit && limit.value() < bytes_str.size()) {
        printer << "__elided__";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.proto

      // Name represents the name for the workload.
      // For Kubernetes, this is the pod name.
      // This is just for debugging and may be elided as an optimization.
      string name = 1;
      // Namespace represents the namespace for the workload.
      // This is just for debugging and may be elided as an optimization.
      string namespace = 2;
    
      // Address represents the IPv4/IPv6 address for the workload.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Don't zero the same bits twice.
    (Zero {t} [s] dst1 zero:(Zero {t} [s] dst2 _)) && isSamePtr(dst1, dst2) => zero
    (Zero {t} [s] dst1 vardef:(VarDef (Zero {t} [s] dst2 _))) && isSamePtr(dst1, dst2) => vardef
    
    // Elide self-moves. This only happens rarely (e.g test/fixedbugs/bug277.go).
    // However, this rule is needed to prevent the previous rule from looping forever in such cases.
    (Move dst src mem) && isSamePtr(dst, src) => mem
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top