Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 250 for NOOP (0.03 sec)

  1. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/internal/DefaultNativeTestSuiteBinarySpecTest.groovy

        final def testUtil = TestUtil.create(testDir)
    
        def tasks = new DefaultNativeTestSuiteBinarySpec.DefaultTasksCollection(new DefaultBinaryTasksCollection(null, null, CollectionCallbackActionDecorator.NOOP))
    
        def "returns null for link, install and run when none defined"() {
            expect:
            tasks.link == null
            tasks.install == null
            tasks.run == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/template_test.go

    			data: struct{ ImageRepository, Arch string }{
    				ImageRepository: "registry.k8s.io",
    				Arch:            "amd64",
    			},
    			output:      validTmplOut,
    			errExpected: false,
    		},
    		{
    			name:     "should noop if there aren't any {{ .foo }} present",
    			template: doNothing,
    			data: struct{ ImageRepository, Arch string }{
    				ImageRepository: "registry.k8s.io",
    				Arch:            "amd64",
    			},
    			output:      doNothing,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/anames.go

    	"MOVH",
    	"MOVHU",
    	"MOVW",
    	"MOVWD",
    	"MOVWF",
    	"MOVWL",
    	"MOVWR",
    	"MUL",
    	"MULD",
    	"MULF",
    	"MULU",
    	"MULH",
    	"MULHU",
    	"MULW",
    	"NEGD",
    	"NEGF",
    	"NEGW",
    	"NEGV",
    	"NOOP",
    	"NOR",
    	"OR",
    	"REM",
    	"REMU",
    	"RFE",
    	"SC",
    	"SCV",
    	"SGT",
    	"SGTU",
    	"SLL",
    	"SQRTD",
    	"SQRTF",
    	"SRA",
    	"SRL",
    	"ROTR",
    	"SUB",
    	"SUBD",
    	"SUBF",
    	"SUBU",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/interfaces.go

    	Enqueue()
    }
    
    // Notifier is a way to add listeners
    type Notifier interface {
    	// AddListener is adds a listener to be notified of potential input changes.
    	// This is a noop on static providers.
    	AddListener(listener Listener)
    }
    
    // CAContentProvider provides ca bundle byte content
    type CAContentProvider interface {
    	Notifier
    
    	// Name is just an identifier.
    	Name() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingNotSupportedVirtualFileSystem.java

            super(root);
        }
    
        @Override
        protected SnapshotHierarchy updateNotifyingListeners(UpdateFunction updateFunction) {
            return updateFunction.update(SnapshotHierarchy.NodeDiffListener.NOOP);
        }
    
        @Override
        public boolean afterBuildStarted(
            WatchMode watchMode,
            VfsLogging vfsLogging,
            WatchLogging watchLogging,
            BuildOperationRunner buildOperationRunner
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:41:07 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/schema/interfaces.go

    	// if the object does not expose or provide these fields.
    	GroupVersionKind() GroupVersionKind
    }
    
    // EmptyObjectKind implements the ObjectKind interface as a noop
    var EmptyObjectKind = emptyObjectKind{}
    
    type emptyObjectKind struct{}
    
    // SetGroupVersionKind implements the ObjectKind interface
    func (emptyObjectKind) SetGroupVersionKind(gvk GroupVersionKind) {}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 07 14:45:22 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. cmd/kubemark/app/hollow_node.go

    		if err != nil {
    			return fmt.Errorf("Failed to init runtime service, error: %w", err)
    		}
    
    		var imageService internalapi.ImageManagerService = fakeRemoteRuntime.ImageService
    		if config.UseHostImageService {
    			imageService, err = remote.NewRemoteImageService(c.ImageServiceEndpoint, 15*time.Second, noop.NewTracerProvider(), &logger)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/metrics_test.go

    		old    *unstructured.Unstructured
    		schema apiextensions.JSONSchemaProps
    		iters  int // how many times to validate the same update before checking metric
    		want   string
    	}{
    		{
    			desc: "valid noop update",
    			obj: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    					"foo": "bar",
    				},
    			},
    			old: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    					"foo": "bar",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. platforms/software/resources/src/main/java/org/gradle/internal/verifier/HttpRedirectVerifierFactory.java

            private static NoopHttpRedirectVerifier instance = new NoopHttpRedirectVerifier();
    
            @Override
            public void validateRedirects(Collection<URI> redirectLocations) {
                // Noop
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/testFixtures/groovy/org/gradle/internal/snapshot/TestSnapshotFixture.groovy

            SnapshotHierarchy root = DefaultSnapshotHierarchy.empty(caseSensitivity)
            snapshots.each { snapshot -> root = root.store(snapshot.absolutePath, snapshot, SnapshotHierarchy.NodeDiffListener.NOOP)}
            return root
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top