Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,974 for msbuild (0.18 sec)

  1. pkg/config/schema/collections/mock.go

    			if cfg.Spec.(*testconfig.MockConfig).Key == "" {
    				return nil, errors.New("empty key")
    			}
    			return nil, nil
    		},
    	}.MustBuild()
    
    	// Mocks is a Schemas containing the Mock Schema.
    	Mocks = collection.NewSchemasBuilder().MustAdd(Mock).Build()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. pkg/config/schema/resource/schema.go

    	ValidateProto validation.ValidateFunc
    }
    
    // Build a Schema instance.
    func (b Builder) Build() (Schema, error) {
    	s := b.BuildNoValidate()
    
    	// Validate the schema.
    	if err := s.Validate(); err != nil {
    		return nil, err
    	}
    
    	return s, nil
    }
    
    // MustBuild calls Build and panics if it fails.
    func (b Builder) MustBuild() Schema {
    	s, err := b.Build()
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalCompileIntegrationTest.groovy

                }
             """
    
            outputs.snapshot { succeeds("compileDebugSwift") }
    
            expect:
            // rebuild for Swift4
            succeeds("compileDebugSwift", "-Pswift4")
            outputs.recompiledClasses('main', 'sum', 'greeter', 'multiply')
    
            and:
            // rebuild for Swift3
            succeeds("compileDebugSwift")
            outputs.recompiledClasses('main', 'sum', 'greeter', 'multiply')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. buildscripts/cross-compile.sh

    }
    
    function _build() {
    	local osarch=$1
    	IFS=/ read -r -a arr <<<"$osarch"
    	os="${arr[0]}"
    	arch="${arr[1]}"
    	package=$(go list -f '{{.ImportPath}}')
    	printf -- "--> %15s:%s\n" "${osarch}" "${package}"
    
    	# go build -trimpath to build the binary.
    	export GOOS=$os
    	export GOARCH=$arch
    	export GO111MODULE=on
    	go build -trimpath -tags kqueue -o /dev/null
    }
    
    function main() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 19 01:08:22 UTC 2023
    - 958 bytes
    - Viewed (0)
  5. src/go/build/build.go

    	// Also identify any //go:build comments.
    	content, goBuild, sawBinaryOnly, err := parseFileHeader(content)
    	if err != nil {
    		return false, false, err
    	}
    
    	// If //go:build line is present, it controls.
    	// Otherwise fall back to +build processing.
    	switch {
    	case goBuild != nil:
    		x, err := constraint.Parse(string(goBuild))
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/DefaultJavaPluginConventionTest.groovy

        }
    
        def "default dirs"() {
            expect:
            checkDirs()
        }
    
        def "dynamic dirs"() {
            when:
            project.buildDir = project.file('mybuild')
    
            then:
            checkDirs()
        }
    
        private void checkDirs() {
            assert convention.docsDir == new File(project.buildDir, convention.docsDirName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FixedExclusiveModeCrossProcessCacheAccess.java

            }
            final FileLock fileLock = lockManager.lock(lockTarget, lockOptions, cacheDisplayName, "", unused -> {});
            try {
                boolean rebuild = initializationAction.requiresInitialization(fileLock);
                if (rebuild) {
                    fileLock.writeFile(() -> initializationAction.initialize(fileLock));
                }
                onOpenAction.accept(fileLock);
            } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/StartBuildOrRespondWithBusy.java

        }
    
        @Override
        protected void doBuild(final DaemonCommandExecution execution, final Build build) {
            DaemonStateControl stateCoordinator = execution.getDaemonStateControl();
    
            try {
                Runnable command = new Runnable() {
                    @Override
                    public void run() {
                        LOGGER.info("Daemon is about to start building {}. Dispatching build started information...", build);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_pgo.txt

    # Test go build -pgo flag.
    # Specifically, the build cache handles profile content correctly.
    
    [short] skip 'compiles and links executables'
    
    # Set up fresh GOCACHE.
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    # build without PGO
    go build triv.go
    
    # build with PGO, should trigger rebuild
    # starting with an empty profile (the compiler accepts it)
    go build -x -pgo=prof -o triv.exe triv.go
    stderr 'preprofile.*-i.*prof'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. releasenotes/notes/update-envoy-filters-in-place.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 18 06:50:06 UTC 2023
    - 274 bytes
    - Viewed (0)
Back to top