Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 361 for notbar (0.17 sec)

  1. src/cmd/compile/internal/reflectdata/alg_test.go

    	for i := 0; i < b.N; i++ {
    		_ = a == c
    	}
    }
    
    func BenchmarkEqArrayOfStructsEq(b *testing.B) {
    	type T2 struct {
    		a string
    		b int
    	}
    	const size = 1024
    	var (
    		str1 = "foobar"
    
    		a [size]T2
    		c [size]T2
    	)
    
    	for i := 0; i < size; i++ {
    		a[i].a = str1
    		c[i].a = str1
    	}
    
    	b.ResetTimer()
    	for j := 0; j < b.N; j++ {
    		_ = a == c
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/go/testdata/mod/rsc.io_badsum_v1.0.0.txt

    rsc.io/badsum@v1.0.0
    
    This module would match the hard-coded hash for rsc.io/badsum v1.0.0
    in modfetch/notary.go if not for the "break hash" line.
    
    -- .mod --
    module "rsc.io/badsum"
    -- .info --
    {"Version":"v1.0.0","Time":"2018-02-14T00:45:20Z"}
    -- go.mod --
    module "rsc.io/badsum"
    -- badsum.go --
    package badsum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:45:06 UTC 2019
    - 326 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/rsc.io_badsum_v1.0.1.txt

    rsc.io/badsum@v1.0.1
    
    This module would match the hard-coded hash for rsc.io/badsum v1.0.1/go.mod
    in modfetch/notary.go if not for the "break hash" line.
    
    -- .mod --
    module "rsc.io/badsum"
    # break hash
    -- .info --
    {"Version":"v1.0.1","Time":"2018-02-14T00:45:20Z"}
    -- go.mod --
    module "rsc.io/badsum"
    -- badsum.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:45:06 UTC 2019
    - 332 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/compile/internal/inline/inlheur/testdata/props/returns2.go

    // callsite: returns2.go:19:13|0 flagstr "" flagval 0 score 1 mask 16384 maskstr "returnFeedsConcreteToInterfaceCallAdj"
    // <endcallsites>
    // <endfuncpreamble>
    func T_return_feeds_iface_call() {
    	b := newBar(10)
    	b.Plark()
    }
    
    // returns2.go T_multi_return_feeds_iface_call 29 0 1
    // <endpropsdump>
    // {"Flags":0,"ParamFlags":null,"ResultFlags":null}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top