Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for glenda (0.15 sec)

  1. docs/pt/docs/async.md

    Isso é chamado de "assíncrono" porquê o computador / programa não tem que ser "sincronizado" com a tarefa lenta, esperando pelo exato momento que a tarefa finalize, enquanto não faz nada, para ser capaz de pegar o resultado da tarefa e dar continuidade ao trabalho.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  2. docs/tr/docs/tutorial/path-params.md

    ## Pydantic
    
    Tüm veri doğrulamaları <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> tarafından arka planda gerçekleştirilir, bu sayede tüm avantajlardan faydalanabilirsiniz. Böylece, emin ellerde olduğunuzu hissedebilirsiniz.
    
    Aynı tip tanımlamalarını `str`, `float`, `bool` ve diğer karmaşık veri tipleri ile kullanma imkanınız vardır.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. src/regexp/testdata/repetition.dat

    NOTE	implicit vs. explicit repetitions : 2009-02-02
    
    # Glenn Fowler <******@****.***>
    # conforming matches (column 4) must match one of the following BREs
    #	NOMATCH
    #	(0,.)\((\(.\),\(.\))(?,?)(\2,\3)\)*
    #	(0,.)\((\(.\),\(.\))(\2,\3)(?,?)\)*
    # i.e., each 3-tuple has two identical elements and one (?,?)
    
    E	((..)|(.))				NULL		NOMATCH
    E	((..)|(.))((..)|(.))			NULL		NOMATCH
    E	((..)|(.))((..)|(.))((..)|(.))		NULL		NOMATCH
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 6.6K bytes
    - Viewed (0)
  4. src/hash/fnv/fnv.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package fnv implements FNV-1 and FNV-1a, non-cryptographic hash functions
    // created by Glenn Fowler, Landon Curt Noll, and Phong Vo.
    // See
    // https://en.wikipedia.org/wiki/Fowler-Noll-Vo_hash_function.
    //
    // All the hash.Hash implementations returned by this package also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. docs/tr/docs/alternatives.md

    ### <a href="https://www.django-rest-framework.org/" class="external-link" target="_blank">Django REST Framework</a>
    
    Django REST framework'ü, Django'nun API kabiliyetlerini arttırmak için arka planda Django kullanan esnek bir araç grubu olarak oluşturuldu.
    
    Üstelik Mozilla, Red Hat ve Eventbrite gibi pek çok şirket tarafından kullanılıyor.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpComponent.java

    import java.util.Map;
    import java.util.Set;
    
    import static org.gradle.util.internal.ConfigureUtil.configure;
    
    /**
     * Enables fine-tuning wtp component details of the Eclipse plugin
     * <p>
     * Example of use with a blend of all possible properties.
     * Bear in mind that usually you don't have to configure them directly because Gradle configures it for free!
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'war' // or 'ear' or 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/mips.s

    	WSBH	R1, R2 // 7c0110a0
    
    	SEB	R1, R2 // 7c011420
    	SEH	R1, R2 // 7c011620
    
    	// to (Hi, Lo)
    	MADD	R2, R1 // 70220000
    	MSUB	R2, R1 // 70220004
    	MUL	R2, R1 // 00220018
    
    	// END
    	//
    	//	LEND	comma // asm doesn't support the trailing comma.
    	//	{
    	//		outcode(int($1), &nullgen, 0, &nullgen);
    	//	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

    import java.util.Set;
    
    import static org.gradle.util.internal.ConfigureUtil.configure;
    
    /**
     * Enables fine-tuning project details (.project file) of the Eclipse plugin
     * <p>
     * Example of use with a blend of all possible properties.
     * Bear in mind that usually you don't have configure eclipse project directly because Gradle configures it for free!
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. src/image/color/color.go

    type Color interface {
    	// RGBA returns the alpha-premultiplied red, green, blue and alpha values
    	// for the color. Each value ranges within [0, 0xffff], but is represented
    	// by a uint32 so that multiplying by a blend factor up to 0xffff will not
    	// overflow.
    	//
    	// An alpha-premultiplied color component c has been scaled by alpha (a),
    	// so has valid values 0 <= c <= a.
    	RGBA() (r, g, b, a uint32)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaProject.java

    import java.util.List;
    import java.util.Set;
    
    import static org.gradle.util.internal.ConfigureUtil.configure;
    
    /**
     * Enables fine-tuning project details (*.ipr file) of the IDEA plugin.
     * <p>
     * Example of use with a blend of all possible properties.
     * Typically you don't have to configure IDEA module directly because Gradle configures it for you.
     *
     * <pre class='autoTested'>
     * import org.gradle.plugins.ide.idea.model.*
     *
     * plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top