Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for fossi (0.04 sec)

  1. src/main/resources/fess_indices/fess/pt/stopwords.txt

    houverá
    houveremos
    houverão
    houveria
    houveríamos
    houveriam
    sou
    somos
    são
    era
    éramos
    eram
    fui
    foi
    fomos
    foram
    fora
    fôramos
    seja
    sejamos
    sejam
    fosse
    fôssemos
    fossem
    for
    formos
    forem
    serei
    será
    seremos
    serão
    seria
    seríamos
    seriam
    tenho
    tem
    temos
    tém
    tinha
    tínhamos
    tinham
    tive
    teve
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vcs/vcs.go

    	return strings.TrimSpace(out), nil
    }
    
    // fossilRepoName is the name go get associates with a fossil repository. In the
    // real world the file can be named anything.
    const fossilRepoName = ".fossil"
    
    // vcsFossil describes how to use Fossil (fossil-scm.org)
    var vcsFossil = &Cmd{
    	Name: "Fossil",
    	Cmd:  "fossil",
    	RootNames: []rootName{
    		{filename: ".fslckout", isDir: false},
    		{filename: "_FOSSIL_", isDir: false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/lockedfile/lockedfile_plan9.go

    	"math/rand"
    	"os"
    	"strings"
    	"time"
    )
    
    // Opening an exclusive-use file returns an error.
    // The expected error strings are:
    //
    //   - "open/create -- file is locked" (cwfs, kfs)
    //   - "exclusive lock" (fossil)
    //   - "exclusive use file already open" (ramfs)
    var lockedErrStrings = [...]string{
    	"file is locked",
    	"exclusive lock",
    	"exclusive use file already open",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. docs/pt/docs/benchmarks.md

        * Então, ao utilizar o FastAPI você estará economizando tempo de desenvolvimento, evitará _bugs_, linhas de código,...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/vcweb/vcweb.go

    // until the script is modified.
    //
    // The script engine includes all of the engine's default commands and
    // conditions, as well as commands for each supported VCS binary (bzr, fossil,
    // git, hg, and svn), a "handle" command that informs the script which protocol
    // or handler to use to serve the request, and utilities "at" (which sets
    // environment variables for Git timestamps) and "unquote" (which unquotes its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/zip_sum_test/zip_sum_test.go

    	}
    
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveExternalNetwork(t)
    	testenv.MustHaveExecPath(t, "bzr")
    	testenv.MustHaveExecPath(t, "git")
    	// TODO(jayconrod): add hg, svn, and fossil modules to testdata.
    	// Could not find any for now.
    
    	tests, err := readZipSumTests()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if *modCacheDir != "" {
    		cfg.BuildContext.GOPATH = *modCacheDir
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 19:33:59 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/body.md

    E foi imensamente testado na fase de design, antes de qualquer implementação, para garantir que funcionaria para todos os editores de texto.
    
    Houveram mudanças no próprio Pydantic para que isso fosse possível.
    
    As capturas de tela anteriores foram capturas no <a href="https://code.visualstudio.com" class="external-link" target="_blank">Visual Studio Code</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/security/first-steps.md

    	* Normalmente, um token é definido para expirar depois de um tempo.
    		* Então, o usuário terá que se logar de novo depois de um tempo.
    		* E se o token for roubado, o risco é menor. Não é como se fosse uma chave permanente que vai funcionar para sempre (na maioria dos casos).
    	* O frontend armazena aquele token temporariamente em algum lugar.
    	* O usuário clica no frontend para ir à outra seção daquele frontend do aplicativo web.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    specifies the given repository, with or without the .vcs suffix,
    using the named version control system, and then the path inside
    that repository. The supported version control systems are:
    
    	Bazaar      .bzr
    	Fossil      .fossil
    	Git         .git
    	Mercurial   .hg
    	Subversion  .svn
    
    For example,
    
    	import "example.org/user/foo.hg"
    
    denotes the root directory of the Mercurial repository at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/codehost/git_test.go

    		log.Fatal(err)
    	}
    }
    
    var gitrepo1, hgrepo1, vgotest1 string
    
    var altRepos = func() []string {
    	return []string{
    		"localGitRepo",
    		hgrepo1,
    	}
    }
    
    // TODO: Convert gitrepo1 to svn, bzr, fossil and add tests.
    // For now, at least the hgrepo1 tests check the general vcs.go logic.
    
    // localGitRepo is like gitrepo1 but allows archive access
    // (although that doesn't really matter after CL 120041),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
Back to top