Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 187 for Lyding (0.14 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

      // possible after the object is created.
      explicit linked_ptr(T* ptr = NULL) { capture(ptr); }
      ~linked_ptr() { depart(); }
    
      // Copy an existing linked_ptr<>, adding ourselves to the list of references.
      template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
      linked_ptr(linked_ptr const& ptr) {  // NOLINT
        assert(&ptr != this);
        copy(&ptr);
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

    // Except for Set methods, all methods are const or static, which provides an
    // "immutable value object" -- useful for peace of mind.
    // A FilePath with a value ending in a path separator ("like/this/") represents
    // a directory, otherwise it is assumed to represent a file. In either case,
    // it may or may not represent an actual file or directory in the file system.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/BinaryNamingScheme.java

         */
        BinaryNamingScheme withBinaryName(String name);
    
        /**
         * Creates a copy of this scheme, adding a variant dimension.
         */
        BinaryNamingScheme withVariantDimension(String dimension);
    
        /**
         * Creates a copy of this scheme, adding a variant dimension if required.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/SettingsInternal.java

    import org.gradle.api.internal.project.ProjectRegistry;
    import org.gradle.caching.configuration.internal.BuildCacheConfigurationInternal;
    import org.gradle.declarative.dsl.model.annotations.Adding;
    import org.gradle.groovy.scripts.ScriptSource;
    import org.gradle.initialization.DefaultProjectDescriptor;
    import org.gradle.initialization.IncludedBuildSpec;
    import org.gradle.internal.FinalizableValue;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/CustomLambdasTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.mappingToJvm
    
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Configuring
    import org.gradle.declarative.dsl.model.annotations.Restricted
    import org.gradle.internal.declarativedsl.demo.reflection.reflect
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/developingPlugins/defaultDependency/tests/defaultDependency.out

    ------------------------------------------------------------
    
    dataFiles - The data artifacts to be processed for this plugin.
    \--- org.myorg:more-data:2.6 FAILED
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 343 bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/LambdaOverloadResolutionTest.kt

            val addedObjects = mutableListOf<AddedObject>()
    
            @Adding
            @Suppress("unused")
            fun addSomething(x: Int, configure: AddedObject.() -> Unit): AddedObject =
                AddedObject("addSomething($x) { ... }")
                    .also(configure)
                    .also(addedObjects::add)
    
            @Adding
            fun addSomething(x: Int): AddedObject =
                AddedObject("addSomething($x)")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 12:27:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/EmptyBlocksTest.kt

            assertTrue { result.configuredLazy.isInitialized() }
        }
    
        @Test
        fun `empty adding block ensures that the object is created`() {
            val resolution = schema.resolve(
                """
                adding()
                adding { }
                adding { x = 2 }
                addingWithArg(3)
                addingWithArg(4) { }
                """.trimIndent()
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/AccessInCurrentReceiverOnlyTest.kt

    @file:Suppress("UNUSED_PARAMETER")
    
    package org.gradle.internal.declarativedsl.analysis
    
    import org.gradle.declarative.dsl.model.annotations.AccessFromCurrentReceiverOnly
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Configuring
    import org.gradle.declarative.dsl.model.annotations.Restricted
    import org.gradle.internal.declarativedsl.demo.resolve
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/inspectingDependencies-dependencyReason/tests/dependencyReasonReport.out

       Selection reasons:
          - Was requested: we require a JDK 9 compatible bytecode generator
    
    org.ow2.asm:asm:7.1
    \--- compileClasspath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 846 bytes
    - Viewed (0)
Back to top