Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DropUse (0.12 sec)

  1. src/cmd/go/internal/workcmd/edit.go

    			base.Fatalf("go: -use=%s: %v", arg, err)
    		}
    	})
    }
    
    // flagEditworkDropUse implements the -dropuse flag.
    func flagEditworkDropUse(arg string) {
    	workedits = append(workedits, func(f *modfile.WorkFile) {
    		if err := f.DropUse(modload.ToDirectoryPath(arg)); err != nil {
    			base.Fatalf("go: -dropdirectory=%s: %v", arg, err)
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. docs/fr/docs/features.md

    * <a href="https://github.com/swagger-api/swagger-ui" class="external-link" target="_blank"><strong>Swagger UI</strong></a>, propose une documentation interactive. Vous permet de directement tester l'API depuis votre navigateur.
    
    ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. docs/en/docs/help-fastapi.md

    * To help [translate the documentation](contributing.md#translations){.internal-link target=_blank} to your language.
        * You can also help to review the translations created by others.
    * To propose new documentation sections.
    * To fix an existing issue/bug.
        * Make sure to add tests.
    * To add a new feature.
        * Make sure to add tests.
        * Make sure to add documentation if it's relevant.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/object.go

    		typ = sig
    	} else {
    		// Don't store a (typed) nil *Signature.
    		// We can't simply replace it with new(Signature) either,
    		// as this would violate object.{Type,color} invariants.
    		// TODO(adonovan): propose to disallow NewFunc with nil *Signature.
    	}
    	return &Func{object{nil, pos, pkg, name, typ, 0, colorFor(typ), nopos}, false, nil}
    }
    
    // Signature returns the signature (type) of the function or method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. src/go/types/object.go

    		typ = sig
    	} else {
    		// Don't store a (typed) nil *Signature.
    		// We can't simply replace it with new(Signature) either,
    		// as this would violate object.{Type,color} invariants.
    		// TODO(adonovan): propose to disallow NewFunc with nil *Signature.
    	}
    	return &Func{object{nil, pos, pkg, name, typ, 0, colorFor(typ), nopos}, false, nil}
    }
    
    // Signature returns the signature (type) of the function or method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top