Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 567 for goio (0.04 sec)

  1. test/fixedbugs/bug345.dir/main.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"bufio"
    	goio "io"
    
    	"./io"
    )
    
    func main() {
    	// The errors here complain that io.X != io.X
    	// for different values of io so they should be
    	// showing the full import path, which for the
    	// "./io" import is really ..../go/test/io.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 19 06:26:35 UTC 2021
    - 978 bytes
    - Viewed (0)
  2. test/goto.go

    		goto L
    	}
    }
    
    // goto into inner block not okay
    func _() {
    	goto L // ERROR "goto L jumps into block starting at LINE+1|goto jumps into block"
    	{      // GCCGO_ERROR "block starts here"
    	L:
    	}
    }
    
    // goto backward into inner block still not okay
    func _() {
    	{ // GCCGO_ERROR "block starts here"
    	L:
    	}
    	goto L // ERROR "goto L jumps into block starting at LINE-3|goto jumps into block"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 02:27:58 UTC 2017
    - 8.4K bytes
    - Viewed (0)
  3. releasenotes/notes/gogo-protobuf.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: extensibility
    issue:
    - 26751
    
    upgradeNotes:
    - title: gogo/protobuf library migration
      content: |
        The `istio.io/api` and `istio.io/client-go` libraries have switched from using the [gogo/protobuf](https://github.com/gogo/protobuf)
        to using the [golang/protobuf](https://github.com/golang/protobuf) library for API types.
        
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 25 00:08:22 UTC 2022
    - 775 bytes
    - Viewed (0)
  4. docs/vi/docs/python-types.md

    **FastAPI** hoàn toàn được dựa trên những gợi ý kiểu dữ liệu, chúng mang đến nhiều ưu điểm và lợi ích.
    
    Nhưng thậm chí nếu bạn không bao giờ sử dụng **FastAPI**, bạn sẽ được lợi từ việc học một ít về chúng.
    
    !!! note
        Nếu bạn là một chuyên gia về Python, và bạn đã biết mọi thứ về gợi ý kiểu dữ liệu, bỏ qua và đi tới chương tiếp theo.
    
    ## Động lực
    
    Hãy bắt đầu với một ví dụ đơn giản:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. docs/vi/docs/tutorial/first-steps.md

    Thông thường, bạn sử dụng
    
    * `POST`: để tạo dữ liệu.
    * `GET`: để đọc dữ liệu.
    * `PUT`: để cập nhật dữ liệu.
    * `DELETE`: để xóa dữ liệu.
    
    Do đó, trong OpenAPI, mỗi phương thức HTTP được gọi là một "toán tử (operation)".
    
    Chúng ta cũng sẽ gọi chúng là "**các toán tử**".
    
    #### Định nghĩa moojt *decorator cho đường dẫn toán tử*
    
    ```Python hl_lines="6"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Sep 02 15:44:17 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/gotos.go

    L:
    }
    
    // goto into outer block okay
    func _() {
    	{
    		goto L
    	}
    L:
    }
    
    func _() {
    	{
    		goto L
    		goto L1
    	}
    L: L1:
    }
    
    // goto backward into outer block okay
    func _() {
    L:
    	{
    		goto L
    	}
    }
    
    func _() {
    L: L1:
    	{
    		goto L
    		goto L1
    	}
    }
    
    // goto into inner block not okay
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. src/internal/trace/reader.go

    	//   (c) If there's nothing left to advance, goto (1).
    	// (6) Select the latest event for the selected M and get it ready to be returned.
    	// (7) Read the next event for the selected M and update the min-heap.
    	// (8) Return the selected event, goto (5) on the next call.
    
    	// Set us up to track the last timestamp and fix up
    	// the timestamp of any event that comes through.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. apache-maven/src/assembly/shared/init.cmd

    :stripPomDir
    if not "_%POM_DIR:~-1%"=="_\" goto pomDirStripped
    set "POM_DIR=%POM_DIR:~0,-1%"
    goto stripPomDir
    :pomDirStripped
    exit /b
    
    :findBaseDir
    cd /d "%WDIR%"
    set "WDIR=%CD%"
    :findBaseDirLoop
    if exist ".mvn" goto baseDirFound
    cd ..
    IF "%WDIR%"=="%CD%" goto baseDirNotFound
    set "WDIR=%CD%"
    goto findBaseDirLoop
    
    :baseDirFound
    set "MAVEN_PROJECTBASEDIR=%WDIR%"
    cd /d "%EXEC_DIR%"
    goto endDetectBaseDir
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 16 21:35:28 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/dom_test.go

    			Goto("b28")),
    		Bloc("b29",
    			Goto("b31")),
    		Bloc("b31",
    			Goto("b28")),
    		Bloc("b28",
    			If("p", "b32", "b33")),
    		Bloc("b32",
    			Goto("b21")),
    		Bloc("b21",
    			Goto("b47")),
    		Bloc("b47",
    			If("p", "b45", "b46")),
    		Bloc("b45",
    			Goto("b48")),
    		Bloc("b48",
    			Goto("b49")),
    		Bloc("b49",
    			If("p", "b50", "b51")),
    		Bloc("b50",
    			Goto("b52")),
    		Bloc("b52",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. test/fixedbugs/issue8042.go

    // are accepted.
    
    package p
    
    func f1() {
    	goto L1
    	const x = 0
    L1:
    	goto L2
    	type T int
    L2:
    }
    
    func f2() {
    	{
    		goto L1
    	}
    	const x = 0
    L1:
    	{
    		goto L2
    	}
    	type T int
    L2:
    }
    
    func f3(d int) {
    	if d > 0 {
    		goto L1
    	} else {
    		goto L2
    	}
    	const x = 0
    L1:
    	switch d {
    	case 1:
    		goto L3
    	case 2:
    	default:
    		goto L4
    	}
    	type T1 int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:41:07 UTC 2021
    - 691 bytes
    - Viewed (0)
Back to top