Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,725 for exit1 (0.12 sec)

  1. src/packaging/deb/init.d/fess

    		elif [ $? -eq 3 ]; then
    			PID="`cat $PID_FILE`"
    			log_failure_msg "Failed to stop $DESC (pid $PID)"
    			exit 1
    		fi
    		rm -f "$PID_FILE"
    	else
    		log_progress_msg "(not running)"
    	fi
    	log_end_msg 0
    	;;
      status)
    	status_of_proc -p $PID_FILE fess fess && exit 0 || exit $?
        ;;
      restart|force-reload)
    	if [ -f "$PID_FILE" ]; then
    		$0 stop
    		sleep 1
    	fi
    	$0 start
    	;;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. tests/tests_test.go

    		log.Printf("failed to connect database, got error %v", err)
    		os.Exit(1)
    	} else {
    		sqlDB, err := DB.DB()
    		if err != nil {
    			log.Printf("failed to connect database, got error %v", err)
    			os.Exit(1)
    		}
    
    		err = sqlDB.Ping()
    		if err != nil {
    			log.Printf("failed to ping sqlDB, got error %v", err)
    			os.Exit(1)
    		}
    
    		RunMigrations()
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:36:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcarchive/testdata/libgo2/libgo2.go

    static void CRaiseSIGPIPE() {
    	int fds[2];
    
    	if (pipe(fds) == -1) {
    		perror("pipe");
    		exit(EXIT_FAILURE);
    	}
    	// Close the reader end
    	close(fds[0]);
    	// Write to the writer end to provoke a SIGPIPE
    	if (write(fds[1], "some data", 9) != -1) {
    		fprintf(stderr, "write to a closed pipe succeeded\n");
    		exit(EXIT_FAILURE);
    	}
    	close(fds[1]);
    }
    */
    import "C"
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/flexvolume_test.go

    if "%1"=="init" if "%2"=="" (
        echo {"status": "Success"}
        exit 0
    )
    if "%1"=="attach" if "%3"=="" (
        echo {"device": "{{.DevicePath}}", "status": "Success"}
        exit 0
    )
    
    if "%1"=="detach" if "%3"=="" (
        echo {"status": "Success"}
        exit 0
    )
    
    if "%1"=="getvolumename" if "%5"=="" (
        echo {"status": "Success", "volume": "fakevolume"}
        exit 0
    )
    
    if "%1"=="isattached" if "%3"=="" (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/dom_test.go

    				If("p", blockn(i+1), blockn(size))))
    		}
    	}
    
    	blocs = append(blocs,
    		Bloc(blockn(size), Goto("exit")),
    		Bloc("exit", Exit("mem")),
    	)
    
    	return blocs
    }
    
    // genMaxPred maximizes the size of the 'exit' predecessor list.
    func genMaxPred(size int) []bloc {
    	var blocs []bloc
    	blocs = append(blocs,
    		Bloc("entry",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/schedule_test.go

    				Valu("l1", OpLoad, c.config.Types.Int64, 0, nil, "ptr", "mem1"),
    				Valu("l2", OpLoad, c.config.Types.Int64, 0, nil, "ptr", "mem2"),
    				Valu("sum", OpAdd64, c.config.Types.Int64, 0, nil, "l1", "l2"),
    				Goto("exit")),
    			Bloc("exit",
    				Exit("mem3"))),
    	}
    	for _, c := range cases {
    		schedule(c.f)
    		if !isSingleLiveMem(c.f) {
    			t.Error("single-live-mem restriction not enforced by schedule for func:")
    			printFunc(c.f)
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 01:46:00 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/func_test.go

    					Valu("sum", OpAdd64, cfg.config.Types.Int64, 0, nil, "a", "b"),
    					Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    					Goto("exit")),
    				Bloc("exit",
    					Exit("mem"))),
    			cfg.Fun("entry",
    				Bloc("exit",
    					Exit("mem")),
    				Bloc("entry",
    					Valu("a", OpConst64, cfg.config.Types.Int64, 14, nil),
    					Valu("b", OpConst64, cfg.config.Types.Int64, 26, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. src/main/assemblies/files/generate-thumbnail

      convert -thumbnail ${image_size} "${target_file}" "${output_file}"
    elif [[ x"${cmd_type}" = "x" ]] ; then
      echo "No filetype."
      exit 1
    else
      echo "Unsupported type: ${cmd_type}"
      exit 1
    fi
    
    if [[ ! -f ${output_file} ]] ; then
      echo "Thumbnail is not created."
      exit 1
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jun 12 13:13:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/legalize_tfg_with_control_flow.mlir

        %Add, %ctl_11 = Add(%Identity, %Const_9) name("while/Add") {T = i32} : (tensor<*xi32>, tensor<i32>) -> (tensor<*xi32>)
        %Exit, %ctl_12 = Exit(%Switch#0) name("while/Exit") {T = i32} : (tensor<*xi32>) -> (tensor<*xi32>)
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 06 18:31:38 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. pkg/test/framework/suite.go

    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/prow"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/tracing"
    )
    
    // test.Run uses 0, 1, 2 exit codes. Use different exit codes for our framework.
    const (
    	// Indicates a framework-level init error
    	exitCodeInitError = -1
    
    	// Indicates an error due to the setup function supplied by the user
    	exitCodeSetupError = -2
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top