Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for syncFn (0.24 sec)

  1. cmd/object-handlers_test.go

    ) {
    	// used for storing the uploadID's parsed on concurrent HTTP requests for NewMultipart upload on the same object.
    	testUploads := struct {
    		sync.Mutex
    		uploads []string
    	}{}
    
    	objectName := "test-object-new-multipart-parallel"
    	var wg sync.WaitGroup
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		// Initiate NewMultipart upload on the same object 10 times concurrrently.
    		go func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  2. cmd/server_test.go

    package cmd
    
    import (
    	"bytes"
    	"context"
    	"encoding/xml"
    	"fmt"
    	"io"
    	"math/rand"
    	"net/http"
    	"net/url"
    	"reflect"
    	"regexp"
    	"runtime"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/dustin/go-humanize"
    	"github.com/minio/minio-go/v7/pkg/set"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/pkg/v3/policy"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // for more information.
    //
    // # Sync workspace build list to modules
    //
    // Usage:
    //
    //	go work sync
    //
    // Sync syncs the workspace's build list back to the
    // workspace's modules
    //
    // The workspace's build list is the set of versions of all the
    // (transitive) dependency modules used to do builds in the workspace. go
    // work sync generates that build list using the Minimal Version Selection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cel
    
    import (
    	"bytes"
    	"context"
    	"flag"
    	"fmt"
    	"math"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    
    	"k8s.io/klog/v2"
    	"k8s.io/kube-openapi/pkg/validation/strfmt"
    	"k8s.io/utils/ptr"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    	"encoding/pem"
    	"errors"
    	"fmt"
    	"hash/crc32"
    	"io"
    	"math"
    	"net/http"
    	"net/url"
    	"os"
    	"path"
    	"path/filepath"
    	"regexp"
    	"runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"sync/atomic"
    	"time"
    
    	"github.com/dustin/go-humanize"
    	"github.com/klauspost/compress/zip"
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/madmin-go/v3/estream"
    	"github.com/minio/minio-go/v7/pkg/set"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. okhttp-android/src/main/baseline-prof.txt

    HSPLandroidx/lifecycle/LifecycleRegistry;->popParentState()V
    HSPLandroidx/lifecycle/LifecycleRegistry;->removeObserver(Landroidx/lifecycle/LifecycleObserver;)V
    HSPLandroidx/lifecycle/LifecycleRegistry;->sync()V
    HSPLandroidx/lifecycle/Lifecycling;-><clinit>()V
    HSPLandroidx/lifecycle/LiveData$ObserverWrapper;-><init>()V
    HSPLandroidx/lifecycle/PausingDispatcher;-><init>()V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  7. cmd/object-handlers.go

    	"bytes"
    	"context"
    	"encoding/hex"
    	"encoding/xml"
    	"errors"
    	"fmt"
    	"io"
    	"net/http"
    	"net/http/httptest"
    	"net/textproto"
    	"net/url"
    	"os"
    	"sort"
    	"strconv"
    	"strings"
    	"sync/atomic"
    	"time"
    	"unicode"
    
    	"github.com/google/uuid"
    	"github.com/klauspost/compress/gzhttp"
    	miniogo "github.com/minio/minio-go/v7"
    	"github.com/minio/minio-go/v7/pkg/credentials"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/s390x/asmz.go

    			zRS(op_CS, uint32(p.From.Reg), uint32(p.Reg), uint32(p.To.Reg), uint32(v), asm)
    		} else if p.As == ACSG {
    			zRSY(op_CSG, uint32(p.From.Reg), uint32(p.Reg), uint32(p.To.Reg), uint32(v), asm)
    		}
    
    	case 80: // sync
    		zRR(op_BCR, 14, 0, asm) // fast-BCR-serialization
    
    	case 81: // float to fixed and fixed to float moves (no conversion)
    		switch p.As {
    		case ALDGR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  9. src/encoding/json/testdata/code.json.gz

    "kids":[{"name":"device_management_backend_impl.cc","kids":[],"cl_weight":0.04,"touches":2,"min_t":1290095084,"max_t":1290119189,"mean_t":1290107136}],"cl_weight":0.04,"touches":2,"min_t":1290095084,"max_t":1290119189,"mean_t":1290107136},{"name":"sync","kids":[{"name":"protocol","kids":[{"name":"sync_proto.gyp","kids":[],"cl_weight":1.4011111111111112,"touches":4,"min_t":1285619427,"max_t":1287012996,"mean_t":1286394353},{"name":"encryption.proto","kids":[],"cl_weight":0.04,"touches":1,"min_t":...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top