Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 166 for Undo (4.41 sec)

  1. src/os/file.go

    	}
    	f, err := Open(fullname)
    	if err != nil {
    		// DirFS takes a string appropriate for GOOS,
    		// while the name argument here is always slash separated.
    		// dir.join will have mixed the two; undo that for
    		// error reporting.
    		err.(*PathError).Path = name
    		return nil, err
    	}
    	return f, nil
    }
    
    // The ReadFile method calls the [ReadFile] function for the file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      pm.addPass(mlir::createInlinerPass());
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::TF::CreateDropWhileShapeInvariantPass());
      // Create a replicated TensorList initialization ops for all of its uses. This
      // pass undo some CSE because shape_inference is not correctly able to
      // identify the shapes of TensorList initialization ops.
      // This pass requires CanonicalizerPass before
      // CreateTensorListOpsDecompositionPass for clean-ups.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  3. pkg/ctrlz/assets/static/css/fontawesome-all-5.0.6.css

    fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 33.9K bytes
    - Viewed (2)
  4. cmd/erasure-multipart.go

    				return errDiskNotFound
    			}
    			return disks[index].RenameFile(ctx, srcBucket, srcEntry, dstBucket, dstEntry)
    		}, index)
    	}
    
    	// Wait for all renames to finish.
    	errs := g.Wait()
    
    	// Do not need to undo partial successful operation since those will be cleaned up
    	// in 24hrs via multipart cleaner, never rename() back to `.minio.sys/tmp` as there
    	// is no way to clean them.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.2.md

      * Paused deployments can't be resized and don't clean up old ReplicaSets.
      * Minimum memory limit is 4MB. This is a docker limitation
      * Minimum CPU limits is 10m. This is a Linux Kernel limitation
      * “kubectl rollout undo” (i.e. rollback) will hang on paused deployments, because
    paused deployments can’t be rolled back (this is expected), and the command
    waits for rollback events to return the result. Users should use “kubectl
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  6. src/math/big/natdiv.go

    	// Use basic or recursive long division depending on size.
    	if n < divRecursiveThreshold {
    		q.divBasic(u, v)
    	} else {
    		q.divRecursive(u, v)
    	}
    	putNat(vp)
    
    	q = q.norm()
    
    	// Undo scaling of remainder.
    	shrVU(u, u, shift)
    	r = u.norm()
    
    	return q, r
    }
    
    // divBasic implements long division as described above.
    // It overwrites q with ⌊u/v⌋ and overwrites u with the remainder r.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. src/runtime/signal_unix.go

    	for i := range sigtable {
    		if !blockableSig(uint32(i)) {
    			sigdelset(&nmask, i)
    		}
    	}
    	sigprocmask(_SIG_SETMASK, &nmask, nil)
    }
    
    // unminitSignals is called from dropm, via unminit, to undo the
    // effect of calling minit on a non-Go thread.
    //
    //go:nosplit
    func unminitSignals() {
    	if getg().m.newSigstack {
    		st := stackt{ss_flags: _SS_DISABLE}
    		sigaltstack(&st, nil)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/obj6.go

    				p = obj.Appendp(p, newprog)
    			}
    
    			p.As = obj.ARET
    			p.To = to
    
    			// If there are instructions following
    			// this ARET, they come from a branch
    			// with the same stackframe, so undo
    			// the cleanup.
    			p.Spadj = +autoffset
    		}
    
    		if p.To.Sym != nil { // retjmp
    			p.As = obj.AJMP
    		}
    	}
    }
    
    func isZeroArgRuntimeCall(s *obj.LSym) bool {
    	if s == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  9. src/runtime/export_test.go

    		// system stack with readmemstats_m so that we don't call into
    		// the stack allocator and adjust metrics between there and here.
    		readMetricsLocked(samplesp, len, cap)
    
    		// Undo the donation.
    		getg().racectx = 0
    	})
    	metricsUnlock()
    
    	startTheWorld(stw)
    }
    
    var DoubleCheckReadMemStats = &doubleCheckReadMemStats
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. src/main/webapp/css/font-awesome.min.css

    buntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\f949"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (2)
Back to top