Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for Mean (0.3 sec)

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

    //
    // When they are not, Google Test prints both the tested expressions and
    // their actual values.  The values must be compatible built-in types,
    // or you will get a compiler error.  By "compatible" we mean that the
    // values can be compared by the respective operator.
    //
    // Note:
    //
    //   1. It is possible to make a user-defined type work with
    //   {ASSERT|EXPECT}_??(), but that requires overloading the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. src/testing/testing.go

    // elements, such as subtests, the argument is itself slash-separated, with
    // expressions matching each name element in turn. Because it is unanchored, an
    // empty expression matches any string.
    // For example, using "matching" to mean "whose name contains":
    //
    //	go test -run ''        # Run all tests.
    //	go test -run Foo       # Run top-level tests matching "Foo", such as "TestFooBar".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    // When they are not, Google Test prints both the tested expressions and
    // their actual values.  The values must be compatible built-in types,
    // or you will get a compiler error.  By "compatible" we mean that the
    // values can be compared by the respective operator.
    //
    // Note:
    //
    //   1. It is possible to make a user-defined type work with
    //   {ASSERT|EXPECT}_??(), but that requires overloading the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

        public void mixesInGeneratedSubclassInterface() throws Exception {
            Bean bean = newInstance(Bean.class);
            assertTrue(bean instanceof GeneratedSubclass);
            assertEquals(Bean.class, ((GeneratedSubclass) bean).publicType());
            assertEquals(Bean.class, GeneratedSubclasses.unpackType(bean));
            assertEquals(Bean.class, GeneratedSubclasses.unpack(bean.getClass()));
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    		// graph should contain only modules that are relevant to some package in
    		// the package graph. We checked every package in the package graph and
    		// didn't find any mismatches, so that must mean that all of the roots of
    		// the module graph are also consistent.
    		//
    		// If we're wrong, Go 1.16 in -mod=readonly mode will error out with
    		// "updates to go.mod needed", which would be very confusing. So instead,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    	if stacksize == -8 {
    		// Historical way to mark NOFRAME.
    		text.From.Sym.Set(obj.AttrNoFrame, true)
    		stacksize = 0
    	}
    	if stacksize < 0 {
    		ctxt.Diag("negative frame size %d - did you mean NOFRAME?", stacksize)
    	}
    	if text.From.Sym.NoFrame() {
    		if stacksize != 0 {
    			ctxt.Diag("NOFRAME functions must have a frame size of 0, not %d", stacksize)
    		}
    	}
    
    	if !containsCall(cursym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller.go

    			claimClone.Status.AccessModes = volume.Spec.AccessModes
    			dirty = true
    		}
    
    		// Update Capacity if the claim is becoming Bound, not if it was already.
    		// A discrepancy can be intentional to mean that the PVC filesystem size
    		// doesn't match the PV block device size, so don't clobber it
    		if claim.Status.Phase != phase {
    			volumeCap, ok := volume.Spec.Capacity[v1.ResourceStorage]
    			if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            }
            1 * action.execute(_) >> { Bean bean ->
                bean.value += " > initialize"
            }
            1 * action.execute(_) >> { Bean bean ->
                bean.value += " > mutate"
            }
            1 * action.execute(_) >> { Bean bean ->
                bean.value += " > finalize"
            }
            1 * action.execute(_) >> { Bean bean ->
                assert bean.value == "create > defaults > initialize > mutate > finalize"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    		return
    	}
    	t.h2transport = t2
    
    	// Auto-configure the http2.Transport's MaxHeaderListSize from
    	// the http.Transport's MaxResponseHeaderBytes. They don't
    	// exactly mean the same thing, but they're close.
    	//
    	// TODO: also add this to x/net/http2.Configure Transport, behind
    	// a +build go1.7 build tag:
    	if limit1 := t.MaxResponseHeaderBytes; limit1 != 0 && t2.MaxHeaderListSize == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                }
    
                class SomeTask extends DefaultTask {
                    private final bean = new SomeBean()
    
                    SomeTask() {
                        bean.gradle = project.gradle
                        bean.nested.gradle = project.gradle
                        bean.nested.project = project
                    }
    
                    @TaskAction
                    void run() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top