Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 149 for buildC (0.08 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    == Suggestions for authoring your build
    
    [[custom_actions]]
    === Review usages of `doFirst` and `doLast`
    
    Using `doFirst` and `doLast` from a build script on a cacheable task ties you to build script changes since the implementation of the closure comes from the build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/build.go

    			base.Fatal(err)
    		}
    		v = mg.Selected(path)
    	}
    
    	if v == "none" {
    		return &modinfo.ModulePublic{
    			Path: path,
    			Error: &modinfo.ModuleError{
    				Err: "module not in current build",
    			},
    		}
    	}
    
    	return moduleInfo(ctx, rs, module.Version{Path: path, Version: v}, 0, nil)
    }
    
    // addUpdate fills in m.Update if an updated version is available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. .github/workflows/build.yml

            uses: gradle/actions/setup-gradle@v3
    
          - name: Build okcurl
            run: ./gradlew okcurl:nativeImage
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
          - name: Build ConsoleLauncher
            run: ./gradlew -PgraalBuild=true native-image-tests:nativeImage
    
          - name: Run Checks
            run: ./native-image-tests/build/graal/ConsoleLauncher
    
      testandroid:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/imports/build.go

    // lines beginning with '// +build' are taken as build directives.
    //
    // The file is accepted only if each such line lists something
    // matching the file. For example:
    //
    //	// +build windows linux
    //
    // marks the file as applicable only on Windows and Linux.
    //
    // If tags["*"] is true, then ShouldBuild will consider every
    // build tag except "ignore" to be both true and false for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/build.go

    // license that can be found in the LICENSE file.
    
    // This file is a lightly modified copy go/build/build.go with unused parts
    // removed.
    
    package modindex
    
    import (
    	"bytes"
    	"cmd/go/internal/fsys"
    	"cmd/go/internal/str"
    	"errors"
    	"fmt"
    	"go/ast"
    	"go/build"
    	"go/build/constraint"
    	"go/token"
    	"io"
    	"io/fs"
    	"path/filepath"
    	"sort"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/shell.go

    			if cfg.BuildX {
    				sh.ShowCmd("", "mv %s %s", src, dst)
    			}
    			return nil
    		}
    	}
    
    	return sh.CopyFile(dst, src, perm, force)
    }
    
    // copyFile is like 'cp src dst'.
    func (sh *Shell) CopyFile(dst, src string, perm fs.FileMode, force bool) error {
    	if cfg.BuildN || cfg.BuildX {
    		sh.ShowCmd("", "cp %s %s", src, dst)
    		if cfg.BuildN {
    			return nil
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/groovy/build.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/networkfilter.go

    	return push.Telemetry.TCPFilters(proxy, class, svc)
    }
    
    // setAccessLogAndBuildTCPFilter sets the AccessLog configuration in the given
    // TcpProxy instance and builds a TCP filter out of it.
    func setAccessLogAndBuildTCPFilter(push *model.PushContext, node *model.Proxy,
    	config *tcp.TcpProxy, class istionetworking.ListenerClass, svc *model.Service,
    ) *listener.Filter {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIntegrationTest.groovy

            outputContains("Hello from root build's plugin")
        }
    
        @ToBeFixedForConfigurationCache
        def "prefers a source mapping defined in the root build to one defined in a nested build when the nested build requests plugins"() {
            given:
            vcsMapping('org.test:first', first)
            // root build does not inject any plugins to second
            vcsMapping('org.test:second', second)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/generate/generate.go

    			g.errorf("no arguments to directive")
    		}
    		if words[0] == "-command" {
    			g.setShorthand(words)
    			continue
    		}
    		// Run the command line.
    		if cfg.BuildN || cfg.BuildX {
    			fmt.Fprintf(os.Stderr, "%s\n", strings.Join(words, " "))
    		}
    		if cfg.BuildN {
    			continue
    		}
    		g.exec(words)
    	}
    	if err != nil && err != io.EOF {
    		g.errorf("error reading %s: %s", base.ShortPath(g.path), err)
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top