Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 134 for interop (0.15 sec)

  1. test/cmp.go

    type X int
    
    func (X) x() {}
    
    func main() {
    	var a []int
    	var b map[string]int
    
    	var c string = "hello"
    	var d string = "hel" // try to get different pointer
    	d = d + "lo"
    
    	// go.tools/ssa/interp can't handle unsafe.Pointer.
    	if os.Getenv("GOSSAINTERP") == "" {
    		if stringptr(c) == stringptr(d) {
    			panic("compiler too smart -- got same string")
    		}
    	}
    
    	var e = make(chan int)
    
    	var ia interface{} = a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 26 03:38:21 UTC 2015
    - 7.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Utf8.java

          }
        }
        return true;
      }
    
      private static boolean isWellFormedSlowPath(byte[] bytes, int off, int end) {
        int index = off;
        while (true) {
          int byte1;
    
          // Optimize for interior runs of ASCII bytes.
          do {
            if (index >= end) {
              return true;
            }
          } while ((byte1 = bytes[index++]) >= 0);
    
          if (byte1 < (byte) 0xE0) {
            // Two-byte form.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 14:11:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Utf8.java

          }
        }
        return true;
      }
    
      private static boolean isWellFormedSlowPath(byte[] bytes, int off, int end) {
        int index = off;
        while (true) {
          int byte1;
    
          // Optimize for interior runs of ASCII bytes.
          do {
            if (index >= end) {
              return true;
            }
          } while ((byte1 = bytes[index++]) >= 0);
    
          if (byte1 < (byte) 0xE0) {
            // Two-byte form.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 14:11:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom

          <email>******@****.***</email>
          <roles>
            <role>Developer</role>
          </roles>
        </developer>
        <developer>
          <id>michal</id>
          <name>Michal Maczka</name>
          <email>mmaczka@interia.pl</email>
          <roles>
            <role>Developer</role>
          </roles>
        </developer>
        <developer>
          <id>evenisse</id>
          <name>Emmanuel Venisse</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  5. src/encoding/ascii85/ascii85.go

    		p = p[i:]
    		if e.nbuf < 4 {
    			return
    		}
    		nout := Encode(e.out[0:], e.buf[0:])
    		if _, e.err = e.w.Write(e.out[0:nout]); e.err != nil {
    			return n, e.err
    		}
    		e.nbuf = 0
    	}
    
    	// Large interior chunks.
    	for len(p) >= 4 {
    		nn := len(e.out) / 5 * 4
    		if nn > len(p) {
    			nn = len(p)
    		}
    		nn -= nn % 4
    		if nn > 0 {
    			nout := Encode(e.out[0:], p[0:nn])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/query-params-str-validations.md

    ```
    
    !!! note "Observação"
        Tenha em mente que neste caso, o FastAPI não irá validar os conteúdos da lista.
    
        Por exemplo, um `List[int]` iria validar (e documentar) que os contéudos da lista são números inteiros. Mas apenas `list` não.
    
    ## Declarando mais metadados
    
    Você pode adicionar mais informações sobre o parâmetro.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
    
      <!-- =================================================================== -->
      <!-- Microsoft Office binary file formats                                -->
      <!-- http://www.microsoft.com/interop/docs/OfficeBinaryFormats.mspx      -->
      <!-- =================================================================== -->
      <mime-type type="application/x-tika-msoffice">
        <magic priority="40">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/path-params.md

    	Novamente, apenas com a mesma declaração de tipo do Python, o **FastAPI** te dá de forma automática e interativa a documentação (integrada com o Swagger UI).
    
    	Veja que o parâmetro de rota está declarado como sendo um inteiro (int).
    
    ## Beneficios baseados em padrões, documentação alternativa
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      // the merged pad will not change anything, while the un-merged will remove a
      // value, then insert a 0 at its place. This only holds for low and high pads,
      // the spec does not allow negative interior pads, so we don't check there.
      auto low_pads = pad_op.getEdgePaddingLow().getValues<IntegerAttr>();
      auto parent_low_pads =
          parent_pad.getEdgePaddingLow().getValues<IntegerAttr>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    		}
    		if strings.Contains(text, "//go:build") {
    			check.goBuildLine(pos, text)
    		}
    	}
    	if strings.HasPrefix(text, "/*") {
    		if i := strings.Index(text, "\n"); i >= 0 {
    			// multiline /* */ comment - process interior lines
    			check.inStar = true
    			i++
    			pos += token.Pos(i)
    			text = text[i:]
    			for text != "" {
    				i := strings.Index(text, "\n")
    				if i < 0 {
    					i = len(text)
    				} else {
    					i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top