Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for OnError (0.11 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbSession.java

                SmbTree t = (SmbTree)e.nextElement();
                t.treeDisconnect( inError );
            }
    
            if( !inError && transport.server.security != ServerMessageBlock.SECURITY_SHARE ) {
                /*
                 * Logoff And X Request / Response
                 */
    
                SmbComLogoffAndX request = new SmbComLogoffAndX( null );
                request.uid = uid;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 18.6K bytes
    - Viewed (0)
  2. pkg/volume/fc/attacher.go

    	if err != nil {
    		klog.Errorf("fc: failed to get device from mnt: %s\nError: %v", deviceMountPath, err)
    		return err
    	}
    	// Unmount for deviceMountPath(=globalPDPath)
    	err = mount.CleanupMountPoint(deviceMountPath, detacher.mounter, false)
    	if err != nil {
    		return fmt.Errorf("fc: failed to unmount: %s\nError: %v", deviceMountPath, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 31 12:02:51 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  3. test/fixedbugs/issue46234.go

    	if err == nil {
    		log.Fatalf("Passed, expected an error")
    	}
    
    	want := []byte("nil pointer dereference")
    	if !bytes.Contains(output, want) {
    		log.Fatalf("Unmatched error message %q:\nin\n%s\nError: %v", want, output, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    tatus:n.status}))}),Ut(n,"error",function(){return e(G(Error("Network Error"),{xhr:n}))}),Ut(n,"timeout",function(){return e(G(Error("Network Timeout"),{xhr:n}))}),n.send(i.data)})}function de(n,r,o){return new se(function(t,e){var i=new Image;i.onerror=e,i.onload=function(){return t(i)},o&&(i.sizes=o),r&&(i.srcset=r),i.src=n})}function fe(t){if("loading"===document.readyState)var e=Ut(document,"DOMContentLoaded",function(){e(),t()});else t()}function pe(t,e){return e?V(t).indexOf(W(e)):Ot(Pt(t)...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  5. src/runtime/testdata/testprog/crash.go

    	}()
    	panic(P("XXX"))
    }
    
    // Test that panic while panicking discards error message
    // See issue 52257
    type exampleError struct{}
    
    func (e exampleError) Error() string {
    	panic("important multi-line\nerror message")
    }
    
    func ErrorPanic() {
    	panic(exampleError{})
    }
    
    type examplePanicError struct{}
    
    func (e examplePanicError) Error() string {
    	panic(exampleError{})
    }
    
    func DoubleErrorPanic() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. internal/logger/target/console/console.go

    	}
    
    	if len(entry.Trace.Variables) > 0 {
    		tagString = "\n       " + tagString
    	}
    
    	msg := color.RedBold(entry.Trace.Message)
    	output := fmt.Sprintf("\n%s\n%s%s%s%s%s%s\nError: %s%s\n%s",
    		apiString, timeString, deploymentID, requestID, remoteHost, host, userAgent,
    		msg, tagString, strings.Join(trace, "\n"))
    
    	fmt.Fprintln(c.output, output)
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/reset/removeetcdmember_test.go

    			} else {
    				dataDir, err = getEtcdDataDir(manifestPath, nil)
    			}
    
    			if (err != nil) != test.expectErr {
    				t.Fatalf(dedent.Dedent(
    					"getEtcdDataDir failed\n%s\nexpected error: %t\n\tgot: %t\nerror: %v"),
    					name,
    					test.expectErr,
    					(err != nil),
    					err,
    				)
    			}
    
    			if dataDir != test.dataDir {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 03:55:19 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  8. pkg/volume/iscsi/iscsi_util.go

    	if err != nil {
    		klog.Errorf("iscsi delete devices: lun is not a number: %s\nError: %v", c.iscsiDisk.Lun, err)
    		return err
    	}
    	// Enumerate the devices so we can delete them
    	deviceNames, err := c.deviceUtil.FindDevicesForISCSILun(c.iscsiDisk.Iqn, lunNumber)
    	if err != nil {
    		klog.Errorf("iscsi delete devices: could not get devices associated with LUN %d on target %s\nError: %v",
    			lunNumber, c.iscsiDisk.Iqn, err)
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tfcompile_main.cc

        return 0;
      }
      bool parsed_flags_ok = tensorflow::Flags::Parse(&argc, argv, flag_list);
      QCHECK(parsed_flags_ok) << "\n" << usage;
    
      tensorflow::port::InitMain(usage.c_str(), &argc, &argv);
      QCHECK(argc == 1) << "\nERROR: This command does not take any arguments "
                           "other than flags. See --help.\n\n";
      tensorflow::Status status = tensorflow::tfcompile::Main(flags);
      if (status.code() == absl::StatusCode::kInvalidArgument) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbSessionImpl.java

                                wasInUse |= t.treeDisconnect(inError, false);
                            }
                            catch ( Exception e ) {
                                log.warn("Failed to disconnect tree " + t, e);
                            }
                        }
                    }
    
                    if ( !inError && trans.isSMB2() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
Back to top