Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 147 for convenient (0.13 sec)

  1. cmd/api-errors.go

    		Code:           "XMinioInvalidUTF",
    		Description:    "Invalid UTF-8 character detected.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    }
    
    // toAPIErrorCode - Converts embedded errors. Convenience
    // function written to handle all cases where we have known types of
    // errors returned by underlying layers.
    func toAPIErrorCode(ctx context.Context, err error) (apiErr APIErrorCode) {
    	if err == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  2. src/net/url/url_test.go

    		}
    		// Ensure that new instances are returned.
    		if base == url {
    			t.Errorf("Expected URL.ResolveReference to return new URL instance.")
    		}
    		// Test the convenience wrapper too.
    		url, err := base.Parse(test.rel)
    		if err != nil {
    			t.Errorf("URL(%q).Parse(%q) failed: %v", test.base, test.rel, err)
    		} else if got := url.String(); got != test.expected {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/resolver.go

    					check.error(s, InvalidInitDecl, "cannot import package as init - init must be a func")
    					continue
    				}
    
    				// add package to list of explicit imports
    				// (this functionality is provided as a convenience
    				// for clients; it is not needed for type-checking)
    				if !pkgImports[imp] {
    					pkgImports[imp] = true
    					pkg.imports = append(pkg.imports, imp)
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. src/go/types/resolver.go

    					check.error(d.spec, InvalidInitDecl, "cannot import package as init - init must be a func")
    					return
    				}
    
    				// add package to list of explicit imports
    				// (this functionality is provided as a convenience
    				// for clients; it is not needed for type-checking)
    				if !pkgImports[imp] {
    					pkgImports[imp] = true
    					pkg.imports = append(pkg.imports, imp)
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. pkg/kubelet/container/runtime.go

    	ID string
    }
    
    // BuildContainerID returns the ContainerID given type and id.
    func BuildContainerID(typ, ID string) ContainerID {
    	return ContainerID{Type: typ, ID: ID}
    }
    
    // ParseContainerID is a convenience method for creating a ContainerID from an ID string.
    func ParseContainerID(containerID string) ContainerID {
    	var id ContainerID
    	if err := id.ParseString(containerID); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. pilot/pkg/autoregistration/controller_test.go

    func fakeNode(r, z, sz string) *core.Node {
    	return &core.Node{
    		Locality: &core.Locality{
    			Region:  r,
    			Zone:    z,
    			SubZone: sz,
    		},
    	}
    }
    
    // createOrFail wraps config creation with convenience for failing tests
    func createOrFail(t test.Failer, store model.ConfigStoreController, cfg config.Config) {
    	if _, err := store.Create(cfg); err != nil {
    		t.Fatalf("failed creating %s/%s: %v", cfg.Namespace, cfg.Name, err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_test.go

    // * The resources in the input files don't necessarily need to be completely defined, just defined enough for the analyzer being tested.
    // * Please keep this list sorted alphabetically by the pkg.name of the analyzer for convenience
    // * Expected messages are in the format {msg.ValidationMessageType, "<ResourceKind>/<Namespace>/<ResourceName>"}.
    //   - Note that if Namespace is omitted in the input YAML, it will be skipped here.
    var testGrid = []testCase{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. src/reflect/type.go

    // The (*rtype).nameOff method is a convenience wrapper for this function.
    // Implemented in the runtime package.
    //
    //go:noescape
    func resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer
    
    // resolveTypeOff resolves an *rtype offset from a base type.
    // The (*rtype).typeOff method is a convenience wrapper for this function.
    // Implemented in the runtime package.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. cmd/xl-storage-disk-id-check.go

    		return fmt.Errorf("disk ID %s does not match. disk reports %s", wantID, id)
    	}
    	return nil
    }
    
    // diskHealthCheckOK will check if the provided error is nil
    // and update disk status if good.
    // For convenience a bool is returned to indicate any error state
    // that is not io.EOF.
    func diskHealthCheckOK(ctx context.Context, err error) bool {
    	// Check if context has a disk health check.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set.go

    		// low quota that attempts to create a large number of pods will be
    		// prevented from spamming the API service with the pod create requests
    		// after one of its pods fails.  Conveniently, this also prevents the
    		// event spam that those failures would generate.
    		successfulCreations, err := slowStartBatch(diff, controller.SlowStartInitialBatchSize, func() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top