Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for spdelta (1.3 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    			rx := lineRx.ReplaceAllStringFunc(m[1], func(m string) string {
    				n := lineNum
    				if strings.HasPrefix(m, "LINE+") {
    					delta, _ := strconv.Atoi(m[5:])
    					n += delta
    				} else if strings.HasPrefix(m, "LINE-") {
    					delta, _ := strconv.Atoi(m[5:])
    					n -= delta
    				}
    				return fmt.Sprintf("%s:%d", short, n)
    			})
    			re := cache[rx]
    			if re == nil {
    				var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. 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)
  3. src/runtime/mgcpacer.go

    		return nil, now
    	} else {
    		// Is this P behind on the fractional utilization
    		// goal?
    		//
    		// This should be kept in sync with pollFractionalWorkerExit.
    		delta := now - c.markStartTime
    		if delta > 0 && float64(pp.gcFractionalMarkTime)/float64(delta) > c.fractionalUtilizationGoal {
    			// Nope. No need to run a fractional worker.
    			gcBgMarkWorkerPool.push(&node.node)
    			return nil, now
    		}
    		// Run a fractional worker.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. plugin/pkg/admission/resourcequota/admission_test.go

    			}
    		}
    
    	}
    }
    
    // TestAdmitZeroDeltaUsageWithoutCoveringQuota verifies that resource quota is not required for zero delta requests.
    func TestAdmitZeroDeltaUsageWithoutCoveringQuota(t *testing.T) {
    
    	kubeClient := fake.NewSimpleClientset()
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/jit/deadness_analysis.cc

      // output from said node may have changed.  This is fine; only switches
      // propagate different deadness along different output edges, and since the
      // delta is solely due to the input *values* (and not input deadness), the
      // delta should not change in the second iteration.
      std::vector<bool> should_revisit;
      should_revisit.resize(graph_.num_node_ids());
      for (Node* n : topo) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_darwin_arm64.go

    //go:cgo_import_dynamic libc_access access "/usr/lib/libSystem.B.dylib"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_adjtime_trampoline), uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_adjtime_trampoline()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go

    //go:cgo_import_dynamic libc_access access "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
    	_, _, e1 := syscall_syscall(libc_adjtime_trampoline_addr, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_adjtime_trampoline_addr uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go

    //go:cgo_import_dynamic libc_access access "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Adjtime(delta *Timeval, olddelta *Timeval) (err error) {
    	_, _, e1 := syscall_syscall(libc_adjtime_trampoline_addr, uintptr(unsafe.Pointer(delta)), uintptr(unsafe.Pointer(olddelta)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_adjtime_trampoline_addr uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    	// classifying a single trigger as having multiple reasons.
    	Reason ReasonStats
    
    	// Delta defines the resources that were added or removed as part of this push request.
    	// This is set only on requests from the client which change the set of resources they (un)subscribe from.
    	Delta ResourceDelta
    }
    
    type ResourceDelta = xds.ResourceDelta
    
    type ReasonStats map[TriggerReason]int
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top