Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for objectFile (0.3 sec)

  1. cmd/bucket-replication.go

    			SSE:          opts.ServerSideEncryption,
    			CustomHeader: cHeader,
    		}
    
    		if isSSEC {
    			objectSize += partInfo.Size
    			pInfo, err = c.PutObjectPart(ctx, bucket, object, uploadID, partInfo.Number, hr, partInfo.Size, popts)
    		} else {
    			objectSize += partInfo.ActualSize
    			pInfo, err = c.PutObjectPart(ctx, bucket, object, uploadID, partInfo.Number, hr, partInfo.ActualSize, popts)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    		}
    
    	}
    
    	if _, ok := opts.ObjectAttributes[xhttp.ETag]; ok {
    		OA.ETag = objInfo.ETag
    	}
    
    	if _, ok := opts.ObjectAttributes[xhttp.ObjectSize]; ok {
    		OA.ObjectSize, _ = objInfo.GetActualSize()
    	}
    
    	if _, ok := opts.ObjectAttributes[xhttp.StorageClass]; ok {
    		OA.StorageClass = filterStorageClass(ctx, objInfo.StorageClass)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    		setError(fmt.Errorf("C source files not allowed when not using cgo or SWIG: %s", strings.Join(p.CFiles, " ")))
    		return
    	}
    
    	// C++, Objective-C, and Fortran source files are permitted only with cgo or SWIG,
    	// regardless of toolchain.
    	if len(p.CXXFiles) > 0 && !p.UsesCgo() && !p.UsesSwig() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    	}()
    
    	keepAliveTicker := time.NewTicker(500 * time.Millisecond)
    	defer keepAliveTicker.Stop()
    
    	enc := json.NewEncoder(w)
    	ch := objectSpeedTest(ctx, speedTestOpts{
    		objectSize:       size,
    		concurrencyStart: concurrent,
    		duration:         duration,
    		autotune:         autotune,
    		storageClass:     storageClass,
    		bucketName:       customBucket,
    		enableSha256:     enableSha256,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	if err != nil {
    		return nil, nil, err
    	}
    
    	cgoCPPFLAGS = append(cgoCPPFLAGS, pcCFLAGS...)
    	cgoLDFLAGS = append(cgoLDFLAGS, pcLDFLAGS...)
    	// If we are compiling Objective-C code, then we need to link against libobjc
    	if len(mfiles) > 0 {
    		cgoLDFLAGS = append(cgoLDFLAGS, "-lobjc")
    	}
    
    	// Likewise for Fortran, except there are many Fortran compilers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. cmd/object-handlers_test.go

    	ExecObjectLayerAPINilTest(t, nilBucket, nilObject, instanceType, apiRouter, nilReq)
    }
    
    // Wrapper for calling NewMultipartUploadParallel tests for both Erasure multiple disks and single node setup.
    // The objective of the test is to initialte multipart upload on the same object 10 times concurrently,
    // The UploadID from the response body is parsed and its existence is asserted with an attempt to ListParts using it.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //		trigger an error.
    //	.cc, .cpp, .cxx, .hh, .hpp, .hxx
    //		C++ source files. Only useful with cgo or SWIG, and always
    //		compiled with the OS-native compiler.
    //	.m
    //		Objective-C source files. Only useful with cgo, and always
    //		compiled with the OS-native compiler.
    //	.s, .S, .sx
    //		Assembler source files.
    //		If the package uses cgo or SWIG, these will be assembled with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top