Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,429 for somme (0.05 sec)

  1. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.values.gen.yaml

        }
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperUserHomeIntegrationTest.groovy

    class WrapperUserHomeIntegrationTest extends AbstractWrapperIntegrationSpec {
        void 'uses gradle user home set by -Dgradle.user.home'() {
            given:
            prepareWrapper()
            def gradleUserHome = testDirectory.file('some-custom-user-home')
    
            when:
            def executer = wrapperExecuter.withGradleUserHomeDir(null)
            executer.withArguments("-Dgradle.user.home=$gradleUserHome.absolutePath")
            executer.run()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/CppLibraryInitIntegrationTest.groovy

            subprojectDir.file("src/main/public").assertHasDescendants("some-thing.h")
            subprojectDir.file("src/test/cpp").assertHasDescendants(SAMPLE_LIB_TEST_CLASS)
    
            and:
            subprojectDir.file("src/main/public/some-thing.h").text.contains("namespace some_thing {")
            subprojectDir.file("src/main/public/some-thing.h").text.contains("#define SOME_THING_EXPORT_FUNC")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcIntegrationTest.groovy

            given:
            createDirs("buildSrc/ignored")
            file("buildSrc/settings.gradle") << """
                include 'ignored' // include some content
            """
            file("buildSrc/build.gradle") << """
                allprojects { apply plugin: 'java-library' } // include some content
            """
            file("buildSrc/src/main/java/CustomTask.java") << """
                import ${DefaultTask.name};
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

        def incubatingPrompt = "Generate build using new APIs and behavior (some features may change in the next minor release)?"
        def basicType = "4: Basic (build structure only)"
        def basicTypeOption = 4
        def applicationOption = 1
        def defaultProjectName = "some-thing"
        def defaultFileName = "some-file"
        def projectNamePrompt = "Project name (default: $defaultProjectName)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (1)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveTest.kt

                description = "Symbol restoring for some symbols in current test is not supported yet",
            )
    
            val IGNORE_STABILITY_K1 by stringDirective(
                description = "Symbol restoring for some symbols in current test is not supported yet in K1",
            )
    
            val IGNORE_STABILITY_K2 by stringDirective(
                description = "Symbol restoring for some symbols in current test is not supported yet in K2",
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. src/syscall/rlimit.go

    var origRlimitNofile atomic.Pointer[Rlimit]
    
    // Some systems set an artificially low soft limit on open file count, for compatibility
    // with code that uses select and its hard-coded maximum file descriptor
    // (limited by the size of fd_set).
    //
    // Go does not use select, so it should not be subject to these limits.
    // On some systems the limit is 256, which is very easy to run into,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValue.kt

            get() = withValidityAssertion { field }
    }
    
    public typealias KtEnumEntryAnnotationValue = KaEnumEntryAnnotationValue
    
    /**
     * Some constant value (which may be used as initializer of `const val`) used as annotation argument. It may be String literal, number literal or some simple expression.
     * E.g: `@A(1 +2, "a" + "b")` -- both arguments here are [KaConstantAnnotationValue]
     * @see [KaConstantValue]
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/BindingsBuilderExtensions.kt

        bind(linkedListCodec)
        bind(copyOnWriteArrayListCodec)
    
        // Only serialize certain Set implementations for now, as some custom types extend Set (e.g. DomainObjectContainer)
        bind(HashSetCodec)
        bind(treeSetCodec)
        bind(copyOnWriteArraySetCodec)
    
        // Only serialize certain Map implementations for now, as some custom types extend Map (e.g. DefaultManifest)
        bind(linkedHashMapCodec)
        bind(hashMapCodec)
        bind(treeMapCodec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top