Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 248 for desta (0.02 sec)

  1. deps.xml

    			<param name="jar.version" value="2.1.1" />
    			<param name="file.version" value="2.1.1" />
    		</antcall>
    		<!-- kopf -->
    		<get dest="${target.dir}/kopf.zip">
    			<url url="https://github.com/codelibs/elasticsearch-kopf/archive/${kopf.branch}.zip" />
    		</get>
    		<delete dir="${site.dir}/kopf" />
    		<unzip dest="${site.dir}/kopf" src="${target.dir}/kopf.zip">
    			<patternset>
    				<include name="elasticsearch-kopf-${kopf.branch}/_site/**" />
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun May 18 04:53:52 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

      /** The Greek letter delta, used in unicode testing. */
      private static final String DELTA = "\u0394";
    
      /** A domain part which is valid under lenient validation, but invalid under strict validation. */
      @SuppressWarnings("InlineMeInliner") // String.repeat unavailable under Java 8
      static final String LOTS_OF_DELTAS = Strings.repeat(DELTA, 62);
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  3. docs/es/docs/virtual-environments.md

    Activar un entorno virtual también cambia un par de otras cosas, pero esta es una de las cosas más importantes que hace.
    
    ## Verificando un Entorno Virtual
    
    Cuando revisas si un entorno virtual está activo, por ejemplo con:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. docs/es/docs/advanced/advanced-dependencies.md

    En este caso, **FastAPI** nunca tocará ni se preocupará por `__init__`, lo usaremos directamente en nuestro código.
    
    ## Crear una instance
    
    Podríamos crear una instance de esta clase con:
    
    {* ../../docs_src/dependencies/tutorial011_an_py39.py hl[18] *}
    
    Y de esa manera podemos "parametrizar" nuestra dependencia, que ahora tiene `"bar"` dentro de ella, como el atributo `checker.fixed_content`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. docs/pt/docs/deployment/concepts.md

    * Um programa específico enquanto está **em execução** no sistema operacional, usando a CPU e armazenando coisas na memória. Isso também é chamado de **processo**.
    
    ### O que é um Processo
    
    A palavra **processo** normalmente é usada de forma mais específica, referindo-se apenas ao que está sendo executado no sistema operacional (como no último ponto acima):
    
    * Um programa específico enquanto está **em execução** no sistema operacional.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  6. docs/de/docs/benchmarks.md

    Konkret geht es darum, Uvicorn, Starlette und FastAPI miteinander zu vergleichen (neben vielen anderen Tools).
    
    Je einfacher das Problem, welches durch das Tool gelöst wird, desto besser ist die Performanz. Und die meisten Benchmarks testen nicht die zusätzlichen Funktionen, welche das Tool bietet.
    
    Die Hierarchie ist wie folgt:
    
    * **Uvicorn**: ein ASGI-Server
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Jan 23 16:04:13 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. cmd/data-scanner_test.go

    		Rules: []replication.Rule{
    			{
    				ID:       "",
    				Status:   "Enabled",
    				Priority: 1,
    				Destination: replication.Destination{
    					ARN:    "arn:minio:replication:::dest-bucket",
    					Bucket: "dest-bucket",
    				},
    			},
    		},
    	}
    	lr := objectlock.Retention{
    		Mode:        objectlock.RetCompliance,
    		Validity:    12 * time.Hour,
    		LockEnabled: true,
    	}
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 12K bytes
    - Viewed (0)
  8. docs/es/docs/history-design-future.md

    ## Futuro
    
    A este punto, ya está claro que **FastAPI** con sus ideas está siendo útil para muchas personas.
    
    Está siendo elegido sobre alternativas anteriores por adaptarse mejor a muchos casos de uso.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. callbacks/preload.go

    }
    
    func preloadDB(db *gorm.DB, reflectValue reflect.Value, dest interface{}) *gorm.DB {
    	tx := db.Session(&gorm.Session{Context: db.Statement.Context, NewDB: true, SkipHooks: db.Statement.SkipHooks, Initialized: true})
    	db.Statement.Settings.Range(func(k, v interface{}) bool {
    		tx.Statement.Settings.Store(k, v)
    		return true
    	})
    
    	if err := tx.Statement.Parse(dest); err != nil {
    		tx.AddError(err)
    		return tx
    	}
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sun May 25 07:40:40 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

                    dest.exists();
    
                    if (!Objects.equals(getServerWithDfs(), dest.getServerWithDfs()) || !Objects.equals(getShare(), dest.getShare())) {
                        throw new SmbException("Cannot rename between different trees");
                    }
                }
    
                if (log.isDebugEnabled()) {
                    log.debug("renameTo: " + getUncPath() + " -> " + dest.getUncPath());
                }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top