Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for proj2 (0.04 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildAggregationIntegrationTest.groovy

        }
    
        @Issue("https://issues.gradle.org//browse/GRADLE-3052")
        def buildTaskCanHaveInputsAndOutputs() {
            file("input") << "foo"
            settingsFile << "rootProject.name = 'proj'"
            buildFile << """
                class UpperFile extends DefaultTask {
                    @InputFile
                    File input
    
                    @OutputFile
                    File output
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml

        buffer size (usually 4 or 8 KB). The text block is designed such that its length is exactly 32 KB after leading
        and trailing whitespace has been removed and all line terminators have been removed.
        -->
        <prop2>
    00 KB     1         2         3         4         5         6  X
    0         1         2         3         4         5         6  X
    0         1         2         3         4         5         6  X
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 34.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratedManagedStateTest.groovy

            def bean = create(InterfacePrimitiveBean)
    
            expect:
            !bean.prop1
            bean.setProp1(true)
            bean.prop1
    
            bean.prop2 == 0
            bean.setProp2(12)
            bean.prop2 == 12
        }
    
        def canConstructInstanceOfInterfaceWithFileCollectionGetter() {
            def projectDir = tmpDir.testDirectory
            def bean = create(InterfaceFileCollectionBean)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/macho.go

    			out.Write32(s.prot1)
    			out.Write32(s.prot2)
    			out.Write32(s.nsect)
    			out.Write32(s.flag)
    		} else {
    			out.Write32(LC_SEGMENT)
    			out.Write32(56 + 68*s.nsect)
    			out.WriteStringN(s.name, 16)
    			out.Write32(uint32(s.vaddr))
    			out.Write32(uint32(s.vsize))
    			out.Write32(uint32(s.fileoffset))
    			out.Write32(uint32(s.filesize))
    			out.Write32(s.prot1)
    			out.Write32(s.prot2)
    			out.Write32(s.nsect)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderKotlinTest.groovy

            def e2 = builder.createContainerElement(null, "foo.bar", "e2", "someElement")
            builder.propertyAssignment("Set some thing", "prop", e1)
            builder.propertyAssignment(null, "prop2", builder.propertyExpression(e2, "outputDir"))
    
            when:
            builder.create(target).generate()
    
            then:
            assertOutputFile("""/*
     * This file was generated by the Gradle 'init' task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. JavadocStyleGuide.md

    ```java
    /**
     * <pre><code class="language-kotlin">
     * project.ext.prop1 = "foo"
     * task doStuff {
     *     ext.prop2 = "bar"
     * }
     * subprojects { ext.${prop3} = false }
     * </code></pre>
     */
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                }
                convention.plugins.thing = new Thing()
                ext.prop2 = { it / 2 }
    
                assert prop1(12) == 12
                assert prop2(12) == 6
            """
            file("child1/build.gradle") << """
                ext.prop3 = { it * 2 }
                assert prop1(12) == 12
                assert prop2(12) == 6
                assert prop3(12) == 24
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. docs/tr/docs/alternatives.md

    Sonrasında ise projenin odağı değişti.
    
    Geliştiricinin Starlette'e odaklanması gerekince proje de artık bir API web framework'ü olmayı bıraktı.
    
    Artık APIStar, OpenAPI özelliklerini doğrulamak için bir dizi araç sunan bir proje haline geldi.
    
    !!! info "Bilgi"
        APIStar, aşağıdaki projeleri de üreten Tom Christie tarafından geliştirildi:
    
        * Django REST Framework
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderGroovyTest.groovy

            builder.propertyAssignment(null, "prop2", builder.propertyExpression(e2, "outputDir"))
    
            when:
            builder.create(target).generate()
    
            then:
            assertOutputFile("""$COMMON_START
     */
    
    // Add some thing
    foo.bar {
        e1 {
        }
    }
    
    foo.bar {
        e2 {
        }
    }
    
    prop = foo.bar.e1
    prop2 = foo.bar.e2.outputDir
    """)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/scalarmult_test.go

    func TestBasepointTableGeneration(t *testing.T) {
    	// The basepoint table is 32 affineLookupTables,
    	// corresponding to (16^2i)*B for table i.
    	basepointTable := basepointTable()
    
    	tmp1 := &projP1xP1{}
    	tmp2 := &projP2{}
    	tmp3 := &Point{}
    	tmp3.Set(B)
    	table := make([]affineLookupTable, 32)
    	for i := 0; i < 32; i++ {
    		// Build the table
    		table[i].FromP3(tmp3)
    		// Assert equality with the hardcoded one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top