Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for FooBarBaz (0.32 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

    bool operator!=(T* ptr, const linked_ptr<T>& x) {
      return ptr != x.get();
    }
    
    // A function to convert T* into linked_ptr<T>
    // Doing e.g. make_linked_ptr(new FooBarBaz<type>(arg)) is a shorter notation
    // for linked_ptr<FooBarBaz<type> >(new FooBarBaz<type>(arg))
    template <typename T>
    linked_ptr<T> make_linked_ptr(T* ptr) {
      return linked_ptr<T>(ptr);
    }
    
    }  // namespace internal
    }  // namespace testing
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/CombinatorsTest.kt

            assertSuccess(parser("bar"))
            assertFailure(parser("baz"), "Expecting symbol 'bar', but got 'baz' instead")
    
            val fooBarBaz = parser + combinator.symbol("baz")
            assertSuccess(fooBarBaz("baz"))
            assertFailure(fooBarBaz("gazonk"), "Expecting symbol 'baz', but got 'gazonk' instead")
        }
    
        @Test
        fun `can parse many symbols`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

    bool operator!=(T* ptr, const linked_ptr<T>& x) {
      return ptr != x.get();
    }
    
    // A function to convert T* into linked_ptr<T>
    // Doing e.g. make_linked_ptr(new FooBarBaz<type>(arg)) is a shorter notation
    // for linked_ptr<FooBarBaz<type> >(new FooBarBaz<type>(arg))
    template <typename T>
    linked_ptr<T> make_linked_ptr(T* ptr) {
      return linked_ptr<T>(ptr);
    }
    
    }  // namespace internal
    }  // namespace testing
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/util/internal/TextUtilTest.groovy

            where:
            camelCase   | kebabCase
            ""          | ""
            "foo"       | "foo"
            "fooBar"    | "foo-bar"
            "Foo"       | "foo"
            "fooBarBaz" | "foo-bar-baz"
            "ABC"       | "a-b-c"
            "someT"     | "some-t"
            "sT"        | "s-t"
            "aBc"       | "a-bc"
            "aBec"      | "a-bec"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  5. cluster/gce/gci/audit_policy_test.go

    		clusterRoles    = resource("clusterroles", "", "rbac.authorization.k8s.io")
    		events          = resource("events", "default")
    		foobars         = resource("foos", "default", "example.com")
    		foobarbaz       = resource("foos", "default", "example.com", "baz")
    	)
    
    	// Aliases
    	const (
    		none     = audit.LevelNone
    		metadata = audit.LevelMetadata
    		request  = audit.LevelRequest
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 9.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/preflight/checks_test.go

    		{[]Checker{FileContentCheck{Path: "/", Content: []byte("does not exist")}}, false, ""},
    		{[]Checker{InPathCheck{executable: "foobarbaz", exec: exec.New()}}, true, "\t[WARNING FileExisting-foobarbaz]: foobarbaz not found in system path\n"},
    		{[]Checker{InPathCheck{executable: "foobarbaz", mandatory: true, exec: exec.New()}}, false, ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java

        assertEquals(42, (int) future.get());
      }
    
      public void testSetException() throws Exception {
        SettableFuture<Object> future = SettableFuture.create();
        Exception e = new Exception("foobarbaz");
        assertTrue(future.setException(e));
        // Later attempts to set the future should return false.
        assertFalse(future.set(23));
        assertFalse(future.setException(new Exception("quux")));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java

        assertEquals(42, (int) future.get());
      }
    
      public void testSetException() throws Exception {
        SettableFuture<Object> future = SettableFuture.create();
        Exception e = new Exception("foobarbaz");
        assertTrue(future.setException(e));
        // Later attempts to set the future should return false.
        assertFalse(future.set(23));
        assertFalse(future.setException(new Exception("quux")));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/fuzzer/fuzzer.go

    				obj.Default = &validJSON
    			}
    			if c.RandBool() {
    				obj.Enum = []apiextensions.JSON{c.Float64(), c.RandString(), c.RandBool()}
    			}
    			if c.RandBool() {
    				validJSON := apiextensions.JSON(`"foobarbaz"`)
    				obj.Example = &validJSON
    			}
    			if c.RandBool() {
    				validRef := "validRef"
    				obj.Ref = &validRef
    			}
    			if len(obj.Type) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/GroovyInteroperabilityTest.kt

        @Test
        fun `can adapt ternary function using KotlinClosure3`() {
    
            fun closure(function: (String, String, String) -> String) = KotlinClosure3(function)
    
            assertEquals(
                "foobarbaz",
                closure { x, y, z -> x + y + z }.call("foo", "bar", "baz")
            )
        }
    
        @Test
        fun `can adapt ternary null receiving function using KotlinClosure3`() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top