Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 128 for objectFile (0.19 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

             """
    
            expect:
            succeeds "compileDebug"
            result.assertTasksExecuted(":compileDebugSwift", ':compileDebug')
            executable("build/exe/main/debug/App").assertDoesNotExist()
            objectFiles(app.main)*.assertExists()
        }
    
        def "can use installDirectory as task dependency"() {
            given:
            def app = new SwiftApp()
            settingsFile << "rootProject.name = '${app.projectName}'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (1)
  2. cmd/peer-rest-client.go

    		}
    	}()
    	return ch, nil
    }
    
    func (client *peerRESTClient) SpeedTest(ctx context.Context, opts speedTestOpts) (SpeedTestResult, error) {
    	values := make(url.Values)
    	values.Set(peerRESTSize, strconv.Itoa(opts.objectSize))
    	values.Set(peerRESTConcurrent, strconv.Itoa(opts.concurrency))
    	values.Set(peerRESTDuration, opts.duration.String())
    	values.Set(peerRESTStorageClass, opts.storageClass)
    	values.Set(peerRESTBucket, opts.bucketName)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

             """
    
            expect:
            succeeds "compileDebug"
            result.assertTasksExecuted(tasks.debug.compile, ':compileDebug')
            executable("build/exe/main/debug/app").assertDoesNotExist()
            objectFiles(app.main)*.assertExists()
        }
    
        @ToBeFixedForConfigurationCache
        def "can use installDirectory as task dependency"() {
            settingsFile << "rootProject.name = 'app'"
            def app = new CppApp()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  4. 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)
  5. cmd/peer-rest-server.go

    	duration, err := time.ParseDuration(durationStr)
    	if err != nil {
    		duration = time.Second * 10
    	}
    
    	done := keepHTTPResponseAlive(w)
    
    	result, err := selfSpeedTest(r.Context(), speedTestOpts{
    		objectSize:      size,
    		concurrency:     concurrent,
    		duration:        duration,
    		storageClass:    storageClass,
    		bucketName:      bucketName,
    		enableSha256:    enableSha256,
    		enableMultipart: enableMultipart,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/help/helpdoc.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
    - 36.3K bytes
    - Viewed (0)
  7. cmd/batch-handlers.go

    		break
    	}
    
    	return nil
    }
    
    //msgp:ignore batchReplicationJobError
    type batchReplicationJobError struct {
    	Code           string
    	Description    string
    	HTTPStatusCode int
    	ObjectSize     int64
    }
    
    func (e batchReplicationJobError) Error() string {
    	return e.Description
    }
    
    // Validate validates the job definition input
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/go/build/build.go

    	IgnoredOtherFiles []string // non-.go source files ignored for this build
    	CFiles            []string // .c source files
    	CXXFiles          []string // .cc, .cpp and .cxx source files
    	MFiles            []string // .m (Objective-C) source files
    	HFiles            []string // .h, .hh, .hpp and .hxx source files
    	FFiles            []string // .f, .F, .for and .f90 Fortran source files
    	SFiles            []string // .s source files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top