Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for Esterror (0.17 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/MSBuildExecutor.java

            String gradleStderr = result.getError();
            if (!outputs.isEmpty()) {
                gradleStdout = fileContents(outputs.get(0).stdout);
                gradleStderr = fileContents(outputs.get(0).stderr);
            }
            System.out.println(result.getOut());
            System.out.println(gradleStdout);
            System.out.println(gradleStderr);
            System.out.println(result.getError());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FutureCallbackTest.java

        assertThat(successCalls[0]).isEqualTo(1);
        assertThat(failureCalls[0]).isEqualTo(0);
      }
    
      public void testOnSuccessThrowsError() throws Exception {
        class TestError extends Error {}
        TestError error = new TestError();
        String result = "result";
        SettableFuture<String> future = SettableFuture.create();
        int[] successCalls = new int[1];
        int[] failureCalls = new int[1];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Nov 15 16:33:21 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprogcgo/deadlock.go

    package main
    
    /*
    char *geterror() {
    	return "cgo error";
    }
    */
    import "C"
    import (
    	"fmt"
    )
    
    func init() {
    	register("CgoPanicDeadlock", CgoPanicDeadlock)
    }
    
    type cgoError struct{}
    
    func (cgoError) Error() string {
    	fmt.Print("") // necessary to trigger the deadlock
    	return C.GoString(C.geterror())
    }
    
    func CgoPanicDeadlock() {
    	panic(cgoError{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 509 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/WebApiUtil.java

        }
    
        public static void setError(final int statusCode, final String message) {
            LaRequestUtil.getOptionalRequest().ifPresent(req -> req.setAttribute(WEB_API_EXCEPTION, new WebApiException(statusCode, message)));
        }
    
        public static void setError(final int statusCode, final Exception e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_darwin_amd64.c

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include <string.h> /* for strerror */
    #include <pthread.h>
    #include <signal.h>
    #include "libcgo.h"
    #include "libcgo_unix.h"
    
    static void* threadentry(void*);
    static void (*setg_gcc)(void*);
    
    void
    x_cgo_init(G *g, void (*setg)(void*), void **tlsg, void **tlsbase)
    {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 12 03:56:28 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/policy_options_test.go

    			policyOpt, _ := NewStaticPolicyOptions(testCase.policyOption)
    			err := ValidateStaticPolicyOptions(policyOpt, testCase.topology, topoMgrStore)
    			gotError := (err != nil)
    			if gotError != testCase.expectedErr {
    				t.Errorf("testCase %q failed, got %v expected %v", testCase.description, gotError, testCase.expectedErr)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/bootstraptoken/node/token.go

    		var lastError error
    		err = wait.PollUntilContextTimeout(
    			context.Background(),
    			kubeadmconstants.KubernetesAPICallRetryInterval,
    			kubeadmapi.GetActiveTimeouts().KubernetesAPICall.Duration,
    			true, func(_ context.Context) (bool, error) {
    				if err := apiclient.CreateOrUpdateSecret(client, updatedOrNewSecret); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. pkg/wasm/httpfetcher.go

    	b := backoff.NewExponentialBackOff(o)
    	var lastError error
    	for attempts < f.requestMaxRetry {
    		attempts++
    		req, err := http.NewRequestWithContext(ctx, http.MethodGet, url, nil)
    		if err != nil {
    			wasmLog.Debugf("wasm module download request failed: %v", err)
    			return nil, err
    		}
    		resp, err := c.Do(req)
    		if err != nil {
    			lastError = err
    			wasmLog.Debugf("wasm module download request failed: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/MSBuildVersionLocator.java

            if (!vsWhereOutput.getError().trim().isEmpty()) {
                throw new IllegalStateException(String.format("Could not determine the location of MSBuild %s: %s", vsVersion.getMajor(), vsWhereOutput.getError()));
            }
    
            String location = vsWhereOutput.getOut().trim();
            TestFile msbuild;
            if (!location.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/discovery/file/file.go

    	var clusterinfoCM *v1.ConfigMap
    
    	var lastError error
    	err = wait.PollUntilContextTimeout(context.Background(),
    		constants.DiscoveryRetryInterval, discoveryTimeout,
    		true, func(_ context.Context) (bool, error) {
    			clusterinfoCM, lastError = client.CoreV1().ConfigMaps(metav1.NamespacePublic).Get(context.TODO(), bootstrapapi.ConfigMapClusterInfo, metav1.GetOptions{})
    			if lastError != nil {
    				if apierrors.IsForbidden(lastError) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top