Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,841 for halted (0.12 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ReactorBuildStatus.java

                }
            }
        }
    
        public void halt() {
            halted = true;
        }
    
        public boolean isHalted() {
            return halted;
        }
    
        public boolean isHaltedOrBlacklisted(MavenProject mavenProject) {
            return isBlackListed(mavenProject) || isHalted();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/example/types.go

    	// If this value is nil, the default grace period will be used instead.
    	// The grace period is the duration in seconds after the processes running in the pod are sent
    	// a termination signal and the time when the processes are forcibly halted with a kill signal.
    	// Set this value longer than the expected cleanup time for your process.
    	// +optional
    	TerminationGracePeriodSeconds *int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 5.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/types.go

    	// The grace period is the duration in seconds after the processes running in the carp are sent
    	// a termination signal and the time when the processes are forcibly halted with a kill signal.
    	// Set this value longer than the expected cleanup time for your process.
    	// +optional
    	TerminationGracePeriodSeconds *int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

      // The grace period is the duration in seconds after the processes running in the pod are sent
      // a termination signal and the time when the processes are forcibly halted with a kill signal.
      // Set this value longer than the expected cleanup time for your process.
      // Defaults to 30 seconds.
      // +optional
      optional int64 terminationGracePeriodSeconds = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // The grace period is the duration in seconds after the processes running in the carp are sent
      // a termination signal and the time when the processes are forcibly halted with a kill signal.
      // Set this value longer than the expected cleanup time for your process.
      // Defaults to 30 seconds.
      // +optional
      optional int64 terminationGracePeriodSeconds = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// The grace period is the duration in seconds after the processes running in the carp are sent
    	// a termination signal and the time when the processes are forcibly halted with a kill signal.
    	// Set this value longer than the expected cleanup time for your process.
    	// Defaults to 30 seconds.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // The grace period is the duration in seconds after the processes running in the carp are sent
      // a termination signal and the time when the processes are forcibly halted with a kill signal.
      // Set this value longer than the expected cleanup time for your process.
      // Defaults to 30 seconds.
      // +optional
      optional int64 terminationGracePeriodSeconds = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	// The grace period is the duration in seconds after the processes running in the pod are sent
    	// a termination signal and the time when the processes are forcibly halted with a kill signal.
    	// Set this value longer than the expected cleanup time for your process.
    	// Defaults to 30 seconds.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/runtime/cgo/signal_ios_arm64.s

    	MOVW $139, R1
    	MOVW R1, 8(RSP)
    	B    runtime·exit(SB)
    
    ongothread:
    	// Trigger a SIGSEGV panic.
    	//
    	// The goal is to arrange the stack so it looks like the runtime
    	// function sigpanic was called from the PC that faulted. It has
    	// to be sigpanic, as the stack unwinding code in traceback.go
    	// looks explicitly for it.
    	//
    	// To do this we call into runtime·setsigsegv, which sets the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 06 22:54:58 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSmartCastProvider.kt

         */
        public fun KtExpression.getSmartCastInfo(): KaSmartCastInfo? =
            withValidityAssertion { analysisSession.smartCastProvider.getSmartCastedInfo(this) }
    
        /**
         * Returns the list of implicit smart-casts which are required for the expression to be called. Includes only implicit
         * smart-casts:
         *
         * ```kt
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top