Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 120 for caerror (0.13 sec)

  1. test/fixedbugs/bug385_64.go

    // license that can be found in the LICENSE file.
    
    // Issue 2444
    // Issue 4666: issue with arrays of exactly 4GB.
    
    package main
    
    var z [10 << 20]byte
    
    func main() { // GC_ERROR "stack frame too large"
    	// seq 1 206 | sed 's/.*/	var x& [10<<20]byte/'
    	// seq 1 206 | sed 's/.*/	z = x&/'
    	var x1 [10<<20]byte
    	var x2 [10<<20]byte
    	var x3 [10<<20]byte
    	var x4 [10<<20]byte
    	var x5 [10<<20]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

    #    endif
    #  else
    #    define CU_EXPORT
    #  endif
    #  if _MSC_VER < 1900
    #    define snprintf _snprintf
    #  endif
    #else
    #  define CU_EXPORT
    #endif  /* WIN32 */
    
    #include "CUError.h"
    #include "TestDB.h"   /* not needed here - included for user convenience */
    #include "TestRun.h"  /* not needed here - include (after BOOL define) for user convenience */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    	// m's go.mod file indicates that it supports graph pruning.
    	loadOne := func(m module.Version) (*modFileSummary, error) {
    		return mg.loadCache.Do(m, func() (*modFileSummary, error) {
    			summary, err := goModSummary(m)
    
    			mu.Lock()
    			if err == nil {
    				mg.g.Require(m, summary.require)
    			} else {
    				hasError = true
    			}
    			mu.Unlock()
    
    			return summary, err
    		})
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/interface.go

    	code := s.Code()
    	return code == Unschedulable || code == UnschedulableAndUnresolvable || code == Pending
    }
    
    // AsError returns nil if the status is a success, a wait or a skip; otherwise returns an "error" object
    // with a concatenated message on reasons of the Status.
    func (s *Status) AsError() error {
    	if s.IsSuccess() || s.IsWait() || s.IsSkip() {
    		return nil
    	}
    	if s.err != nil {
    		return s.err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

    /** Deprecated (version 1). @deprecated Use CU_SuiteInfo and CU_register_suites(). */
    CU_EXPORT int test_suite_register(test_suite_t *ts)
    {
    	test_group_t *tg;
    	int error;
    
    	for (tg = ts->groups; tg->pName; tg++)
    		if ((error = CU_register_suites(tg)) != CUE_SUCCESS)
    			return error;
    
    	return CUE_SUCCESS;
    }
    #endif    /* USE_DEPRECATED_CUNIT_NAMES */
    /*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*/
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		// Therefore, this method should not either, but instead act as if the previous call failed,
    		// which means the error should be ignored.
    		if crierror.IsNotFound(err) {
    			continue
    		}
    		if err != nil {
    			// Merely log this here; GetPodStatus will actually report the error out.
    			klog.V(4).InfoS("ContainerStatus return error", "containerID", c.Id, "err", err)
    			return nil, err
    		}
    		status := resp.GetStatus()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

     *  using run_single_suite(), and finally any suite cleanup function 
     *  is called.  If an error condition (other than CUE_NOREGISTRY) 
     *  occurs during the run, the action depends on the current error 
     *  action (see CU_set_error_action()).  An inactive suite is not
     *  considered an error for this function.  Note that the run
     *  statistics (counts of tests, successes, failures) are cleared 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			killSandboxResult.Fail(kubecontainer.ErrKillPodSandbox, err.Error())
    			klog.ErrorS(nil, "Failed to stop sandbox", "podSandboxID", podSandbox.ID)
    		}
    	}
    
    	return
    }
    
    func (m *kubeGenericRuntimeManager) GeneratePodStatus(event *runtimeapi.ContainerEventResponse) (*kubecontainer.PodStatus, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. src/text/template/exec.go

    // processing too clumsy.
    
    // ExecError is the custom error type returned when Execute has an
    // error evaluating its template. (If a write error occurs, the actual
    // error is returned; it will not be of type ExecError.)
    type ExecError struct {
    	Name string // Name of template.
    	Err  error  // Pre-formatted error.
    }
    
    func (e ExecError) Error() string {
    	return e.Err.Error()
    }
    
    func (e ExecError) Unwrap() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. src/runtime/sys_darwin.go

    //go:cgo_import_dynamic libc_madvise madvise "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_mlock mlock "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_error __error "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_usleep usleep "/usr/lib/libSystem.B.dylib"
    
    //go:cgo_import_dynamic libc_proc_regionfilename proc_regionfilename "/usr/lib/libSystem.B.dylib"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top