Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 110 for emerson (0.14 sec)

  1. docs/en/docs/python-types.md

    ### Classes as types
    
    You can also declare a class as the type of a variable.
    
    Let's say you have a class `Person`, with a name:
    
    ```Python hl_lines="1-3"
    {!../../../docs_src/python_types/tutorial010.py!}
    ```
    
    Then you can declare a variable to be of type `Person`:
    
    ```Python hl_lines="6"
    {!../../../docs_src/python_types/tutorial010.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. src/encoding/binary/binary_test.go

    		}
    	}
    }
    
    func TestNoFixedSize(t *testing.T) {
    	type Person struct {
    		Age    int
    		Weight float64
    		Height float64
    	}
    
    	person := Person{
    		Age:    27,
    		Weight: 67.3,
    		Height: 177.8,
    	}
    
    	for _, enc := range encoders {
    		t.Run(enc.name, func(t *testing.T) {
    			_, err := enc.fn(LittleEndian, &person)
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. docs/bn/docs/python-types.md

    ### ক্লাস হিসেবে টাইপস
    
    আপনি একটি ভেরিয়েবলের টাইপ হিসেবে একটি ক্লাস ঘোষণা করতে পারেন।
    
    ধরুন আপনার কাছে `Person` নামে একটি ক্লাস আছে, যার একটি নাম আছে:
    
    ```Python hl_lines="1-3"
    {!../../../docs_src/python_types/tutorial010.py!}
    ```
    
    তারপর আপনি একটি ভেরিয়েবলকে `Person` টাইপের হিসেবে ঘোষণা করতে পারেন:
    
    ```Python hl_lines="6"
    {!../../../docs_src/python_types/tutorial010.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 15:34:37 UTC 2024
    - 36K bytes
    - Viewed (0)
  4. docs/de/docs/python-types.md

    ### Klassen als Typen
    
    Sie können auch eine Klasse als Typ einer Variablen deklarieren.
    
    Nehmen wir an, Sie haben eine Klasse `Person`, mit einem Namen:
    
    ```Python hl_lines="1-3"
    {!../../../docs_src/python_types/tutorial010.py!}
    ```
    
    Dann können Sie eine Variable vom Typ `Person` deklarieren:
    
    ```Python hl_lines="6"
    {!../../../docs_src/python_types/tutorial010.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:25 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

                memoryMaximumSize = "1g"
            }
    
            expect:
            builder.build() == defaultOptions
        }
    
        def "can include/exclude source files"() {
            def file1 = new File("/src/Person.java")
            def file2 = new File("Computer.java")
            spec.sourceFiles = [file1, file2]
    
            when:
            builder.includeSourceFiles(true)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. src/encoding/xml/read_test.go

    	Link    []Link    `xml:"link"`
    	Updated time.Time `xml:"updated,attr"`
    	Author  Person    `xml:"author"`
    	Entry   []Entry   `xml:"entry"`
    }
    
    type Entry struct {
    	Title   string    `xml:"title"`
    	ID      string    `xml:"id"`
    	Link    []Link    `xml:"link"`
    	Updated time.Time `xml:"updated"`
    	Author  Person    `xml:"author"`
    	Summary Text      `xml:"summary"`
    }
    
    type Link struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

        def handlesTagsAndTaglets() {
            when:
            run("javadoc")
    
            then:
            def javadoc = testResources.dir.file("build/docs/javadoc/Person.html")
            javadoc.text =~ /(?ms)This is the Person class.*Author.*author value.*Deprecated.*deprecated value.*Custom Tag.*custom tag value/
            // we can't currently control the order between tags and taglets (limitation on our side)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. docs/tr/docs/python-types.md

    ### Tip olarak Sınıflar
    
    Bir değişkenin tipini bir sınıf ile bildirebilirsiniz.
    
    Diyelim ki  `name` değerine sahip `Person` sınıfınız var:
    
    ```Python hl_lines="1-3"
    {!../../../docs_src/python_types/tutorial010.py!}
    ```
    
    Sonra bir değişkeni 'Person' tipinde tanımlayabilirsiniz:
    
    ```Python hl_lines="6"
    {!../../../docs_src/python_types/tutorial010.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. docs/ru/docs/python-types.md

    ### Классы как типы
    
    Вы также можете объявить класс как тип переменной.
    
    Допустим, у вас есть класс `Person` с полем `name`:
    
    ```Python hl_lines="1-3"
    {!../../../docs_src/python_types/tutorial010.py!}
    ```
    
    Тогда вы можете объявить переменную типа `Person`:
    
    ```Python hl_lines="6"
    {!../../../docs_src/python_types/tutorial010.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            //util -> impl -> api
    
            file("api/src/main/java/Person.java") << """public interface Person {
        String getName();
    }
    """
            file("impl/src/main/java/PersonImpl.java") << """public class PersonImpl implements Person {
        public String getName() {
            return "Szczepan";
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top