Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 180 for bar7 (0.07 sec)

  1. src/encoding/csv/reader.go

    }
    
    func (e *ParseError) Unwrap() error { return e.Err }
    
    // These are the errors that can be returned in [ParseError.Err].
    var (
    	ErrBareQuote  = errors.New("bare \" in non-quoted-field")
    	ErrQuote      = errors.New("extraneous or missing \" in quoted-field")
    	ErrFieldCount = errors.New("wrong number of fields")
    
    	// Deprecated: ErrTrailingComma is no longer used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/errors/errors_test.go

    			field.Duplicate(field.NewPath("field[0].name"), "bar"),
    			&metav1.StatusDetails{
    				Kind: "Kind",
    				Name: "name",
    				Causes: []metav1.StatusCause{{
    					Type:  metav1.CauseTypeFieldValueDuplicate,
    					Field: "field[0].name",
    				}},
    			},
    			`Kind "name" is invalid: field[0].name: Duplicate value: "bar"`,
    		},
    		{
    			field.Invalid(field.NewPath("field[0].name"), "bar", "detail"),
    			&metav1.StatusDetails{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	objMeta.SetNamespace(genericapirequest.NamespaceValue(ctx1))
    	_, err := t.storage.(rest.Creater).Create(ctx1, obj, rest.ValidateAllObjectFunc, &metav1.CreateOptions{})
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    
    	ctx2 := genericapirequest.WithNamespace(genericapirequest.NewContext(), "bar4")
    	objMeta.SetNamespace(genericapirequest.NamespaceValue(ctx2))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    }
    
    func tok(pos token.Pos, len int) ast.Node {
    	return tokenNode{pos, pos + token.Pos(len)}
    }
    
    // childrenOf returns the direct non-nil children of ast.Node n.
    // It may include fake ast.Node implementations for bare tokens.
    // it is not safe to call (e.g.) ast.Walk on such nodes.
    func childrenOf(n ast.Node) []ast.Node {
    	var children []ast.Node
    
    	// First add nodes for all true subtrees.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go

    	"k8s.io/apimachinery/pkg/util/dump"
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    type InstallFunc func(scheme *runtime.Scheme)
    
    // RoundTripTestForAPIGroup is convenient to call from your install package to make sure that a "bare" install of your group provides
    // enough information to round trip
    func RoundTripTestForAPIGroup(t *testing.T, installFn InstallFunc, fuzzingFuncs fuzzer.FuzzerFuncs) {
    	scheme := runtime.NewScheme()
    	installFn(scheme)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  6. 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)
  7. pilot/pkg/model/gateway_test.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    // nolint lll
    func TestMergeGateways(t *testing.T) {
    	gwHTTPFoo := makeConfig("foo1", "not-default", "foo.bar.com", "name1", "http", 7, "ingressgateway", "", networking.ServerTLSSettings_SIMPLE)
    	gwHTTPbar := makeConfig("bar1", "not-default", "bar.foo.com", "bname1", "http", 7, "ingressgateway", "", networking.ServerTLSSettings_SIMPLE)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

                        files = compile.getFiles { true }
    
                        assert files.collect { it.name } == ['bar-1.jar', 'foo-2.jar']
    
                        def artifacts = compile.artifacts
    
                        assert artifacts.size() == 2
                        assert artifacts.collect { it.file.name } == ['bar-1.jar', 'foo-2.jar']
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. pkg/scheduler/eventhandlers_test.go

    		{
    			Name:      "no labels changed",
    			Changed:   false,
    			OldLabels: map[string]string{"foo": "bar"},
    			NewLabels: map[string]string{"foo": "bar"},
    		},
    		// Labels changed.
    		{
    			Name:      "new node has more labels",
    			Changed:   true,
    			OldLabels: map[string]string{"foo": "bar"},
    			NewLabels: map[string]string{"foo": "bar", "test": "value"},
    		},
    	} {
    		t.Run(test.Name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. pkg/volume/nfs/nfs.go

    			NFS: &v1.NFSVolumeSource{
    				Path: volumeName,
    			},
    		},
    	}
    	return volume.ReconstructedVolume{
    		Spec: volume.NewSpecFromVolume(nfsVolume),
    	}, nil
    }
    
    // NFS volumes represent a bare host file or directory mount of an NFS export.
    type nfs struct {
    	volName string
    	pod     *v1.Pod
    	mounter mount.Interface
    	plugin  *nfsPlugin
    	volume.MetricsProvider
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top