Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 450 for eventual (0.24 sec)

  1. src/cmd/go/testdata/script/test_fuzz_cleanup.txt

    go test -v -run=FuzzFunction
    stdout '(?s)inner.*outer'
    
    # TODO(jayconrod): test cleanup while fuzzing. For now, the worker process's
    # stdout and stderr is connected to the coordinator's, but it should eventually
    # be connected to os.DevNull, so we wouldn't see t.Log output.
    
    -- go.mod --
    module cleanup
    
    go 1.15
    -- cleanup_test.go --
    package cleanup
    
    import (
    	"runtime"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/options/options.go

    	// Note: the weird ""+ in below lines seems to be the only way to get gofmt to
    	// arrange these text blocks sensibly. Grrr.
    	fs := fss.FlagSet("misc")
    	fs.DurationVar(&s.EventTTL, "event-ttl", s.EventTTL,
    		"Amount of time to retain events.")
    
    	fs.BoolVar(&s.EnableLogsHandler, "enable-logs-handler", s.EnableLogsHandler,
    		"If true, install a /logs handler for the apiserver logs.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. src/internal/trace/summary_test.go

    		"task0 region":         {trace.EventRegionBegin, trace.EventBad},
    		"region0":              {trace.EventRegionBegin, trace.EventRegionEnd},
    		"region1":              {trace.EventRegionBegin, trace.EventRegionEnd},
    		"unended region":       {trace.EventRegionBegin, trace.EventStateTransition},
    		"post-existing region": {trace.EventRegionBegin, trace.EventBad},
    	}
    	for _, summary := range summaries {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package generic contains a typed wrapper over cache SharedIndexInformer
    // and Lister (maybe eventually should have a home there?)
    //
    // This interface is being experimented with as an easier way to write controllers
    // with a bit less boilerplate.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/BUILD

    load("//tensorflow:tensorflow.default.bzl", "filegroup")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    # Experimental ops. These will eventually be replaced by machine-generated versions.
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "array_ops",
        srcs = [
            "array_ops.cc",
        ],
        hdrs = [
            "array_ops.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DslOriginDependencyMetadata.java

         * - Accessing the `ClientModule` instance for a 'client module' dependency.
         * - Binding the source dependency to the first-order resolved components in `ResolvedConfiguration`.
         *
         * The goal is to eventually replace these uses, and remove this type.
         */
        Dependency getSource();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. pkg/registry/core/rest/storage_core_generic.go

    // GenericConfig provides information needed to build RESTStorage
    // for generic resources in core. It implements the "normal" RESTStorageProvider interface.
    type GenericConfig struct {
    	StorageFactory serverstorage.StorageFactory
    	EventTTL       time.Duration
    
    	ServiceAccountIssuer        serviceaccount.TokenGenerator
    	ServiceAccountMaxExpiration time.Duration
    	ExtendExpiration            bool
    
    	APIAudiences authenticator.Audiences
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileSelector.java

     *
     */
    public interface ProfileSelector {
    
        /**
         * Determines the profiles which are active in the specified activation context. Active profiles will eventually be
         * injected into the model.
         *
         * @param profiles The profiles whose activation status should be determined, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/concrete_function.h

    // SavedModel, and the FunctionDef of the SavedModel.
    //
    // Note(bmzhao): This class is only TEMPORARILY virtual, as a way to unblock
    // TFRT integration with TF Serving. Do not add more virtual implementations of
    // this class. Eventually we want to remove this virtual base class indirection
    // and have only a single implementation.
    class ConcreteFunction {
     public:
      virtual ~ConcreteFunction() = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 29 15:50:58 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-api/src/main/java/org/gradle/declarative/dsl/model/annotations/Restricted.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Target({ElementType.TYPE, ElementType.METHOD})
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:57:00 UTC 2024
    - 1005 bytes
    - Viewed (0)
Back to top