Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 366 for wren (0.06 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // a public default constructor.
    //
    // An object managed for a thread by a ThreadLocal instance is deleted
    // when the thread exits.  Or, if the ThreadLocal instance dies in
    // that thread, when the ThreadLocal dies.  It's the user's
    // responsibility to ensure that all other threads using a ThreadLocal
    // have exited when it dies, or the per-thread objects for those
    // threads will not be deleted.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller.go

    )
    
    // Reasons for DaemonSet events
    const (
    	// SelectingAllReason is added to an event when a DaemonSet selects all Pods.
    	SelectingAllReason = "SelectingAll"
    	// FailedPlacementReason is added to an event when a DaemonSet can't schedule a Pod to a specified node.
    	FailedPlacementReason = "FailedPlacement"
    	// FailedDaemonPodReason is added to an event when the status of a Pod of a DaemonSet is 'Failed'.
    	FailedDaemonPodReason = "FailedDaemonPod"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. pkg/apis/batch/validation/validation.go

    				allErrs = append(allErrs, field.Required(fldPath.Child("completions"), fmt.Sprintf("when completion mode is %s", batch.IndexedCompletion)))
    			}
    			if spec.Parallelism != nil && *spec.Parallelism > maxParallelismForIndexedJob {
    				allErrs = append(allErrs, field.Invalid(fldPath.Child("parallelism"), *spec.Parallelism, fmt.Sprintf("must be less than or equal to %d when completion mode is %s", maxParallelismForIndexedJob, batch.IndexedCompletion)))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    type RevocationListEntry struct {
    	// Raw contains the raw bytes of the revokedCertificates entry. It is set when
    	// parsing a CRL; it is ignored when generating a CRL.
    	Raw []byte
    
    	// SerialNumber represents the serial number of a revoked certificate. It is
    	// both used when creating a CRL and populated when parsing a CRL. It must not
    	// be nil.
    	SerialNumber *big.Int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. src/testing/testing.go

    type testContext struct {
    	match    *matcher
    	deadline time.Time
    
    	// isFuzzing is true in the context used when generating random inputs
    	// for fuzz targets. isFuzzing is false when running normal tests and
    	// when running fuzz tests as unit tests (without -fuzz or when -fuzz
    	// does not match).
    	isFuzzing bool
    
    	mu sync.Mutex
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[empty_directories_file_tree]]
    ==== File trees and empty directory handling
    
    When using `@link:{javadocPath}/org/gradle/api/tasks/SkipWhenEmpty.html[SkipWhenEmpty]` on an input file collection, Gradle skips the task when it determines that the input is empty.
    If the input file collection consists only of file trees, Gradle ignores directories for the emptiness check.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // a public default constructor.
    //
    // An object managed for a thread by a ThreadLocal instance is deleted
    // when the thread exits.  Or, if the ThreadLocal instance dies in
    // that thread, when the ThreadLocal dies.  It's the user's
    // responsibility to ensure that all other threads using a ThreadLocal
    // have exited when it dies, or the per-thread objects for those
    // threads will not be deleted.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    `failFast` —  (since Gradle 4.6) default: false::
    Set this to `true` if you want the build to fail and finish as soon as one of your tests fails. This can save a lot of time when you have a long-running test suite and is particularly useful when running the build on continuous integration servers. When a build fails before all tests have run, the test reports only include the results of the tests that have completed, successfully or not.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// This is necessary to prevent users from accessing structures that are
    	// uninitialized or are being repopulated right now.
    	// ready needs to be set to false when the cacher is paused or stopped.
    	// ready needs to be set to true when the cacher is ready to use after
    	// initialization.
    	ready *ready
    
    	// Underlying storage.Interface.
    	storage storage.Interface
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    	//
    	// We require callback != nil here because only when callback != nil
    	// do we know that gentraceback is being called in a "must be correct"
    	// context as opposed to a "best effort" context. The tracebacks with
    	// callbacks only happen when everything is stopped nicely.
    	// At other times, such as when gathering a stack for a profiling signal
    	// or when printing a traceback during a crash, everything may not be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top