Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,123 for 20something (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. testing/performance/src/templates/native-monolithic/src/prebuilt.h

    #ifndef PREBUILT_HEADER_${sourceIdx+offset}_H
    #define PREBUILT_HEADER_${sourceIdx+offset}_H
    
    // TODO: Actually do something in this header
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 188 bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

    name: Regression
    description: Report a problem about something that used to work
    labels: [ "a:regression", "to-triage" ]
    assignees: [ ]
    body:
      - type: markdown
        attributes:
          value: |
            Please use our bug report template to report problems with something that has never worked.
            Regressions reports are greatly appreciated during our RC phase and before a final release.
      - type: textarea
        id: current-behavior
        attributes:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            given:
            def project = project('root', null, Stub(GradleInternal))
            def action = { files -> files.builtBy('something') } as Action<ConfigurableFileCollection>
    
            when:
            def fileCollection = project.files('path', action)
    
            then:
            fileCollection.builtBy == ['something'] as Set
        }
    
        def "can create file tree configured with an Action"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/util/internal/DeferredUtil.java

    import java.util.concurrent.Callable;
    
    import static org.gradle.internal.UncheckedException.uncheckedCall;
    
    public class DeferredUtil {
    
        /**
         * Successively unpacks a deferred value until it is resolved to null or something other than Callable (including Groovy Closure) or Kotlin lambda
         * then unpacks the remaining Provider or Factory.
         *
         * Fails when the Provider is not present.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-monolithic/prebuilt.gradle

                    headers.with {
                        srcDir "prebuilt/lib$it/include"
                        include "**/*.h"
                    }
                    // TODO: Define library locations (and generate something?)
                }
                <% } %>
    
                commonHeaders {
                    headers.with {
                        <% if (overlapWithOutput) { %>
                            srcDir "\$rootDir"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 735 bytes
    - Viewed (0)
Back to top