Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 293 for eofline (0.28 sec)

  1. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

                    .append(remoteRepositories);
    
            return sb.toString();
        }
    
        public boolean isOffline() {
            return offline;
        }
    
        public ArtifactResolutionRequest setOffline(boolean offline) {
            this.offline = offline;
    
            return this;
        }
    
        public boolean isForceUpdate() {
            return forceUpdate;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginConfigurationCachingIntegrationTest.groovy

                t.doLast {
                    println "offline: " + serviceRef.get()._buildState.startParameter.offline
                }
            """
            when:
            succeeds "t", "--configuration-cache"
    
            then:
            output.contains("offline: false")
    
            when:
            succeeds "t", "--configuration-cache", "--offline"
    
            then:
            output.contains("offline: true")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:49:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/HttpScriptPluginIntegrationSpec.groovy

            fails()
        }
    
        def "reasonable error message while --offline when applying a script with a query part"() {
            def url = "$server.uri/external.gradle?query"
            buildFile << """
                apply from: '$url'
                defaultTasks 'doStuff'
            """
            server.stop()
            expect:
            fails("--offline")
            failure.assertHasCause("Could not read script '$url'")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 30 08:26:30 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. src/cmd/cover/func.go

    	for _, b := range profile.Blocks {
    		if b.StartLine > f.endLine || (b.StartLine == f.endLine && b.StartCol >= f.endCol) {
    			// Past the end of the function.
    			break
    		}
    		if b.EndLine < f.startLine || (b.EndLine == f.startLine && b.EndCol <= f.startCol) {
    			// Before the beginning of the function
    			continue
    		}
    		total += int64(b.NumStmt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/LinePrefixingStyledTextOutput.java

                output.text(prefix);
                prefixed = true;
            }
            output.text(text);
        }
    
        @Override
        protected void doEndLine(CharSequence endOfLine) {
            output.text(endOfLine);
        }
    
        @Override
        protected void doStartLine() {
            output.text(prefix);
        }
    
        @Override
        protected void doStyleChange(Style style) {
            output.style(style);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheKeyIntegrationTest.groovy

        def configurationCache = newConfigurationCacheFixture()
    
        def "offline flag is part of the cache key"() {
            when:
            configurationCacheRun "help"
            then:
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun "help", "--offline"
            then:
            configurationCache.assertStateStored()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

                dependencies {
                    conf "org:testA:+"
                }
            """
    
            when:
            fails 'checkDeps', '--offline'
    
            then:
            failure.assertHasCause("No cached version listing for org:testA:+ available for offline mode")
    
            when:
            repositoryInteractions {
                'org:testA:3' {
                    expectResolve()
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. cmd/erasure-heal_test.go

    	"bytes"
    	"context"
    	"crypto/rand"
    	"io"
    	"os"
    	"testing"
    )
    
    var erasureHealTests = []struct {
    	dataBlocks, disks int
    
    	// number of offline disks is also number of staleDisks for
    	// erasure reconstruction in this test
    	offDisks int
    
    	// bad disks are online disks which return errors
    	badDisks, badStaleDisks int
    
    	blocksize, size int64
    	algorithm       BitrotAlgorithm
    	shouldFail      bool
    }{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheRemoteBuildScriptIntegrationTest.groovy

        }
    
        def "reuse cache for offline build"() {
            when:
            configurationCacheRun 'ok'
    
            then:
            configurationCache.assertStateStored()
    
            when:
            scriptFile << """
                print 'update remote script'
            """
    
            and:
            executer.withArgument("--offline")
            configurationCacheRun 'ok'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCachePolicy.java

            this.moduleCacheRules = new ArrayList<>(policy.moduleCacheRules);
            this.artifactCacheRules = new ArrayList<>(policy.artifactCacheRules);
            this.offline = policy.offline;
            this.refresh = policy.refresh;
        }
    
        /**
         * Sets the validator to invoke prior to each mutation.
         */
        public void setMutationValidator(MutationValidator validator) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 22:04:14 UTC 2023
    - 14.9K bytes
    - Viewed (0)
Back to top