Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 355 for _foobar (0.23 sec)

  1. src/go/ast/print_test.go

    )
    
    var tests = []struct {
    	x any // x is printed as s
    	s string
    }{
    	// basic types
    	{nil, "0  nil"},
    	{true, "0  true"},
    	{42, "0  42"},
    	{3.14, "0  3.14"},
    	{1 + 2.718i, "0  (1+2.718i)"},
    	{"foobar", "0  \"foobar\""},
    
    	// maps
    	{map[Expr]string{}, `0  map[ast.Expr]string (len = 0) {}`},
    	{map[string]int{"a": 1},
    		`0  map[string]int (len = 1) {
    		1  .  "a": 1
    		2  }`},
    
    	// pointers
    	{new(int), "0  *0"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. docs/sts/assume-role.md

    ```
    [foobar]
    region = us-east-1
    aws_access_key_id = foobar
    aws_secret_access_key = foo12345
    ```
    
    > NOTE: In the following commands `--role-arn` and `--role-session-name` are not meaningful for MinIO and can be set to any value satisfying the command line requirements.
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_metrics_test.go

    		name          string
    		volumeID      string
    		targetPath    string
    		expectSuccess bool
    	}{
    		{
    			name:          "with valid name and volume id",
    			expectSuccess: true,
    			volumeID:      "foobar",
    			targetPath:    "/mnt/foo",
    		},
    	}
    
    	for _, tc := range tests {
    		metricsGetter := &metricsCsi{volumeID: tc.volumeID, targetPath: tc.targetPath}
    		metricsGetter.csiClient = &csiDriverClient{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/some-dir/missing-gateway.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: missing-gateway
    spec:
      hosts:
      - "foobar"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 29 03:04:35 UTC 2020
    - 204 bytes
    - Viewed (0)
  5. src/html/template/html_test.go

    		{"Foo <textarea>Bar</textarea> Baz", "Foo Bar Baz"},
    		{"Foo <!-- Bar --> Baz", "Foo  Baz"},
    		{"<", "<"},
    		{"foo < bar", "foo < bar"},
    		{`Foo<script type="text/javascript">alert(1337)</script>Bar`, "FooBar"},
    		{`Foo<div title="1>2">Bar`, "FooBar"},
    		{`I <3 Ponies!`, `I <3 Ponies!`},
    		{`<script>foo()</script>`, ``},
    	}
    
    	for _, test := range tests {
    		if got := stripTags(test.input); got != test.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 19 22:45:50 UTC 2015
    - 2.8K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/ipset/ipset_test.go

    		},
    	}
    	runner := New(fexec)
    	// Success.
    	err := runner.FlushSet("FOOBAR")
    	if err != nil {
    		t.Errorf("expected success, got %v", err)
    	}
    	if fcmd.CombinedOutputCalls != 1 {
    		t.Errorf("expected 1 CombinedOutput() calls, got %d", fcmd.CombinedOutputCalls)
    	}
    	if !sets.NewString(fcmd.CombinedOutputLog[0]...).HasAll("ipset", "flush", "FOOBAR") {
    		t.Errorf("wrong CombinedOutput() log, got %s", fcmd.CombinedOutputLog[0])
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  7. test/typeparam/issue376214.go

    package main
    
    func add[S ~string | ~[]byte](buf *[]byte, s S) {
    	*buf = append(*buf, s...)
    }
    
    func main() {
    	var buf []byte
    	add(&buf, "foo")
    	add(&buf, []byte("bar"))
    	if string(buf) != "foobar" {
    		panic("got " + string(buf))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 401 bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/TaskContainerIntegrationTest.groovy

                    assert task.path in [':foo']
                }
    
                tasks.register("foo", Copy)
                tasks.register("bar", Copy)
                tasks.register("foobar", Delete)
                tasks.register("barfoo", Delete)
            """
            expect:
            succeeds "help"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/9446")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 07:46:00 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

          reason: Programmed
          status: "True"
          type: Programmed
        - lastTransitionTime: fake
          message: No errors found
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        name: foobar
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaProjectIntegrationTest.groovy

        <annotationProcessing enabled="false" useClasspath="true"/>
        <wildcardResourcePatterns>
          <entry name="!?*.groovy"/>
          <entry name="!?*.java"/>
          <entry name="!?*.fooBar"/>
        </wildcardResourcePatterns>
      </component>
      <component name="ProjectModuleManager">
        <modules>
          <module fileurl="file://$PROJECT_DIR$/root.iml" filepath="$PROJECT_DIR$/root.iml"/>
        </modules>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top