Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 250 for NOOP (0.15 sec)

  1. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

                // proceed. Doing this immediately here lets the next task run without waiting for
                // the cancelled task's executor to run the noop AsyncCallable.
                //
                // ---
                //
                // If the CAS fails, the provided callable already started running (or it is about
                // to). Our contract promises:
                //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller.go

    		c.updateSpecLocked()
    		return nil
    	}
    
    	// If CRD spec already exists, update the CRD.
    	// specCache.update() includes the ETag so an update on a spec
    	// resulting in the same ETag will be a noop.
    	s, exists := c.specsByName[crd.Name]
    	if exists {
    		s.update(crd)
    		klog.V(2).Infof("Updating CRD OpenAPI spec because %s changed", name)
    		regenerationCounter.With(map[string]string{"crd": name, "reason": "update"})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/events_test.go

    		Old   metav1.MicroTime
    		New   metav1.MicroTime
    		Valid bool
    	}{
    		{
    			Name:  "noop microsecond precision",
    			Old:   metav1.NewMicroTime(time.Unix(100, int64(5*time.Microsecond))),
    			New:   metav1.NewMicroTime(time.Unix(100, int64(5*time.Microsecond))),
    			Valid: true,
    		},
    		{
    			Name:  "noop nanosecond precision",
    			Old:   metav1.NewMicroTime(time.Unix(100, int64(5*time.Nanosecond))),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/config.go

    limitations under the License.
    */
    
    package apiserver
    
    import (
    	"context"
    	"crypto/tls"
    	"fmt"
    	"net/http"
    	"time"
    
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/admission"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandlerTest.groovy

            Instantiator instantiator = TestUtil.instantiatorFactory().decorateLenient()
        ) {
            new DefaultRepositoryHandler(repositoryFactory, instantiator, CollectionCallbackActionDecorator.NOOP)
        }
    
        def testFlatDirWithClosure() {
            given:
            def repository = Mock(TestFlatDirectoryArtifactRepository) { getName() >> "name" }
            1 * repositoryFactory.createFlatDirRepository() >> repository
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 18:02:33 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

                // proceed. Doing this immediately here lets the next task run without waiting for
                // the cancelled task's executor to run the noop AsyncCallable.
                //
                // ---
                //
                // If the CAS fails, the provided callable already started running (or it is about
                // to). Our contract promises:
                //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultPolymorphicDomainObjectContainerTest.groovy

            container = new DefaultPolymorphicDomainObjectContainer<?>(Object, TestUtil.instantiatorFactory().decorateLenient(),
                { it instanceof Named ? it.name : "unknown" } as Named.Namer, CollectionCallbackActionDecorator.NOOP)
    
            container.registerBinding(UnnamedPerson, DefaultUnnamedPerson)
            container.registerBinding(CtorNamedPerson, DefaultCtorNamedPerson)
    
            when:
            container.create("fred", UnnamedPerson)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 16K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/conversion_test.go

    	}
    	testcases := []struct {
    		Name          string
    		Attrs         *VersionedAttributes
    		GVK           schema.GroupVersionKind
    		ExpectedAttrs *VersionedAttributes
    	}{
    		{
    			Name: "noop",
    			Attrs: &VersionedAttributes{
    				Attributes: attrs(
    					&example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "newpod"}},
    					&example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "oldpod"}},
    				),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    			this._set_settings	= function (s) {
    				settings = $.extend(true, {}, settings, s);
    			};
    		},
    		_fn : { },
    		plugin : function (pname, pdata) {
    			pdata = $.extend({}, {
    				__init		: $.noop,
    				__destroy	: $.noop,
    				_fn			: {},
    				defaults	: false
    			}, pdata);
    			plugins[pname] = pdata;
    
    			$.jstree.defaults[pname] = pdata.defaults;
    			$.each(pdata._fn, function (i, val) {
    				val.plugin		= pname;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // function. This pass should be run on a valid tf_executor dialect. The control
    // output of the initializer function for non-variable resource initialization
    // will be passed on as a dependency to a new `tf.NoOp`, whose control output
    // will be merged into the main function's FetchOp. The initializer functions
    // will be removed.
    //
    // Running this pass essentially has the effect of inlining the initializer
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top