Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for delete1 (0.09 sec)

  1. cluster/gce/gci/configure-helper.sh

      containers:
      - name: pv-recycler
        image: registry.k8s.io/build-image/debian-base:bookworm-v1.0.3
        command:
        - /bin/sh
        args:
        - -c
        - test -e /scrub && find /scrub -mindepth 1 -delete && test -z $(ls -A /scrub) || exit 1
        volumeMounts:
        - name: vol
          mountPath: /scrub
    EOF
    
    # fixup the alternate registry if specified
    if [[ -n "${KUBE_ADDON_REGISTRY:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    // LoadImportWithFlags loads the package with the given import path and
    // sets tool flags on that package. This function is useful loading implicit
    // dependencies (like sync/atomic for coverage).
    // TODO(jayconrod): delete this function and set flags automatically
    // in LoadImport instead.
    func LoadImportWithFlags(path, srcDir string, parent *Package, stk *ImportStack, importPos []token.Position, mode int) (*Package, *PackageError) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      builder_.setInsertionPoint(dst);
      auto* new_dst = builder_.create(state);
    
      // Replaces the output uses of the old operation by the corresponding
      // result of the new operation, and deletes the old operation.
      for (unsigned i = 0, e = dst->getNumResults(); i != e; ++i) {
        auto new_output = new_dst->getResult(i);
        dst->getResult(i).replaceAllUsesWith(new_output);
      }
      dst->dropAllReferences();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    						pp.From.Offset = 0
    						pp.From.Index = REG_NONE
    						ab.rexflag |= Pw
    						ab.Put1(0x8B)
    						ab.asmand(ctxt, cursym, p, &pp.From, &p.To)
    
    					case objabi.Hsolaris: // TODO(rsc): Delete Hsolaris from list. Should not use this code. See progedit in obj6.c.
    						// TLS base is 0(FS).
    						pp.From = p.From
    
    						pp.From.Type = obj.TYPE_MEM
    						pp.From.Name = obj.NAME_NONE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    			Gosched()
    		}
    
    		return
    	}
    
    	gp.m.locks--
    
    	// Call the scheduler.
    	mcall(exitsyscall0)
    
    	// Scheduler returned, so we're allowed to run now.
    	// Delete the syscallsp information that we left for
    	// the garbage collector during the system call.
    	// Must wait until now because until gosched returns
    	// we don't know for sure that the garbage collector
    	// is not running.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top