Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 731 for expand1 (0.23 sec)

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

    //
    // Expands to the namespace name that the type-parameterized tests for
    // the given type-parameterized test case are defined in.  The exact
    // name of the namespace is subject to change without notice.
    # define GTEST_CASE_NAMESPACE_(TestCaseName) \
      gtest_case_##TestCaseName##_
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/groovy/buildSrc/src/main/java/org/example/ProcessTemplates.java

        @TaskAction
        public void processTemplates() {
            // ...
    // end::custom-task-class[]
            getFs().copy(spec -> spec.
                into(getOutputDir()).
                from(getSourceFiles()).
                expand(new HashMap<>(getTemplateData().getVariables().get()))
            );
    // tag::custom-task-class[]
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/kotlin/buildSrc/src/main/java/org/example/ProcessTemplates.java

        @TaskAction
        public void processTemplates() {
            // ...
    // end::custom-task-class[]
            getFs().copy(spec -> spec.
                into(getOutputDir()).
                from(getSourceFiles()).
                expand(new HashMap<>(getTemplateData().getVariables().get()))
            );
    // tag::custom-task-class[]
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.out

         +--- com.google.errorprone:error_prone_annotations:2.3.4
         \--- com.google.j2objc:j2objc-annotations:1.3
    
    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. pkg/spiffe/spiffe.go

    	uri, err := genSpiffeURI(td, ns, serviceAccount)
    	if err != nil {
    		spiffeLog.Debug(err.Error())
    	}
    	return uri
    }
    
    // ExpandWithTrustDomains expands a given spiffe identities, plus a list of trust domain aliases.
    // We ensure the returned list does not contain duplicates; the original input is always retained.
    // For example,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/WindowsStartScriptGeneratorTest.groovy

            // or has generated some lines with one or the other character
            carriageLineEndings == newlineEndings
            windowsLineEndings == newlineEndings
        }
    
        def "defaultJvmOpts is expanded properly in windows script"() {
            given:
            JavaAppStartScriptGenerationDetails details = createScriptGenerationDetails(['-Dfoo=bar', '-Xint'], 'bin')
            Writer destination = new StringWriter()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. pkg/controller/volume/ephemeral/doc.go

    limitations under the License.
    */
    
    // Package ephemeral implements the controller part of
    // https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/1698-generic-ephemeral-volumes
    //
    // It was derived from the expand controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 09 21:29:24 UTC 2020
    - 799 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/main/resources/header.html

                    <li><a href="../userguide/installation.html">Installing Gradle</a></li>
                    <li><a class="nav-dropdown" data-toggle="collapse" href="#upgrading-gradle" aria-expanded="false" aria-controls="upgrading-gradle">Upgrading Gradle</a>
                        <ul id="upgrading-gradle">
                            <li><a href="../userguide/upgrading_version_8.html">version 8.X to latest</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/mavenMigration/basic/kotlin/build.gradle.kts

    // tag::pom-dependencies[]
    dependencies {
        testImplementation("org.codehaus.groovy:groovy-all:2.5.4")
    }
    // end::pom-dependencies[]
    
    // tag::process-resources[]
    tasks {
        processResources {
            expand("version" to version, "buildNumber" to currentBuildNumber)
        }
    }
    // end::process-resources[]
    
    // tag::checkstyle[]
    checkstyle {
        config = resources.text.fromFile("checkstyle.xml", "UTF-8")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. scripts/playwright/separate_openapi_schemas/image03.py

        page.goto("http://localhost:8000/docs")
        page.get_by_text("GET/items/Read Items").click()
        page.get_by_role("tab", name="Schema").click()
        page.get_by_label("Schema").get_by_role("button", name="Expand all").click()
        page.screenshot(
            path="docs/en/docs/img/tutorial/separate-openapi-schemas/image03.png"
        )
    
        # ---------------------
        context.close()
        browser.close()
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 892 bytes
    - Viewed (0)
Back to top