Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 134 for interop (0.28 sec)

  1. src/debug/elf/file_test.go

    		FileHeader{ELFCLASS32, ELFDATA2LSB, EV_CURRENT, ELFOSABI_FREEBSD, 0, binary.LittleEndian, ET_EXEC, EM_386, 0x80483cc},
    		[]SectionHeader{
    			{"", SHT_NULL, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0},
    			{".interp", SHT_PROGBITS, SHF_ALLOC, 0x80480d4, 0xd4, 0x15, 0x0, 0x0, 0x1, 0x0, 0x15},
    			{".hash", SHT_HASH, SHF_ALLOC, 0x80480ec, 0xec, 0x90, 0x3, 0x0, 0x4, 0x4, 0x90},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    		// No change to our present, so no update of config file.
    		return nil
    	}
    
    	// Flush our extended timeline back out to the configuration file.
    	// If the configuration file has been updated in the interim,
    	// we need to merge any updates made there as well.
    	// Note that writeConfig is an atomic compare-and-swap.
    	for {
    		msg, err := c.ops.ReadConfig(c.name + "/latest")
    		if err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. src/encoding/base64/base64.go

    		p = p[i:]
    		if e.nbuf < 3 {
    			return
    		}
    		e.enc.Encode(e.out[:], e.buf[:])
    		if _, e.err = e.w.Write(e.out[:4]); e.err != nil {
    			return n, e.err
    		}
    		e.nbuf = 0
    	}
    
    	// Large interior chunks.
    	for len(p) >= 3 {
    		nn := len(e.out) / 4 * 3
    		if nn > len(p) {
    			nn = len(p)
    			nn -= nn % 3
    		}
    		e.enc.Encode(e.out[:], p[:nn])
    		if _, e.err = e.w.Write(e.out[0 : nn/3*4]); e.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/inline.go

    look for link or image:
    
    	find topmost [ or ![
    	if none, emit literal ]
    	if its inactive, remove and emit literal ]
    	parse ahead to look for rest of link; if none, remove and emit literal ]
    	run process emphasis on the interior,
    	remove opener
    	if this was a link (not an image), set all [ before opener to inactive, to avoid links inside links
    
    process emphasis
    
    	walk forward in list to find a closer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. docs/pt/docs/alternatives.md

    Ele também não controla modelos aninhados muito bem. Então, se o corpo JSON na requisição for um objeto JSON que contém campos internos que contém objetos JSON aninhados, ele não consegue ser validado e documentado apropriadamente.
    
    !!! check "**FastAPI** inspirado para"
        Usar tipos Python para ter um ótimo suporte do editor.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize/quantize_same_scale.mlir

        %8 = "quantfork.dcast"(%7) : (tensor<!quant.uniform<i8:f32, 0.13170163023705575:-1>>) -> tensor<f32>
        %9 = stablehlo.pad %6, %8, low = [0, 1], high = [2, 1], interior = [0, 2] : (tensor<1x3xf32>, tensor<f32>) -> tensor<3x9xf32>
        %10 = "quantfork.qcast"(%9) {volatile} : (tensor<3x9xf32>) -> tensor<3x9x!quant.uniform<i8:f32, 0.13170163023705575:-1>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

            /*fused_activation_function=*/rewriter.getStringAttr("NONE"));
      }
    };
    
    // Rewrites quantized stablehlo.pad to tfl.padv2.
    // tfl.dilate is introduced in between when interior padding exists.
    // TODO: b/322428814 - Add StableHLO quantizer integration tests for ODML.
    class RewriteQuantizedPadOp : public OpRewritePattern<stablehlo::PadOp> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. src/go/ast/ast.go

    		// Walk lines, stripping trailing white space and adding to list.
    		for _, l := range cl {
    			lines = append(lines, stripTrailingWhitespace(l))
    		}
    	}
    
    	// Remove leading blank lines; convert runs of
    	// interior blank lines to a single blank line.
    	n := 0
    	for _, line := range lines {
    		if line != "" || n > 0 && lines[n-1] != "" {
    			lines[n] = line
    			n++
    		}
    	}
    	lines = lines[0:n]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux.go

    		word := *((*uintptr)(unsafe.Pointer(&buf[0])))
    		err = ptrace(pokeReq, pid, addr-addr%sizeofPtr, word)
    		if err != nil {
    			return 0, err
    		}
    		data = data[n:]
    	}
    
    	// Interior.
    	for len(data) > sizeofPtr {
    		word := *((*uintptr)(unsafe.Pointer(&data[0])))
    		err = ptrace(pokeReq, pid, addr+uintptr(n), word)
    		if err != nil {
    			return n, err
    		}
    		n += sizeofPtr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.igloader",
    				"application/vnd.immervision-ivp",
    				"application/vnd.immervision-ivu",
    				"application/vnd.informedcontrol.rms+xml",
    				"application/vnd.informix-visionary",
    				"application/vnd.intercon.formnet",
    				"application/vnd.intertrust.digibox",
    				"application/vnd.intertrust.nncp",
    				"application/vnd.intu.qbo",
    				"application/vnd.intu.qfx",
    				"application/vnd.iptc.g2.conceptitem+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
Back to top