Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for failOnError (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/request/union/union.go

    type unionAuthRequestHandler struct {
    	// Handlers is a chain of request authenticators to delegate to
    	Handlers []authenticator.Request
    	// FailOnError determines whether an error returns short-circuits the chain
    	FailOnError bool
    }
    
    // New returns a request authenticator that validates credentials using a chain of authenticator.Request objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/MinimalScalaCompileOptions.java

            this.keepAliveMode = compileOptions.getKeepAliveMode().get();
        }
    
        public boolean isFailOnError() {
            return failOnError;
        }
    
        public void setFailOnError(boolean failOnError) {
            this.failOnError = failOnError;
        }
    
        public boolean isDeprecation() {
            return deprecation;
        }
    
        public void setDeprecation(boolean deprecation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompilerTest.groovy

            }
        }
    
        def "propagates compile failure when both compileOptions.failOnError and groovyCompileOptions.failOnError are true"() {
            def failure
            target.execute(spec) >> { throw failure = new CompilationFailedException() }
    
            spec.compileOptions.failOnError = true
            spec.groovyCompileOptions.failOnError = true
    
            when:
            compiler.execute(spec)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/token/union/union.go

    type unionAuthTokenHandler struct {
    	// Handlers is a chain of request authenticators to delegate to
    	Handlers []authenticator.Token
    	// FailOnError determines whether an error returns short-circuits the chain
    	FailOnError bool
    }
    
    // New returns a token authenticator that validates credentials using a chain of authenticator.Token objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/BaseScalaCompileOptions.java

        }
    
        /**
         * Fail the build on compilation errors.
         */
        @Input
        public boolean isFailOnError() {
            return failOnError;
        }
    
        public void setFailOnError(boolean failOnError) {
            this.failOnError = failOnError;
        }
    
        /**
         * Generate deprecation information.
         */
        @Console
        public boolean isDeprecation() {
            return deprecation;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/MinimalGroovyCompileOptions.java

            this.disabledGlobalASTTransformations = compileOptions.getDisabledGlobalASTTransformations().get();
        }
    
        public boolean isFailOnError() {
            return failOnError;
        }
    
        public void setFailOnError(boolean failOnError) {
            this.failOnError = failOnError;
        }
    
        public boolean isVerbose() {
            return verbose;
        }
    
        public void setVerbose(boolean verbose) {
            this.verbose = verbose;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/BasicZincScalaCompilerIntegrationTest.groovy

        }
    
        def "compile bad scala code do not fail the build when options.failOnError is false"() {
            given:
            badCode()
    
            and:
            buildFile << "compileScala.options.failOnError = false\n"
    
            expect:
            succeeds 'compileScala'
        }
    
        def "compile bad scala code do not fail the build when scalaCompileOptions.failOnError is false"() {
            given:
            badCode()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/MinimalJavaCompileOptions.java

        public void setDeprecation(boolean deprecation) {
            this.deprecation = deprecation;
        }
    
        public boolean isFailOnError() {
            return failOnError;
        }
    
        public void setFailOnError(boolean failOnError) {
            this.failOnError = failOnError;
        }
    
        public boolean isListFiles() {
            return listFiles;
        }
    
        public void setListFiles(boolean listFiles) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. operator/pkg/object/objects_test.go

    		input       string
    		failOnError bool
    		expectErr   bool
    		expectCount int
    		expectOut   bool
    	}{
    		{
    			name:        "well formed yaml, no errors",
    			input:       "well-formed",
    			failOnError: false,
    			expectErr:   false,
    			expectCount: 2,
    		},
    		{
    			name:        "malformed yaml, fail on error",
    			input:       "malformed",
    			failOnError: true,
    			expectErr:   true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/NormalizingJavaCompilerTest.groovy

                workResult
            }
            result == workResult
        }
    
        def "propagates compile failure when failOnError is true"() {
            def failure
            target.execute(spec) >> { throw failure = new CompilationFailedException() }
    
            spec.compileOptions.failOnError = true
    
            when:
            compiler.execute(spec)
    
            then:
            CompilationFailedException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top