Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 250 for NOOP (0.08 sec)

  1. src/cmd/internal/obj/mips/anames.go

    	"MOVFW",
    	"MOVH",
    	"MOVHU",
    	"MOVW",
    	"MOVWD",
    	"MOVWF",
    	"MOVWL",
    	"MOVWR",
    	"MSUB",
    	"MUL",
    	"MULD",
    	"MULF",
    	"MULU",
    	"MULW",
    	"NEGD",
    	"NEGF",
    	"NEGW",
    	"NEGV",
    	"NOOP",
    	"NOR",
    	"OR",
    	"REM",
    	"REMU",
    	"RFE",
    	"ROTR",
    	"ROTRV",
    	"SC",
    	"SCV",
    	"SEB",
    	"SEH",
    	"SGT",
    	"SGTU",
    	"SLL",
    	"SQRTD",
    	"SQRTF",
    	"SRA",
    	"SRL",
    	"SUB",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/NestedConfigureAutoCreateNamedDomainObjectContainerSpec.groovy

            Container(String parentName, String name, Closure factory) {
                super(Object, TestUtil.instantiatorFactory().decorateLenient(), new DynamicPropertyNamer(), factory, MutationGuards.identity(), CollectionCallbackActionDecorator.NOOP)
                this.parentName = parentName
                this.name = name
            }
        }
    
        def "can nest auto creation configure closures"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/configure/CreateDefaultFlavorsTest.groovy

    import spock.lang.Specification
    
    class CreateDefaultFlavorsTest extends Specification {
        def flavorContainer = new DefaultFlavorContainer(TestUtil.instantiatorFactory().decorateLenient(), CollectionCallbackActionDecorator.NOOP)
        def rule = new NativeComponentModelPlugin.Rules()
    
        def "has a single default flavor when not configured"() {
            when:
            rule.createDefaultFlavor(flavorContainer)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementDslSpec.groovy

            given:
            settingsFile << """
                pluginManagement {
                    resolutionStrategy.eachPlugin {
                        if(requested.id.name == 'noop') {
                            useModule('com.acme:foo:+')
                        }
                    }
                    repositories {
                        maven {
                            url "http://repo.internal.net/m2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/FlowControlListener.kt

       * [WindowCounter] generally carries the client view of total and acked bytes.
       */
      fun receivingConnectionWindowChanged(windowCounter: WindowCounter)
    
      /** Noop implementation */
      object None : FlowControlListener {
        override fun receivingStreamWindowChanged(
          streamId: Int,
          windowCounter: WindowCounter,
          bufferSize: Long,
        ) {
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/testFixtures/groovy/org/gradle/platform/base/binary/BaseBinaryFixtures.groovy

                return BaseBinarySpec.create(publicType, implType, identifier, node, componentNode, TestUtil.instantiatorFactory().injectLenient(), {} as NamedEntityInstantiator, CollectionCallbackActionDecorator.NOOP, TestUtil.domainObjectCollectionFactory())
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/authentication/DefaultAuthenticationContainerTest.groovy

    class DefaultAuthenticationContainerTest extends Specification {
        @Subject
        def container = new DefaultAuthenticationContainer(TestUtil.instantiatorFactory().decorateLenient(), CollectionCallbackActionDecorator.NOOP)
    
        def setup() {
            container.registerBinding(TestAuthentication, DefaultTestAuthentication)
            container.registerBinding(CustomTestAuthentication, DefaultCustomTestAuthentication)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/group_by_dialect.mlir

      %0 = "tf.AddV2"(%arg0, %cst) {device = "/device:CPU:0"} : (tensor<f32>, tensor<f32>) -> tensor<f32>
      %1 = "tf.Identity"(%0) {device = ""} : (tensor<f32>) -> tensor<f32>
      "tf.NoOp"() {device = ""} : () -> ()
      func.return %1 : tensor<f32>
      // CHECK: func @three_dialects
      // CHECK-NEXT: glue.constant
      // CHECK-NEXT: glue.compare
      // CHECK-NEXT: call{{.*}}mhlo
      // CHECK-NEXT: call{{.*}}tf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 28 23:43:21 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

    }
    
    // Populates an empty IslandOp and with a NoOp or Identity/IdentityN depending
    // on if there are any data results.
    void PopulateEmptyIsland(tf_executor::IslandOp island) {
      OpBuilder builder(&island.GetBody(), island.GetBody().begin());
      tf_executor::YieldOp yield = island.GetYield();
      if (yield.getNumOperands() == 0) {
        builder.create<TF::NoOp>(island.getLoc(), TypeRange{}, ValueRange{});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/content_type_test.go

    */
    
    package filters
    
    import (
    	"net/http"
    	"net/http/httptest"
    	"testing"
    )
    
    func noopHandler() http.HandlerFunc {
    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		// noop
    	})
    }
    
    func TestWithContentType(t *testing.T) {
    	mux := http.NewServeMux()
    	mux.Handle("/text", WithContentType(noopHandler(), "text/plain"))
    	mux.Handle("/json", WithContentType(noopHandler(), "application/json"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 04 23:35:32 UTC 2019
    - 1.8K bytes
    - Viewed (0)
Back to top