Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 210 for dsts (0.04 sec)

  1. platforms/documentation/docs/src/samples/readme-templates/application-body.adoc.template

    BUILD SUCCESSFUL
    2 actionable tasks: 2 executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    == Bundle the application
    
    The `application` plugin also bundles the application, with all its dependencies, for you.
    The archive will also contain a script to start the application with a single command.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/BUILD

    tf_cc_test(
        name = "modular_filesystem_test",
        size = "small",
        srcs = ["modular_filesystem_test.cc"],
        linkopts = ["-ldl"],
        tags = [
            "manual",  # Requires DSOs as arguments, eventual setup
            "notap",  # b/139060984, requires implementing modular support for Google filesystem
        ],
        deps = [
            ":modular_filesystem",
            "//tensorflow/core:framework_internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

    `,
    			checkForN: func(src echo.Caller, dests echo.Services, opts *echo.CallOptions) echo.Checker {
    				return check.And(
    					check.OK(),
    					func(result echo.CallResult, err error) error {
    						errorThreshold := 10
    						if len(split) != len(dests) {
    							// shouldn't happen
    							return fmt.Errorf("split configured for %d destinations, but framework gives %d", len(split), len(dests))
    						}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/signing/maven-publish/groovy/build.gradle

                    description = 'A concise description of my library'
                    url = 'http://www.example.com/library'
                    properties = [
                        myProp: "value",
                        "prop.with.dots": "anotherValue"
                    ]
                    licenses {
                        license {
                            name = 'The Apache License, Version 2.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. src/log/slog/text_handler.go

    // dots. No further escaping is performed.
    // Thus there is no way to determine from the key "a.b.c" whether there
    // are two groups "a" and "b" and a key "c", or a single group "a.b" and a key "c",
    // or single group "a" and a key "b.c".
    // If it is necessary to reconstruct the group structure of a key
    // even in the presence of dots inside components, use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractPolyglotIntegrationSpec.groovy

    import org.gradle.integtests.fixtures.polyglot.MultiProjectBuilder
    
    /**
     * An integration test which allows testing build scripts with both the
     * Groovy and Kotlin DSLs
     */
    @CompileStatic
    @PolyglotDslTest
    class AbstractPolyglotIntegrationSpec extends AbstractIntegrationSpec {
    
        private MultiProjectBuilder projectBuilder
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/BuildInitDsl.java

                    return language;
                }
            }
            TreeFormatter formatter = new TreeFormatter();
            formatter.node("The requested build script DSL '" + name + "' is not supported. Supported DSLs");
            formatter.startChildren();
            for (BuildInitDsl dsl : values()) {
                formatter.node("'" + dsl.getId() + "'");
            }
            formatter.endChildren();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    The `build` task compiles the ${language.raw} sources, links the object files into a shared library, and runs the tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/encoding/base64/base64_test.go

    			testEqual(t, `AppendDecode("", %q) = %q, want %q`, p.encoded, string(dst2), p.decoded)
    			if len(dst) > 0 && len(dst2) > 0 && &dst[0] != &dst2[0] {
    				t.Errorf("unexpected capacity growth: got %d, want %d", cap(dst2), cap(dst))
    			}
    		}
    	}
    }
    
    func TestDecoder(t *testing.T) {
    	for _, p := range pairs {
    		decoder := NewDecoder(StdEncoding, strings.NewReader(p.encoded))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/signing/maven-publish/kotlin/build.gradle.kts

                    description = "A concise description of my library"
                    url = "http://www.example.com/library"
                    properties = mapOf(
                        "myProp" to "value",
                        "prop.with.dots" to "anotherValue"
                    )
                    licenses {
                        license {
                            name = "The Apache License, Version 2.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top