Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 299 for Terminate (0.78 sec)

  1. docs/en/docs/tutorial/handling-errors.md

    The benefit of raising an exception over `return`ing a value will be more evident in the section about Dependencies and Security.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/cmd/internal/objabi/flag.go

    // If nil, those options are reported as invalid options.
    // If DebugSSA returns a non-empty string, that text is reported as a compiler error.
    // If phase is "help", it should print usage information and terminate the process.
    type DebugSSA func(phase, flag string, val int, valString string) string
    
    // NewDebugFlag constructs a DebugFlag for the fields of debug, which
    // must be a pointer to a struct.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 23:08:09 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. LICENSES/third_party/forked/shell2junit/LICENSE

    Contribution incorporated within the Work constitutes direct or contributory 
    patent infringement, then any patent licenses granted to You under this 
    License for that Work shall terminate as of the date such litigation is 
    filed. 
    
    4. Redistribution. You may reproduce and distribute copies of the Work or 
    Derivative Works thereof in any medium, with or without modifications, and 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 11:48:19 UTC 2021
    - 9.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_non_crash_signal.txt

    # When a process terminates another process, it provides an exit code.
    [GOOS:windows] skip
    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # FuzzNonCrash sends itself a signal that does not appear to be a crash.
    # We should not save a crasher.
    ! go test -fuzz=FuzzNonCrash
    ! exists testdata
    ! stdout unreachable
    ! stderr unreachable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_io_error.txt

    		sendGarbageToCoordinator(f)
    		time.Sleep(3600 * time.Second) // pause until coordinator terminates the process
    	}
    	f.Fuzz(func(*testing.T, []byte) {})
    }
    
    func FuzzClosePipeAfter(f *testing.F) {
    	f.Fuzz(func(t *testing.T, _ []byte) {
    		if isWorker() {
    			sendGarbageToCoordinator(t)
    			time.Sleep(3600 * time.Second) // pause until coordinator terminates the process
    		}
    	})
    }
    -- io_error_windows_test.go --
    package io_error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. pkg/kube/kclient/events.go

    	e.eventRecorder.Eventf(object, eventtype, reason, messageFmt, args...)
    }
    
    // Shutdown terminates the event recorder. This must be called upon completion of writing events, and events should not be
    // written once terminated.
    func (e *EventRecorder) Shutdown() {
    	e.eventBroadcaster.Shutdown()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 22:23:28 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fuzz_mutator_repeat.txt

    # TODO(jayconrod): support shared memory on more platforms.
    [!GOOS:darwin] [!GOOS:linux] [!GOOS:windows] skip
    
    # Verify that the fuzzing engine records the actual crashing input, even when
    # a worker process terminates without communicating the crashing input back
    # to the coordinator.
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Start fuzzing. The worker crashes after 100 iterations.
    # The fuzz function writes the crashing input to "want" before exiting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/internal/testenv/exec.go

    			// expires) and the process being forcibly terminated (via the WaitDelay
    			// field), and a second one for the delay between the process being
    			// terminated and the test logging its output for debugging.
    			//
    			// (We want to ensure that the test process itself has enough time to
    			// log the output before it is also terminated.)
    			cmdTimeout := testTimeout - 2*gracePeriod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. cluster/images/etcd/migrate/migrate_server.go

    			err = etcdCmd.Process.Kill()
    			if err != nil {
    				return fmt.Errorf("error killing etcd: %v", err)
    			}
    			return fmt.Errorf("timed out waiting for etcd on port %d", r.cfg.port)
    		}
    	}
    }
    
    // Stop terminates the etcd server process. If the etcd server process has not been started
    // or is not still running, this returns an error.
    func (r *EtcdMigrateServer) Stop() error {
    	if r.cmd == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 30 16:29:59 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  10. pkg/ctrlz/ctrlz.go

    	log.Infof("ControlZ available at %s", s.httpServer.Addr)
    	if listeningTestProbe != nil {
    		go listeningTestProbe()
    	}
    	err := s.httpServer.Serve(s.listener)
    	log.Infof("ControlZ terminated: %v", err)
    	s.shutdown.Done()
    }
    
    // Close terminates ControlZ.
    //
    // Close is not normally used by programs that expose ControlZ, it is primarily intended to be
    // used by tests.
    func (s *Server) Close() {
    	log.Info("Closing ControlZ")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top