Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for toGetter (0.14 sec)

  1. cmd/veeam-sos-api.go

    // decisions based on this information. For example, Veeam Backup & Replication has a Scale-out-Backup-Repository feature where
    // multiple buckets can be used together. The placement logic for additional backup files is based on available space. Other values
    // will augment the Veeam user interface and statistics, including free space warnings.
    type capacityInfo struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/mime/mediatype.go

    			// Duplicate parameter names are incorrect, but we allow them if they are equal.
    			return "", nil, errors.New("mime: duplicate parameter name")
    		}
    		pmap[key] = value
    		v = rest
    	}
    
    	// Stitch together any continuations or things with stars
    	// (i.e. RFC 2231 things with stars: "foo*0" or "foo*")
    	var buf strings.Builder
    	for key, pieceMap := range continuation {
    		singlePartKey := key + "*"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/io/pipe_test.go

    				t.Errorf("Read() = (%d, %v); want (%d, nil)", n, err, readSize)
    			}
    		}
    
    		// Since each Write is fully gated, if multiple Read calls were needed,
    		// the contents of Write should still appear together in the output.
    		got := string(buf)
    		want := strings.Repeat(input, count)
    		if got != want {
    			t.Errorf("got: %q; want: %q", got, want)
    		}
    	})
    
    	t.Run("Read", func(t *testing.T) {
    		r, w := Pipe()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top