Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 206 for BAR (0.21 sec)

  1. src/cmd/go/testdata/script/mod_import_vendor.txt

    -- 122go.mod --
    module example.com/x
    go 1.22
    
    require "foo.com/internal/bar" v1.0.0
    
    -- go.mod --
    module example.com/x
    go 1.23
    
    require "foo.com/internal/bar" v1.0.0
    
    -- incorrect_modules.txt --
    # foo.com/internal/bar v1.0.0
    ## explicit
    foo.com/internal/bar/a
    
    -- correct_modules.txt --
    # foo.com/internal/bar v1.0.0
    ## explicit
    foo.com/internal/bar/a
    foo.com/internal/bar/b
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. operator/pkg/util/progress/progress.go

    	// for handling the multiline issues.
    	bar := pb.New(0)
    	bar.Set(pb.Static, true)
    	if testWriter != nil {
    		bar.SetWriter(*testWriter)
    	}
    	bar.Start()
    	// if we aren't a terminal, we will return a new line for each new message
    	if !bar.GetBool(pb.Terminal) {
    		bar.Set(pb.ReturnSymbol, "\n")
    	}
    	return bar
    }
    
    // reportProgress will report an update for a given component
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. pkg/config/security/security_test.go

    		expectedError bool
    	}{
    		{
    			in:            "foo.bar.com",
    			expectedError: true,
    		},
    		{
    			in:            "tcp://foo.bar.com:abc",
    			expectedError: true,
    		},
    		{
    			in:            "http://foo.bar.com:abc",
    			expectedError: true,
    		},
    		{
    			in: "http://foo.bar.com",
    			expected: security.JwksInfo{
    				Hostname: "foo.bar.com",
    				Scheme:   "http",
    				Port:     80,
    				UseSSL:   false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/openapi/compiling_test.go

    	}{
    		{
    			expression:       "foo.foo == bar.bar",
    			expectEvalResult: true,
    		},
    		{
    			expression:         "foo.bar == 'value'",
    			expectCompileError: true,
    		},
    		{
    			expression:       "foo.foo == 'value'",
    			expectEvalResult: true,
    		},
    		{
    			expression:       "bar.bar == 'value'",
    			expectEvalResult: true,
    		},
    		{
    			expression:       "foo.common + bar.common <= 2",
    			expectEvalResult: false, // 3 > 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/builder/iptables_builder_test.go

    				builder.AppendRuleV6(iptableslog.UndefinedCommand, "chain", "table", "-f", "fu", "-b", "bar")
    				builder.AppendRuleV6(iptableslog.UndefinedCommand, "chain", "table", "-f", "foo", "-b", "baz")
    			},
    			true,
    		},
    		{
    			"insert-multi-v4",
    			true,
    			false,
    			func(builder *IptablesRuleBuilder) {
    				builder.InsertRuleV4(iptableslog.UndefinedCommand, "chain", "table", 1, "-f", "foo", "-b", "bar")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_buildmod_reason_issue67587.txt

    -- thirteen/foo.go --
    package foo
    
    import _ "github.com/foo/bar"
    -- thirteen/go.mod --
    module example.com
    
    go 1.13
    -- thirteen/vendor/github.com/foo/bar/bar.go --
    package bar
    -- unspecified/foo.go --
    package foo
    
    import _ "github.com/foo/bar"
    -- unspecified/go.mod --
    module example.com
    -- unspecified/vendor/github.com/foo/bar/bar.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:54:40 UTC 2024
    - 572 bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCircularReferenceIntegrationTest.groovy

                        println('circular in indirect => ' + (circular in indirect))
                        println('Circular(foo, bar) in direct => ' + (new Circular('foo', 'bar') in direct))
                        println('Circular(foo, bar) in indirect => ' + (new Circular('foo', 'bar') in indirect))
                        println('circular === direct.first() => ' + (circular === direct.first()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. src/internal/godebug/godebug_test.go

    		want    string
    	}{
    		{"", New("#"), ""},
    		{"", foo, ""},
    		{"foo=bar", foo, "bar"},
    		{"foo=bar,after=x", foo, "bar"},
    		{"before=x,foo=bar,after=x", foo, "bar"},
    		{"before=x,foo=bar", foo, "bar"},
    		{",,,foo=bar,,,", foo, "bar"},
    		{"foodecoy=wrong,foo=bar", foo, "bar"},
    		{"foo=", foo, ""},
    		{"foo", foo, ""},
    		{",foo", foo, ""},
    		{"foo=bar,baz", New("#loooooooong"), ""},
    	}
    	for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/matcher/template_test.go

    	}{
    		{
    			name: "matchOneOnly",
    			path: "/foo/bar/{*}",
    			want: &uri_template.UriTemplateMatchConfig{
    				PathTemplate: "/foo/bar/*",
    			},
    		},
    		{
    			name: "matchAnyOnly",
    			path: "/foo/{**}/bar",
    			want: &uri_template.UriTemplateMatchConfig{
    				PathTemplate: "/foo/**/bar",
    			},
    		},
    		{
    			name: "matchAnyAndOne",
    			path: "/{*}/foo/{**}/bar",
    			want: &uri_template.UriTemplateMatchConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. tests/test_jsonable_encoder.py

        with pytest.raises(ValidationError):
            ModelWithAlias(foo="Bar")
    
    
    def test_encode_model_with_alias():
        model = ModelWithAlias(Foo="Bar")
        assert jsonable_encoder(model) == {"Foo": "Bar"}
    
    
    def test_encode_model_with_default():
        model = ModelWithDefault(foo="foo", bar="bar")
        assert jsonable_encoder(model) == {"foo": "foo", "bar": "bar", "bla": "bla"}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top