Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for tcCall (0.23 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

    // CHECK: %[[CONST_0:.+]] = stablehlo.constant dense<3.000000e-01> : tensor<2x3xf32>
    // CHECK: %[[CALL:.+]] = call @composite_dot_general_fn(%[[ARG_0]], %[[CONST_0]]) : (tensor<1x2xf32>, tensor<2x3xf32>) -> tensor<1x3xf32>
    // CHECK: return %[[CALL]]
    
      func.func private @composite_dot_general_fn(%arg0: tensor<1x2xf32>, %arg1: tensor<2x3xf32>) -> tensor<1x3xf32> attributes {_from_xla_call_module} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    }
    
    // Populates desiredStateOfWorld cache with one volume/pod.
    // Enables controllerAttachDetachEnabled.
    // Calls Run()
    // Verifies one mount call is made and no unmount calls.
    // Deletes volume/pod from desired state of world.
    // Verifies one unmount call is made.
    // Verifies there are no attach/detach calls made.
    func Test_Run_Positive_VolumeUnmountControllerAttachEnabled(t *testing.T) {
    	// Arrange
    	node := &v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  3. pkg/volume/testing/testing.go

    	SuccessAndFailOnSetupVolumeName = "success-and-failed-setup-device-name"
    
    	// TimeoutOnMountDeviceVolumeName will cause MountDevice call to timeout but Setup will finish.
    	TimeoutOnMountDeviceVolumeName = "timeout-mount-device-volume"
    	// TimeoutAndFailOnMountDeviceVolumeName will cause first MountDevice call to timeout but second call will fail
    	TimeoutAndFailOnMountDeviceVolumeName = "timeout-and-fail-mount-device-name"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "CALLtail", argLength: -1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true, tailCall: true},                                 // tail call static function aux.(*obj.LSym).  last arg=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ppc64/ssa.go

    		}
    
    	case ssa.OpPPC64LoweredWB:
    		p := s.Prog(obj.ACALL)
    		p.To.Type = obj.TYPE_MEM
    		p.To.Name = obj.NAME_EXTERN
    		// AuxInt encodes how many buffer entries we need.
    		p.To.Sym = ir.Syms.GCWriteBarrier[v.AuxInt-1]
    
    	case ssa.OpPPC64LoweredPanicBoundsA, ssa.OpPPC64LoweredPanicBoundsB, ssa.OpPPC64LoweredPanicBoundsC:
    		p := s.Prog(obj.ACALL)
    		p.To.Type = obj.TYPE_MEM
    		p.To.Name = obj.NAME_EXTERN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. pkg/kubelet/nodestatus/setters_test.go

    			setter := NodeAddress(nodeIPs,
    				nodeIPValidator,
    				hostname,
    				testCase.hostnameOverride,
    				testCase.cloudProviderType == cloudProviderExternal,
    				cloud,
    				nodeAddressesFunc)
    
    			// call setter on existing node
    			err := setter(ctx, existingNode)
    			if err != nil && !testCase.shouldError {
    				t.Fatalf("unexpected error: %v", err)
    			} else if err != nil && testCase.shouldError {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            property.explicit
        }
    
        def "'#label' vs undefined-safety"() {
            given:
            initial.each { operation ->
                operation.call(property)
            }
    
            when:
            operations.each {operation -> operation.call(property) }
    
            then:
            expected == null || property.getOrNull() == ImmutableMap.copyOf(expected)
            expected != null || !property.present
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/types.go

    	// sideEffects == Unknown or Some. Defaults to Unknown.
    	// +optional
    	SideEffects *SideEffectClass
    
    	// TimeoutSeconds specifies the timeout for this webhook. After the timeout passes,
    	// the webhook call will be ignored or the API call will fail based on the
    	// failure policy.
    	// The timeout value must be between 1 and 30 seconds.
    	// +optional
    	TimeoutSeconds *int32
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    					t.Errorf("test[%d]: server handshake failed: %v", testNo, serverErr)
    				}
    				if !clientCalled {
    					t.Errorf("test[%d]: client did not call callback", testNo)
    				}
    				if !serverCalled {
    					t.Errorf("test[%d]: server did not call callback", testNo)
    				}
    			},
    		},
    		{
    			configureServer: func(config *Config, called *bool) {
    				config.InsecureSkipVerify = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			delete(i.allWatchers, scope)
    		}
    	}
    }
    
    func (i *indexedWatchers) terminateAll(groupResource schema.GroupResource, done func(*cacheWatcher)) {
    	// note that we don't have to call setDrainInputBufferLocked method on the watchers
    	// because we take advantage of the default value - stop immediately
    	// also watchers that have had already its draining strategy set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top