Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,008 for xdefine (0.11 sec)

  1. src/html/template/multi_test.go

    }
    
    const (
    	cloneText1 = `{{define "a"}}{{template "b"}}{{template "c"}}{{end}}`
    	cloneText2 = `{{define "b"}}b{{end}}`
    	cloneText3 = `{{define "c"}}root{{end}}`
    	cloneText4 = `{{define "c"}}clone{{end}}`
    )
    
    // Issue 7032
    func TestAddParseTreeToUnparsedTemplate(t *testing.T) {
    	master := "{{define \"master\"}}{{end}}"
    	tmpl := New("master")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  2. src/html/template/clone_test.go

    	t3 := Must(t0.Clone())
    	Must(t3.Parse(`{{define "lhs"}} <style> {{end}}`))
    	Must(t3.Parse(`{{define "rhs"}} </style> {{end}}`))
    
    	// Complete t0.
    	Must(t0.Parse(`{{define "lhs"}} ( {{end}}`))
    	Must(t0.Parse(`{{define "rhs"}} ) {{end}}`))
    
    	// Clone t0 as t4. Redefining the "lhs" template should not fail.
    	t4 := Must(t0.Clone())
    	if _, err := t4.Parse(`{{define "lhs"}} OK {{end}}`); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributeMatchingStrategy.java

        CompatibilityRuleChain<T> getCompatibilityRules();
    
        DisambiguationRuleChain<T> getDisambiguationRules();
    
        /**
         * <p>A short-hand way to define both a compatibility rule and
         * a disambiguation rule based on an order defined by the provided
         * {@link Comparator}.</p>
         *
         * <p>All provider values which are lower than or equal the consumer value are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:53 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    Instead, the versions are defined in the constraints block.
    The version definition for `commons-codec:1.11` is only taken into account if `commons-codec` is brought in as transitive dependency, since `commons-codec` is not defined as dependency in the project.
    Otherwise, the constraint has no effect.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_386.S

    // license that can be found in the LICENSE file.
    
    .file "gcc_386.S"
    
    /*
     * Windows still insists on underscore prefixes for C function names.
     */
    #if defined(_WIN32)
    #define EXT(s) _##s
    #else
    #define EXT(s) s
    #endif
    
    /*
     * void crosscall1(void (*fn)(void), void (*setg_gcc)(void*), void *g)
     *
     * Calling into the gc tool chain, where all registers are caller save.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 12 03:56:58 UTC 2023
    - 959 bytes
    - Viewed (0)
  6. samples/wasm_modules/header_injector/plugin.cc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    #include "plugin.h"
    
    #ifndef INJECTION_VERSION
    #error INJECTION_VERSION must be defined
    #endif // INJECTION_VERSION
    
    #define xstr(s) str(s)
    #define str(s) #s
    
    // Boilderplate code to register the extension implementation.
    static RegisterContextFactory register_HeaderInjector(CONTEXT_FACTORY(HeaderInjectorContext),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/test_google.cc

    #include "tensorflow/core/platform/cpu_info.h"
    
    // Macros that expand to tokens based on the entry point name.
    // clang-format off
    #define CPP_CLASS {{TFCOMPILE_CPP_CLASS}}  // NOLINT(whitespace/braces)
    #define TEST_NAME {{TFCOMPILE_NAME}}Test   // NOLINT(whitespace/braces)
    #define BM_NAME   BM_{{TFCOMPILE_NAME}}    // NOLINT(whitespace/braces)
    // clang-format on
    
    namespace tensorflow {
    namespace tfcompile {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpec.groovy

        final TestLogger logger = new TestLogger()
    
        /**
         * An object that allows instants to be defined and queried.
         *
         * @see NamedInstant
         */
        final Instants instant = new Instants(logger)
    
        /**
         * An object that allows operations to be defined and queried.
         *
         * @see NamedOperation
         */
        final Operations operation = new Operations(instant, instant)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue20266/issue20266.h

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #define issue20266 20266
    
    #ifndef def20266
    #error "expected def20266 to be defined"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 251 bytes
    - Viewed (0)
  10. pkg/ctrlz/topics/assets/templates/env.html

    {{ define "content" }}
    
    <p>
        The set of environment variables defined for this process.
    </p>
    
    <table>
        <thead>
        <tr>
            <th>Name</th>
            <th>Value</th>
        </tr>
        </thead>
    
        <tbody>
            {{ range . }}
                <tr>
                    <td>{{.Name}}</td>
                    <td>{{.Value}}</td>
                </tr>
            {{ end }}
        </tbody>
    </table>
    
    {{ template "last-refresh" .}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 418 bytes
    - Viewed (0)
Back to top