Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 286 for exit2 (0.05 sec)

  1. hack/update-vendor.sh

    go env                # For the log
    
    function finish {
      ret=$?
      if [[ ${ret} != 0 ]]; then
        echo "An error has occurred. Please see more details in ${LOG_FILE}" >&22
      fi
      exit ${ret}
    }
    trap finish EXIT
    
    # ensure_require_replace_directives_for_all_dependencies:
    # - ensures all existing 'require' directives have an associated 'replace' directive pinning a version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/generate/generate.go

    		words[i] = os.Expand(word, g.expandVar)
    	}
    	return words
    }
    
    var stop = fmt.Errorf("error in generation")
    
    // errorf logs an error message prefixed with the file and line number.
    // It then exits the program (with exit status 1) because generation stops
    // at the first error.
    func (g *Generator) errorf(format string, args ...any) {
    	fmt.Fprintf(os.Stderr, "%s:%d: %s\n", base.ShortPath(g.path), g.lineNum,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. helm-releases/minio-5.1.0.tgz

    $SECRET" $MC_COMMAND STATUS=$? until [ $STATUS = 0 ]; do ATTEMPTS=$(expr $ATTEMPTS + 1) echo \"Failed attempts: $ATTEMPTS\" if [ $ATTEMPTS -gt $LIMIT ]; then exit 1 fi sleep 2 # 1 second intervals between attempts $MC_COMMAND STATUS=$? done set -e # reset `e` as active return 0 } # checkBucketExists ($bucket) # Check if the bucket exists, by using the exit code of `mc ls` checkBucketExists() { BUCKET=$1 CMD=$(${MC} stat myminio/$BUCKET >/dev/null 2>&1) return $? } # createBucket ($bucket, $policy, $purge)...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 18:49:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. helm-releases/minio-5.2.0.tgz

    $SECRET" $MC_COMMAND STATUS=$? until [ $STATUS = 0 ]; do ATTEMPTS=$(expr $ATTEMPTS + 1) echo \"Failed attempts: $ATTEMPTS\" if [ $ATTEMPTS -gt $LIMIT ]; then exit 1 fi sleep 2 # 1 second intervals between attempts $MC_COMMAND STATUS=$? done set -e # reset `e` as active return 0 } # checkBucketExists ($bucket) # Check if the bucket exists, by using the exit code of `mc ls` checkBucketExists() { BUCKET=$1 CMD=$(${MC} stat myminio/$BUCKET >/dev/null 2>&1) return $? } # createBucket ($bucket, $policy, $purge)...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/batch/v1/generated.proto

      // Restricts the check for exit codes to the container with the
      // specified name. When null, the rule applies to all containers.
      // When specified, it should match one the container or initContainer
      // names in the pod template.
      // +optional
      optional string containerName = 1;
    
      // Represents the relationship between the container exit code(s) and the
      // specified values. Containers completed with success (exit code 0) are
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. cni/pkg/repair/repaircontroller.go

    		// If we are filtering on init container termination message and the termination message of 'state' does not match, exit
    		trimmedTerminationMessage := strings.TrimSpace(c.cfg.InitTerminationMsg)
    		return trimmedTerminationMessage == "" || trimmedTerminationMessage == strings.TrimSpace(state.Message)
    	}
    	// Helper function; checks that container exit code matches filter
    	matchExitCode := func(state *corev1.ContainerStateTerminated) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/testing/fuzz.go

    			}
    			return nil
    		}); err != nil {
    			// Internal errors are marked with f.Fail; user code may call this too, before F.Fuzz.
    			// The worker will exit with fuzzWorkerExitCode, indicating this is a failure
    			// (and 'go test' should exit non-zero) but a failing input should not be recorded.
    			f.Errorf("communicating with fuzzing coordinator: %v", err)
    		}
    
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. cmd/kube-scheduler/app/server.go

    					logger.Info("Sync completed")
    				}
    				sched.Run(ctx)
    			},
    			OnStoppedLeading: func() {
    				select {
    				case <-ctx.Done():
    					// We were asked to terminate. Exit 0.
    					logger.Info("Requested to terminate, exiting")
    					os.Exit(0)
    				default:
    					// We lost the lock.
    					logger.Error(nil, "Leaderelection lost")
    					klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    				}
    			},
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/gradients.cc

      backprops[exit_node] = summed_grads;
    
      // Wait until we have all exit nodes' backprops collected before processing
      // the while loop.
      // TODO(skyewm): what if not all the exit nodes are reachable?
      if (backprops.size() < while_ctx->exit_nodes().size())
        return absl::OkStatus();
    
      // We've seen all the exit nodes for this loop and have collected all the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. src/runtime/signal_unix.go

    			// Just in case the relaying gets botched, each m involved in
    			// the relay sleeps for 5 seconds and then does the crash/exit itself.
    			// The faulting m is crashing first so it is the faulting thread in the core dump (see issue #63277):
    			// in expected operation, the first m will wait until the last m has received the SIGQUIT,
    			// and then run crash/exit and the process is gone.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top