Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for truth (0.07 sec)

  1. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.reflect;
    
    import static com.google.common.truth.Truth.assertThat;
    import static org.junit.Assert.assertThrows;
    
    import com.google.common.base.Function;
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.ImmutableMap;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

    import static com.google.common.collect.testing.IteratorFeature.MODIFIABLE;
    import static com.google.common.collect.testing.IteratorFeature.UNMODIFIABLE;
    import static com.google.common.truth.Truth.assertThat;
    import static java.util.Arrays.asList;
    import static java.util.Collections.singleton;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  3. src/text/template/exec_test.go

    			continue
    		}
    		if !test.ok && err == nil {
    			t.Errorf("%s did not error", test.expr)
    			continue
    		}
    		if b.String() != test.truth {
    			t.Errorf("%s: want %s; got %s", test.expr, test.truth, b.String())
    		}
    	}
    }
    
    func TestMissingMapKey(t *testing.T) {
    	data := map[string]int{
    		"x": 99,
    	}
    	tmpl, err := New("t1").Parse("{{.x}} {{.y}}")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    	// pod fields are accumulated if they are missing on a particular call (the last
    	// known version), and the value of KillPodOptions is accumulated as pods cannot
    	// have their grace period shortened. This is the source of truth for the pod spec
    	// the kubelet is reconciling towards for all components that act on running pods.
    	activeUpdate *UpdatePodOptions
    
    	// syncedAt is the time at which the pod worker first observed this pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        }
    
        private boolean sameIncomingEdgesAsPreviousPass(int incomingEdgeCount) {
            // This is a heuristic, more than truth: it is possible that the 2 long hashs
            // are identical AND that the sizes of collections are identical, but it's
            // extremely unlikely (never happened on test cases even on large dependency graph)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    // To reduce duplication, we generate the list for go/build from this.
    //
    // We list all supported platforms in this list, so that this is the
    // single point of truth for supported platforms. This list is used
    // by 'go tool dist list'.
    var cgoEnabled = map[string]bool{
    	"aix/ppc64":       true,
    	"darwin/amd64":    true,
    	"darwin/arm64":    true,
    	"dragonfly/amd64": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    	NeedRoot
    )
    
    // ModFile returns the parsed go.mod file.
    //
    // Note that after calling LoadPackages or LoadModGraph,
    // the require statements in the modfile.File are no longer
    // the source of truth and will be ignored: edits made directly
    // will be lost at the next call to WriteGoMod.
    // To make permanent changes to the require statements
    // in go.mod, edit it before loading.
    func ModFile() *modfile.File {
    	Init()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Although hard-coded paths make for simple examples, they make the build brittle.
    Using a reliable, single source of truth, such as a task or shared project property, is better.
    In the following modified example, we use a report task defined elsewhere that has the report's location stored in its `outputFile` property:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top