Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 701 for cpuset (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/errors.go

    	if err == nil {
    		return false
    	}
    	if e, ok := err.(*StorageError); ok {
    		return e.Code == code
    	}
    	return false
    }
    
    // InvalidError is generated when an error caused by invalid API object occurs
    // in the storage package.
    type InvalidError struct {
    	Errs field.ErrorList
    }
    
    func (e InvalidError) Error() string {
    	return e.Errs.ToAggregate().Error()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:39:10 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractFailure.java

        final String description;
        final List<String> causes;
    
        public AbstractFailure(String description, List<String> causes) {
            this.description = description;
            this.causes = causes;
        }
    
        @Override
        public void assertHasCause(String message) {
            if (!causes.contains(message)) {
                throw new AssertionFailedError(String.format("Expected cause '%s' not found in %s", message, causes));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestFailure.java

        private final TestFailureDetails details;
    
        private final List<TestFailure> causes;
    
        public DefaultTestFailure(Throwable rawFailure, TestFailureDetails details, List<TestFailure> causes) {
            this.rawFailure = rawFailure;
            this.details = details;
            this.causes = causes;
        }
    
        @Override
        public Throwable getRawFailure() {
            return rawFailure;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheException.kt

        constructor(
            message: String,
            causes: List<Throwable>,
            summary: () -> String
        ) : super(
            { "$message\n${summary()}" },
            causes
        )
    
        internal
        constructor(
            causes: List<Throwable>,
            summary: () -> String
        ) : this(
            "Configuration cache problems found in this build.",
            causes,
            summary
        )
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/exceptions/ContextAwareException.java

                    causes.add(node);
                }
            });
            return causes;
        }
    
        public void accept(ExceptionContextVisitor contextVisitor) {
            Throwable cause = getCause();
            if (cause != null) {
                contextVisitor.visitCause(cause);
                visitCauses(cause, contextVisitor);
            }
            contextVisitor.endVisiting();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 13:32:53 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    			panic("these inputs caused a crash!")
    		}
    	})
    }
    
    func FuzzInt(f *testing.F) {
    	f.Add(0)
    	f.Fuzz(func(t *testing.T, a int) {
    		if a != 0 {
    			panic("this input caused a crash!")
    		}
    	})
    }
    
    func FuzzUint(f *testing.F) {
    	f.Add(uint(0))
    	f.Fuzz(func(t *testing.T, a uint) {
    		if a != 0 {
    			panic("this input caused a crash!")
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultFailure.java

        public List<? extends Failure> getCauses() {
            return causes;
        }
    
        public static DefaultFailure fromThrowable(Throwable t) {
            StringWriter out = new StringWriter();
            PrintWriter wrt = new PrintWriter(out);
            t.printStackTrace(wrt);
            Throwable cause = t.getCause();
            DefaultFailure causeFailure = cause != null && cause != t ? fromThrowable(cause) : null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/FileNotifyInformation.java

        /**
         * Any file name change in the watched directory or subtree causes a change notification wait operation to return.
         * Changes include renaming, creating, or deleting a file.
         */
        public static final int FILE_NOTIFY_CHANGE_FILE_NAME = 0x00000001;
    
        /**
         * Any directory-name change in the watched directory or subtree causes a change notification wait operation to
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/MultipleBuildFailures.java

    public class MultipleBuildFailures extends DefaultMultiCauseException {
        public MultipleBuildFailures(Collection<? extends Throwable> causes) {
            super("Build completed with " + causes.size() + " failures.", causes);
        }
    
        public void replaceCauses(List<? extends Throwable> causes) {
            super.initCauses(causes);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 16 07:51:10 UTC 2018
    - 1.1K bytes
    - Viewed (0)
Back to top