Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 264 for xremove (0.22 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    	}
    
    	// OpArg*Reg values we've seen so far on our forward walk,
    	// for which we have not yet seen a corresponding spill.
    	regArgs := make([]ID, 0, 32)
    
    	// removeReg tries to remove a value from regArgs, returning true
    	// if found and removed, or false otherwise.
    	removeReg := func(r ID) bool {
    		for i := 0; i < len(regArgs); i++ {
    			if regArgs[i] == r {
    				regArgs = append(regArgs[:i], regArgs[i+1:]...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    foreach BinaryOp = [TFL_DivOp, TFL_MulOp]<Op> in
      defm : FuseMulOrDivWithConv2dOrDepthwiseConv2d<BinaryOp>;
    
    
    // This pattern applies when the same quantize/dequantize have been used twice
    // with the same scale. We want to remove the redundancy.
    // TODO(fengliuai): move this to the sanity check of pre-quantize pass.
    def eliminate_dq_q_pairs : Pat<
      (TFL_QuantizeOp (TFL_DequantizeOp $in), $qt),
      (replaceWithValue $in),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. cmd/admin-handlers-users.go

    	"github.com/minio/minio/internal/config/dns"
    	"github.com/minio/mux"
    	xldap "github.com/minio/pkg/v3/ldap"
    	"github.com/minio/pkg/v3/policy"
    	"github.com/puzpuzpuz/xsync/v3"
    )
    
    // RemoveUser - DELETE /minio/admin/v3/remove-user?accessKey=<access_key>
    func (a adminAPIHandlers) RemoveUser(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	objectAPI, cred := validateAdminReq(ctx, w, r, policy.DeleteUserAdminAction)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    				// The only changes to the root set (if any) were to remove duplicates.
    				// The requirements are consistent (if perhaps redundant), so keep the
    				// original rs to preserve its ModuleGraph.
    				return rs, nil
    			}
    			// The root set has converged: every root going into this iteration was
    			// already at its selected version, although we have have removed other
    			// (redundant) roots for the same path.
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            return new DefaultProblemId(categories.remove(categories.size() - 1), label.getLabel(), toProblemGroup(categories));
        }
    
        private static @Nullable ProblemGroup toProblemGroup(List<String> groupNames) {
            if (groupNames.isEmpty()) {
                return null;
            } else {
                String groupName = groupNames.remove(groupNames.size() - 1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			resetStatusFn: func(status *kubecontainer.PodStatus) {
    				m.livenessManager.Remove(status.ContainerStatuses[2].ID)
    			},
    		},
    		"startupProbe has not been run; do nothing": {
    			mutatePodFn: func(pod *v1.Pod) { pod.Spec.RestartPolicy = v1.RestartPolicyAlways },
    			mutateStatusFn: func(pod *v1.Pod, status *kubecontainer.PodStatus) {
    				m.startupManager.Remove(status.ContainerStatuses[1].ID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    func (d *desiredState) copy(x *desiredState) {
    	d.entries = append(d.entries[:0], x.entries...)
    	d.avoid = x.avoid
    }
    
    // remove removes the desired registers for vid and returns them.
    func (d *desiredState) remove(vid ID) [4]register {
    	for i := range d.entries {
    		if d.entries[i].ID == vid {
    			regs := d.entries[i].regs
    			d.entries[i] = d.entries[len(d.entries)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go

    	{67, "EPROCLIM", "too many processes"},
    	{68, "EUSERS", "too many users"},
    	{69, "EDQUOT", "disc quota exceeded"},
    	{70, "ESTALE", "stale NFS file handle"},
    	{71, "EREMOTE", "too many levels of remote in path"},
    	{72, "EBADRPC", "RPC struct is bad"},
    	{73, "ERPCMISMATCH", "RPC version wrong"},
    	{74, "EPROGUNAVAIL", "RPC prog. not avail"},
    	{75, "EPROGMISMATCH", "program version wrong"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		// In such cases, this plugin may miss some events that actually make pods schedulable.
    		// As a workaround, we add UpdateNodeTaint event to catch the case.
    		// We can remove UpdateNodeTaint when we remove the preCheck feature.
    		// See: https://github.com/kubernetes/kubernetes/issues/110175
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    // support multiple types of params this function needs to be augmented
    //
    // PolicyTracker expects FakePolicyDefinition and FakePolicyBinding types
    // !TODO: refactor this test/framework to remove startInformers argument and
    // clean up the return args, and in general make it more accessible.
    func setupTestCommon(
    	t *testing.T,
    	compiler *fakeCompiler,
    	matcher generic.PolicyMatcher,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top