Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 511 for embeddeds (0.24 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleContextualExecuter.java

        private static final String EXECUTER_SYS_PROP = "org.gradle.integtest.executer";
    
        private Executer executerType;
    
        private enum Executer {
            embedded(false),
            forking(true),
            noDaemon(true),
            parallel(true, true),
            configCache(true),
            isolatedProjects(true);
    
            final public boolean forks;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:06:31 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. docs/de/docs/newsletter.md

    # FastAPI und Freunde Newsletter
    
    <iframe data-w-type="embedded" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://xr4n4.mjt.lu/wgt/xr4n4/hj5/form?c=40a44fa4" width="100%" style="height: 0;"></iframe>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 18 12:18:33 UTC 2024
    - 322 bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

    Rel(providerExecution, kotlinc, "Uses", "Embedded")
    
    Rel(pluginPlugin, kgp, "Applies and configures")
    
    Rel(scriptResolver, editorDependencies, "Provides")
    Rel(scriptResolver, editorReportPanel, "Reports")
    Rel(scriptResolver, editorHints, "Reports")
    Rel(scriptResolver, tapiModels, "Requests", "TAPI")
    Rel(gradleKotlinDslApi, kotlinc, "Uses", "Embedded")
    
    Rel(ideKotlin, scriptResolver, "Loads", "Embedded")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemSupport.java

                    }
                    if (embedded != null) {
                        details.closestMatch(embedded);
                    }
                } else {
                    String consumerValueName = consumerValue.getName();
                    if (Bundling.EXTERNAL.equals(consumerValueName)) {
                        for (Bundling candidateValue : candidateValues) {
                            if (Bundling.EMBEDDED.equals(candidateValue.getName())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top