Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 92 for deltas (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      "tf.AssignVariableOp"(%arg1, %add1) : (tensor<*x!tf_type.resource<tensor<f32>>>, tensor<f32>) -> ()
      // CHECK-NEXT: %[[DELTA:.*]] = "tf.Const"() <{value = dense<-1> : tensor<i32>}>
      %constant = "tf.Const"() {value = dense<-1> : tensor<i32>} : () -> tensor<i32>
      // CHECK-NEXT: %[[ADD2:.*]] = "tf.AddV2"(%[[BARG0]], %[[DELTA]])
      %add2 = "tf.AddV2"(%arg0, %constant) : (tensor<i32>, tensor<i32>) -> tensor<i32>
      // CHECK-NEXT: return %[[ADD2]], %[[ADD1]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    			"kind":       "WishIHadChosenNoxu",
    			"metadata": map[string]interface{}{
    				"namespace": namespace,
    				"name":      name,
    			},
    			"alpha": "foo_123",
    			"beta":  10,
    			"gamma": "bar",
    			"delta": "hello",
    		},
    	}
    }
    
    func TestCustomResourceValidation(t *testing.T) {
    	tearDown, apiExtensionClient, dynamicClient, err := fixtures.StartDefaultServerWithClients(t)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    		0 /* expectedMountDeviceCallCount */, fakePlugin))
    }
    
    // Populates desiredStateOfWorld cache with one volume/pod.
    // Calls Run()
    // Verifies there is one attach/mount/etc call and no detach calls.
    // Deletes volume/pod from desired state of world.
    // Verifies detach/unmount calls are issued.
    func Test_Run_Positive_VolumeAttachMountUnmountDetach(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. cmd/peer-rest-server.go

    func (s *peerRESTServer) GetLocksHandler(_ *grid.MSS) (*localLockMap, *grid.RemoteErr) {
    	res := globalLockServer.DupLockMap()
    	return &res, nil
    }
    
    // DeletePolicyHandler - deletes a policy on the server.
    func (s *peerRESTServer) DeletePolicyHandler(mss *grid.MSS) (np grid.NoPayload, nerr *grid.RemoteErr) {
    	objAPI := newObjectLayerFn()
    	if objAPI == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    // custom delay, but not smaller than the batching delay.
    // It is used when pod recreations are delayed due to pod failures.
    // obj could be an *batch.Job, or a DeletionFinalStateUnknown marker item.
    func (jm *Controller) enqueueSyncJobWithDelay(logger klog.Logger, obj interface{}, delay time.Duration) {
    	if delay < syncJobBatchPeriod {
    		delay = syncJobBatchPeriod
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. src/html/template/exec_test.go

    		// Now add  an action containing a string.
    		text += trueLeft + `"` + trueLeft + `"` + trueRight
    		// At this point text looks like `{{.Str}}{{/*comment*/}}{{"{{"}}`.
    		tmpl, err := New("delims").Delims(left, right).Parse(text)
    		if err != nil {
    			t.Fatalf("delim %q text %q parse err %s", left, text, err)
    		}
    		var b = new(strings.Builder)
    		err = tmpl.Execute(b, value)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. cmd/iam-store.go

    	} else {
    		cache.iamGroupPolicyMap.Store(name, mp)
    	}
    	cache.updatedAt = time.Now()
    	return mp.UpdatedAt, nil
    }
    
    // PolicyNotificationHandler - loads given policy from storage. If not present,
    // deletes from cache. This notification only reads from storage, and updates
    // cache. When the notification is for a policy deletion, it updates the
    // user-policy and group-policy maps as well.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	return SetupDiEnumDeviceInfo(deviceInfoSet, memberIndex)
    }
    
    // SetupDiDestroyDeviceInfoList function deletes a device information set and frees all associated memory.
    //sys	SetupDiDestroyDeviceInfoList(deviceInfoSet DevInfo) (err error) = setupapi.SetupDiDestroyDeviceInfoList
    
    // Close method deletes a device information set and frees all associated memory.
    func (deviceInfoSet DevInfo) Close() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  9. src/text/template/exec_test.go

    		// Now add  an action containing a string.
    		text += trueLeft + `"` + trueLeft + `"` + trueRight
    		// At this point text looks like `{{.Str}}{{/*comment*/}}{{"{{"}}`.
    		tmpl, err := New("delims").Delims(left, right).Parse(text)
    		if err != nil {
    			t.Fatalf("delim %q text %q parse err %s", left, text, err)
    		}
    		var b = new(strings.Builder)
    		err = tmpl.Execute(b, value)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    	now := nanotime()
    	delta := now - gcController.markStartTime
    	if delta <= 0 {
    		return true
    	}
    	p := getg().m.p.ptr()
    	selfTime := p.gcFractionalMarkTime + (now - p.gcMarkWorkerStartTime)
    	// Add some slack to the utilization goal so that the
    	// fractional worker isn't behind again the instant it exits.
    	return float64(selfTime)/float64(delta) > 1.2*gcController.fractionalUtilizationGoal
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top