Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for object1v2 (0.22 sec)

  1. cmd/object-handlers.go

    		if replica { // no need to check replication on receiver
    			return dsc, nil
    		}
    		dsc = checkReplicateDelete(ctx, bucket, ObjectToDelete{
    			ObjectV: ObjectV{
    				ObjectName: object,
    				VersionID:  opts.VersionID,
    			},
    		}, *oi, opts, gerr)
    		// Mutations of objects on versioning suspended buckets
    		// affect its null version. Through opts below we select
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. cmd/server_test.go

    		c.Assert(err, nil)
    		// assert the status of http response.
    		c.Assert(response.StatusCode, http.StatusOK)
    		// Append all objects.
    		delObjReq.Objects = append(delObjReq.Objects, ObjectToDelete{
    			ObjectV: ObjectV{
    				ObjectName: objName,
    			},
    		})
    	}
    	// Marshal delete request.
    	deleteReqBytes, err := xml.Marshal(delObjReq)
    	c.Assert(err, nil)
    
    	// Delete list of objects.
    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/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. 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)
  5. 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)
  6. 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