Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 756 for covers (0.43 sec)

  1. src/html/template/escape_test.go

    	if err == nil {
    		t.Error("expected error")
    	} else if !strings.Contains(err.Error(), "incomplete") {
    		t.Errorf("expected error about incomplete template; got %s", err)
    	}
    }
    
    // This covers issue #20842.
    func TestIdempotentExecute(t *testing.T) {
    	tmpl := Must(New("").
    		Parse(`{{define "main"}}<body>{{template "hello"}}</body>{{end}}`))
    	Must(tmpl.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_all.txt

    stdout '^example.com/u.test$'
    stdout '^example.com/u_test \[example.com/u.test\]$'
    stdout '^example.com/w.test$'
    stdout '^example.com/w_test \[example.com/w.test\]$'
    
    
    # 'go list -m all' covers the packages in 'go list -test -deps all'.
    
    go list -m -f $MODFMT all
    stdout -count=12 '^.'
    stdout '^example.com/a$'
    stdout '^example.com/b$'
    stdout '^example.com/c$'
    stdout '^example.com/d$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 13.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    A dimension is simply a category, where each category is orthogonal to the rest.
    For example, the "build type" dimension is a category that includes debug and release.
    The "architecture" dimension covers processor architectures like x86-64 and x86.
    
    A variant is a combination of values for these dimensions, consisting of exactly one value for each dimension.
    You might have a "debug x86-64" or a "release x86" variant.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/README.md

    ## Testing docs 
    
    Currently, `docs` is tested by `docs:docsTest`, which covers three kinds of code: 
    
    - The code generated by [Build Init Plugin](https://docs.gradle.org/current/userguide/build_init_plugin.html), i.e. `gradle init` task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. architecture/environments/operator.md

    # Istio operator code overview
    
    ## Introduction
    
    This document covers primarily the code, with some background on how the design maps to it.
    See the
    [design doc](https://docs.google.com/document/d/11j9ZtYWNWnxQYnZy8ayZav1FMwTH6F6z6fkDYZ7V298/edit#heading=h.qex63c29z2to)
    for a more complete design description. The operator code is divided roughly into five areas:
    
    1. [IstioOperatorSpec API](#istiooperatorspec-api) and related infrastructure, which is expressed as a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

         * * Making sure we no longer are registered as pending interest on nodes pointed by constraints
         */
        private void cleanupConstraints() {
            // This part covers constraint that were taken into account between a selection being deferred and this node being scheduled for traversal
            if (upcomingNoLongerPendingConstraints != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  7. pkg/credentialprovider/keyring_test.go

    		}
    	}
    }
    
    // This validates that dockercfg entries with a scheme and url path are properly matched
    // by images that only match the hostname.
    // NOTE: the above covers the case of a more specific match trumping just hostname.
    func TestIssue3797(t *testing.T) {
    	rex := AuthConfig{
    		Username: "rex",
    		Password: "tiny arms", // Fake value for testing.
    		Email:    "******@****.***",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 15 10:47:22 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

        // usually the axis-th dimension of the target type. Currently, it covers
        // two cases:
        // - for Transpose, the data layout is changed so the `dim[axis]` still
        // equals to the `scales_size`. The broadcast skips;
        // - for Reshape, the data layout isn't changed but the innermost dimension
        // is expand to cover the last two original dimensions. Thus we just need to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. src/runtime/mspanset.go

    	// growable spine that points to fixed-sized blocks. The spine
    	// can be accessed without locks, but adding a block or
    	// growing it requires taking the spine lock.
    	//
    	// Because each mspan covers at least 8K of heap and takes at
    	// most 8 bytes in the spanSet, the growth of the spine is
    	// quite limited.
    	//
    	// The spine and all blocks are allocated off-heap, which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

    import java.util.stream.Stream;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Supplies an arbitrary "default" instance for a wide range of types, often useful in testing
     * utilities.
     *
     * <p>Covers arrays, enums and common types defined in {@code java.lang}, {@code java.lang.reflect},
     * {@code java.io}, {@code java.nio}, {@code java.math}, {@code java.util}, {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top