Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 110 for inState (0.51 sec)

  1. src/cmd/internal/obj/dwarf.go

    		UseBASEntries: ctxt.UseBASEntries,
    	}
    	if absfunc != nil {
    		err = dwarf.PutAbstractFunc(dwctxt, fnstate)
    		if err != nil {
    			ctxt.Diag("emitting DWARF for %s failed: %v", s.Name, err)
    		}
    		err = dwarf.PutConcreteFunc(dwctxt, fnstate, s.Wrapper())
    	} else {
    		err = dwarf.PutDefaultFunc(dwctxt, fnstate, s.Wrapper())
    	}
    	if err != nil {
    		ctxt.Diag("emitting DWARF for %s failed: %v", s.Name, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/index.md

    Usá-lo em seu editor é o que realmente te mostra os benefícios do FastAPI, ver quão pouco código você tem que escrever, todas as conferências de tipo, auto completações etc.
    
    ---
    
    ## Instale o FastAPI
    
    O primeiro passo é instalar o FastAPI.
    
    Para o tutorial, você deve querer instalá-lo com todas as dependências e recursos opicionais.
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[all]"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. cmd/bucket-listobjects-handlers.go

    	)
    
    	if r.Header.Get(xMinIOExtract) == "true" && strings.Contains(prefix, archivePattern) {
    		// Initiate a list objects operation inside a zip file based in the input params
    		listObjectsV2Info, err = listObjectsV2InArchive(ctx, objectAPI, bucket, prefix, token, delimiter, maxKeys, startAfter, r.Header)
    	} else {
    		// Initiate a list objects operation based on the input params.
    		// On success would return back ListObjectsInfo object to be
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modindex/write.go

    	})
    	e.Int(len(packages))
    	packagesPos := e.Pos()
    	for _, p := range packages {
    		e.String(p.dir)
    		e.Int(0)
    	}
    	for i, p := range packages {
    		e.IntAt(e.Pos(), packagesPos+8*i+4)
    		encodePackage(e, p)
    	}
    	e.IntAt(e.Pos(), stringTableOffsetPos)
    	e.Bytes(e.stringTable)
    	e.Bytes([]byte{0xFF}) // end of string table marker
    	return e.b
    }
    
    func encodePackageBytes(p *rawPackage) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. internal/dsync/dsync.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package dsync
    
    // Dsync represents dsync client object which is initialized with
    // authenticated clients, used to initiate lock REST calls.
    type Dsync struct {
    	// List of rest client objects, one per lock server.
    	GetLockers func() ([]NetLocker, string)
    
    	// Timeouts to apply.
    	Timeouts Timeouts
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 01 19:14:28 UTC 2022
    - 1K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/request-forms-and-files.md

    # Formulários e Arquivos da Requisição
    
    Você pode definir arquivos e campos de formulário ao mesmo tempo usando `File` e `Form`.
    
    !!! info "Informação"
        Para receber arquivos carregados e/ou dados de formulário, primeiro instale <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
        Por exemplo: `pip install python-multipart`.
    
    
    ## Importe `File` e `Form`
    
    ```Python hl_lines="1"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbSessionInternal.java

    
        /**
         * @param share
         * @param service
         * @return tree instance
         */
        SmbTree getSmbTree ( String share, String service );
    
    
        /**
         * Initiate reauthentication
         * 
         * @throws CIFSException
         */
        void reauthenticate () throws CIFSException;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/internal/dwarf/dwarf.go

    type Range struct {
    	Start, End int64
    }
    
    // This container is used by the PutFunc* variants below when
    // creating the DWARF subprogram DIE(s) for a function.
    type FnState struct {
    	Name          string
    	Info          Sym
    	Loc           Sym
    	Ranges        Sym
    	Absfn         Sym
    	StartPC       Sym
    	StartPos      src.Pos
    	Size          int64
    	External      bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprog/checkptr.go

    }
    
    // CheckPtrAlignmentNilPtr tests that checkptrAlignment doesn't crash
    // on nil pointers (#47430).
    func CheckPtrAlignmentNilPtr() {
    	var do func(int)
    	do = func(n int) {
    		// Inflate the stack so runtime.shrinkstack gets called during GC
    		if n > 0 {
    			do(n - 1)
    		}
    
    		var p unsafe.Pointer
    		_ = (*int)(p)
    	}
    
    	go func() {
    		for {
    			runtime.GC()
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 17:15:15 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/gradle/BuildInvocations.java

    import org.gradle.tooling.model.Task;
    import org.gradle.tooling.model.TaskSelector;
    
    /**
     * A model providing access to {@link org.gradle.tooling.model.Launchable} instances that can be used
     * to initiate Gradle build.
     *
     * <p>To launch a build, you pass one or more {@link org.gradle.tooling.model.Launchable} instances
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top