Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,637 for cheese (0.18 sec)

  1. pkg/config/analysis/diag/message_test.go

    	g.Expect(m.String()).To(Equal(`Error [IST-0042] (toppings/cheese path/to/file) Cheese type not found: "Feta"`))
    }
    
    func TestMessage_Unstructured(t *testing.T) {
    	g := NewWithT(t)
    	mt := NewMessageType(Error, "IST-0042", "Cheese type not found: %q")
    	m := NewMessage(mt, nil, "Feta")
    
    	g.Expect(m.Unstructured(true)).To(Not(HaveKey("origin")))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    slightly more expressive. * <p/> * For example: * <pre>assertThat(cheese, is(equalTo(smelly)))</pre> * instead of: * <pre>assertThat(cheese, equalTo(smelly))</pre> * */ @Factory public static <T> Matcher<T> is(Matcher<T> matcher) { return new Is<T>(matcher); } /** * A shortcut to the frequently used <code>is(equalTo(x))</code>. * <p/> * For example: * <pre>assertThat(cheese, is(smelly))</pre> * instead of: * <pre>assertThat(cheese, is(equalTo(smelly)))</pre> * */ @Factory public static <T> Matcher<T>...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    Matcher<T> is(T value) A shortcut to the frequently used is(equalTo(x)). For example: assertThat(cheese, is(smelly)) instead of: assertThat(cheese, is(equalTo(smelly))) is public static <T> Matcher<T> is(Matcher<T> matcher) Decorates another Matcher, retaining its behaviour, but allowing tests to be slightly more expressive. For example: assertThat(cheese, is(equalTo(smelly))) instead of: assertThat(cheese, equalTo(smelly)) is public static <T> Matcher<T> is(java.lang.Class<T> type) Deprecated. use...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprog/gc.go

    				return
    			}
    		}
    	}
    	fmt.Println("OK")
    }
    
    func GCPhys() {
    	// This test ensures that heap-growth scavenging is working as intended.
    	//
    	// It attempts to construct a sizeable "swiss cheese" heap, with many
    	// allocChunk-sized holes. Then, it triggers a heap growth by trying to
    	// allocate as much memory as would fit in those holes.
    	//
    	// The heap growth should cause a large number of those holes to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  5. src/strings/example_test.go

    	}
    	fmt.Println(strings.ContainsFunc("hello", f))
    	fmt.Println(strings.ContainsFunc("rhythms", f))
    	// Output:
    	// true
    	// false
    }
    
    func ExampleCount() {
    	fmt.Println(strings.Count("cheese", "e"))
    	fmt.Println(strings.Count("five", "")) // before & after each rune
    	// Output:
    	// 3
    	// 5
    }
    
    func ExampleCut() {
    	show := func(s, sep string) {
    		before, after, found := strings.Cut(s, sep)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:05:38 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. src/internal/reflectlite/all_test.go

    	{new(uint16), "16"},
    	{new(uint32), "32"},
    	{new(uint64), "64"},
    	{new(float32), "256.25"},
    	{new(float64), "512.125"},
    	{new(complex64), "532.125+10i"},
    	{new(complex128), "564.25+1i"},
    	{new(string), "stringy cheese"},
    	{new(bool), "true"},
    	{new(*int8), "*int8(0)"},
    	{new(**int8), "**int8(0)"},
    	{new([5]int32), "[5]int32{0, 0, 0, 0, 0}"},
    	{new(**integer), "**reflectlite_test.integer(0)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  7. src/go/parser/parser_test.go

    /* 2a
    */
    // 2b
    const pi = 3.1415
    /* 3a */ // 3b
    /* 3c */ const e = 2.7182
    
    // Example from go.dev/issue/3139
    func ExampleCount() {
    	fmt.Println(strings.Count("cheese", "e"))
    	fmt.Println(strings.Count("five", "")) // before & after each rune
    	// Output:
    	// 3
    	// 5
    }
    `, ParseComments)
    	if err != nil {
    		t.Fatal(err)
    	}
    	expected := [][]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal_test.go

    				Selector: "cheddar cheese",
    			},
    		}
    		return true, obj, nil
    	})
    
    	tc.runTest(t)
    }
    
    func TestConditionNoAmbiguousSelectorWhenNoSelectorOverlapBetweenHPAs(t *testing.T) {
    	hpaSelectors := selectors.NewBiMultimap()
    	hpaSelectors.PutSelector(selectors.Key{Name: "test-hpa-2", Namespace: testNamespace}, labels.SelectorFromSet(labels.Set{"cheddar": "cheese"}))
    
    	tc := testCase{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_test.cc

      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
      EXPECT_EQ(-1, TFE_OpGetInputLength(identityOp, "cheese", status));
      CHECK_EQ(TF_INVALID_ARGUMENT, TF_GetCode(status)) << TF_Message(status);
      EXPECT_EQ(-1, TFE_OpGetOutputLength(identityOp, "cheese", status));
      CHECK_EQ(TF_INVALID_ARGUMENT, TF_GetCode(status)) << TF_Message(status);
    
      TF_DeleteStatus(status);
      TFE_DeleteOp(identityOp);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"chart":                                "\U0001f4b9",
    	"chart_with_downwards_trend":           "\U0001f4c9",
    	"chart_with_upwards_trend":             "\U0001f4c8",
    	"checkered_flag":                       "\U0001f3c1",
    	"cheese":                               "\U0001f9c0",
    	"cherries":                             "\U0001f352",
    	"cherry_blossom":                       "\U0001f338",
    	"chess_pawn":                           "\u265f\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
Back to top