Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,206 for 20something (0.35 sec)

  1. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/propertyInCompanionObject_indirect_twice.kt

    package prop.`in`.`companion`.indirect.twice
    
    class Test {
        fun test() {
            val x = <expr>oneMore</expr>
        }
        companion object {
            // effectively constant
            val someField = "something"
            val indirectPointer = someField
            val oneMore = indirectPointer
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 11 12:51:16 UTC 2022
    - 296 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/files/archiveNaming/groovy/somedir/file.txt

    something to copy...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 19 bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/resources/org/gradle/api/tasks/copyTestResources/src2/three/three.a

    Something to copy...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 21:14:41 UTC 2012
    - 17 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testKit/testKitFunctionalTestSpockBuildCache/groovy/src/main/groovy/org/gradle/sample/MyCacheableTask.groovy

    @CacheableTask
    class MyCacheableTask extends DefaultTask {
        @InputFile
        @PathSensitive(PathSensitivity.NONE)
        File inputFile
        @OutputFile
        File outputFile
    
        @TaskAction
        void doSomething() {
            outputFile.text = inputFile.text
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 567 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            InputStream doSomething(Object param)
            InputStream doSomething(Object param, Object other)
        }
    
        @Managed
        interface ManagedTypeExtendingUnmanagedTypeWithOverloadedMethod extends UnmanagedSuperTypeWithOverloadedMethod {
            @Override ByteArrayInputStream doSomething(Object param)
            @Override ByteArrayInputStream doSomething(Object param, Object other)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-monolithic/src/common.h

    #ifndef COMMON_HEADER_${sourceIdx}_H
    #define COMMON_HEADER_${sourceIdx}_H
    
    // TODO: Actually do something in this common header
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 168 bytes
    - Viewed (0)
  7. test/fixedbugs/issue29312.go

    // fmt.Sprintf (instead of the correct 253 one). But the data
    // structure at runtime actually has 253 nesting levels. So we end up
    // calling String on something that is of type [][]*pwn instead of
    // something of type *pwn. The way arg passing in Go works, the
    // backing store pointer for the outer slice becomes the "this"
    // pointer of the String method, which points to the inner []*pwn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/testing_issue40908.txt

    -- go.mod --
    module testrace
    
    go 1.16
    -- race_test.go --
    package testrace
    
    import "testing"
    
    func TestRace(t *testing.T) {
    	helperDone := make(chan struct{})
    	go func() {
    		t.Logf("Something happened before cleanup.")
    		close(helperDone)
    	}()
    
    	t.Cleanup(func() {
    		<-helperDone
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 336 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/propertyInCompanionObject_indirect.kt

    package prop.`in`.`companion`.indirect
    
    class Test {
        fun test() {
            val x = <expr>indirectPointer</expr>
        }
        companion object {
            // effectively constant
            val someField = "something"
            val indirectPointer = someField
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 11 12:51:16 UTC 2022
    - 260 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/visitor.go

    	// the subtrees. It is allowed to mutate s. Return true if something has been changed.
    	// +optional
    	Structural func(s *Structural) bool
    	// NestedValueValidation is called on each NestedValueValidation node in the schema,
    	// before recursing into subtrees. It is allowed to mutate vv. Return true if something
    	// has been changed.
    	// +optional
    	NestedValueValidation func(vv *NestedValueValidation) bool
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top