Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CIInfo (0.05 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

            public Path topDirectory;
    
            @Nullable
            public Path rootDirectory;
    
            @Nullable
            public List<CoreExtensions> extensions;
    
            @Nullable
            public CIInfo ciInfo;
    
            @Nullable
            public Options options;
    
            public Map<String, String> extraInterpolationSource() {
                Map<String, String> extra = new HashMap<>();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:39:11 UTC 2025
    - 25.5K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

                if (context.options().nonInteractive().orElse(false)) {
                    return false;
                } else {
                    if (context.invokerRequest.ciInfo().isPresent()) {
                        CIInfo ci = context.invokerRequest.ciInfo().get();
                        context.logger.info(
                                "Making this build non-interactive, because CI detected. Disable this detection by adding --force-interactive.");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 28 13:01:07 UTC 2025
    - 43.2K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

            boolean quiet = context.options().quiet().orElse(false);
            boolean logFile = context.options().logFile().isPresent();
            boolean quietCI = context.invokerRequest.ciInfo().isPresent()
                    && !context.options().forceInteractive().orElse(false);
    
            TransferListener delegate;
            if (quiet || noTransferProgress || quietCI) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.35.md

    
    ## Dependencies
    
    ### Added
    - cyphar.com/go-pathrs: v0.2.1
    - github.com/Masterminds/semver/v3: [v3.4.0](https://github.com/Masterminds/semver/tree/v3.4.0)
    - github.com/gkampitakis/ciinfo: [v0.3.2](https://github.com/gkampitakis/ciinfo/tree/v0.3.2)
    - github.com/gkampitakis/go-diff: [v1.3.2](https://github.com/gkampitakis/go-diff/tree/v1.3.2)
    - github.com/gkampitakis/go-snaps: [v0.5.15](https://github.com/gkampitakis/go-snaps/tree/v0.5.15)
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Dec 17 13:01:55 UTC 2025
    - 228.5K bytes
    - Viewed (0)
Back to top