Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 193 for embeddeds (0.19 sec)

  1. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    	// Creates a KubeconfigReadWriter
    	kubeconfigReadWriter := newKubeconfigReadWriter(dirKubernetes, "test", dirPKI, caName)
    
    	// Reads the certificate embedded in a kubeconfig
    	readCert, err := kubeconfigReadWriter.Read()
    	if err != nil {
    		t.Fatalf("couldn't read embedded certificate: %v", err)
    	}
    
    	// Check if the certificate read from disk is equal to the original one
    	if !cert.Equal(readCert) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-plugins/src/main/kotlin/org/gradle/kotlin/dsl/plugins/embedded/EmbeddedKotlinPlugin.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.kotlin.dsl.plugins.embedded
    
    import org.gradle.api.Plugin
    import org.gradle.api.Project
    import org.gradle.api.internal.tasks.JvmConstants
    import org.gradle.api.logging.Logger
    
    import org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 00:40:48 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-plugins/build.gradle.kts

    }
    
    testFilesCleanup.reportOnly = true
    
    pluginPublish {
        bundledGradlePlugin(
            name = "embeddedKotlin",
            shortDescription = "Embedded Kotlin Gradle Plugin",
            pluginId = "org.gradle.kotlin.embedded-kotlin",
            pluginClass = "org.gradle.kotlin.dsl.plugins.embedded.EmbeddedKotlinPlugin"
        )
    
        bundledGradlePlugin(
            name = "kotlinDsl",
            shortDescription = "Gradle Kotlin DSL Plugin",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_vendor_embed.txt

    //go:embed subdir/test/xtest/embed.txt
    var subdirXtest string
    -- a/samedir_embed.txt --
    embedded file in same directory as package
    -- a/subdir/embed.txt --
    embedded file in subdirectory of package
    -- a/subdir/test/embed.txt --
    embedded file of test in subdirectory of package
    -- a/subdir/test/xtest/embed.txt --
    embedded file of xtest in subdirectory of package
    -- broken_no_matching_files/go.mod --
    module example.com/broken
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:14:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/embedded_protocol_buffers.h

    #include "absl/types/span.h"
    #include "xla/statusor.h"
    #include "tensorflow/core/platform/protobuf.h"
    
    namespace tensorflow {
    namespace tfcompile {
    using absl::StatusOr;
    
    // Represents a set of protocol buffers embedded into an object file and
    // describes how to access them at runtime.
    struct EmbeddedProtocolBuffers {
      // Each instance CPPShim describes how to generate C++ code to instantiate a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 18:19:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/keystore/TestKeyStore.groovy

            new TestKeyStore(rootDir, keyStoreType, trustStoreType)
        }
    
        /*
         clientStore/serverStore only contains self-signed certificates for embedded HTTPS server.
         To make the client work with both embedded HTTPS server and real-world HTTPS server (e.g. Maven Central),
         we need to merge JDK's cacerts into the custom truststore via:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-plugins/README.md

    Having tests here breaks Gradle's ability to instrument plugins defined in this subproject and their dependencies when embedded runner is used.
    Instrumenting the plugins is important to properly test configuration caching and bytecode upgrades, without it the behavior of the embedded runner doesn't match the normal Gradle execution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:41:55 UTC 2023
    - 770 bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonPriorityIntegrationTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    
    /**
     * For forking a daemon process in embedded mode:
     * The command line length is already close to the limit of what Windows can handle.
     * The few extra arguments that the priority change requires seem to push it over the edge.
     * Therefore, we do not run these tests embedded on Windows.
     **/
    @Requires(IntegTestPreconditions.NotEmbeddedExecutorOrNotWindows)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/testing/TestType.kt

    import org.gradle.api.tasks.testing.Test
    
    
    enum class TestType(val prefix: String, val executers: List<String>) {
        INTEGRATION("integ", listOf("embedded", "forking", "noDaemon", "parallel", "configCache", "isolatedProjects")),
        CROSSVERSION("crossVersion", listOf("embedded", "forking"))
    }
    
    
    fun Test.includeSpockAnnotation(fqcn: String) {
        systemProperties.compute("include.spock.annotation") { _, oldValue ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/EmbeddedKotlinProvider.kt

        ) {
            embeddedKotlinVersions.forEach { (module, version) ->
                dependencies.constraints.add(configuration, module).apply {
                    version { strictly(version) }
                    because("Pinned to the embedded Kotlin")
                }
            }
        }
    
        private
        fun kotlinModuleVersionNotationFor(kotlinModule: String) =
            "${kotlinModuleNotationFor(kotlinModule)}:$embeddedKotlinVersion"
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top