Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 129 for clobber (0.28 sec)

  1. cmd/bucket-lifecycle.go

    	reader, err := tgtClient.Get(ctx, oi.TransitionedObject.Name, remoteVersionID(oi.TransitionedObject.VersionID), gopts)
    	if err != nil {
    		return nil, err
    	}
    	closer := func() {
    		timeTierAction(reader.Close())
    	}
    	return fn(reader, h, closer)
    }
    
    // RestoreRequestType represents type of restore.
    type RestoreRequestType string
    
    const (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_ppc64x.s

    TEXT runtime·clone(SB),NOSPLIT|NOFRAME,$0
    	MOVW	flags+0(FP), R3
    	MOVD	stk+8(FP), R4
    
    	// Copy mp, gp, fn off parent stack for use by child.
    	// Careful: Linux system call clobbers ???.
    	MOVD	mp+16(FP), R7
    	MOVD	gp+24(FP), R8
    	MOVD	fn+32(FP), R12
    
    	MOVD	R7, -8(R4)
    	MOVD	R8, -16(R4)
    	MOVD	R12, -24(R4)
    	MOVD	$1234, R7
    	MOVD	R7, -32(R4)
    
    	SYSCALL $SYS_clone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. pkg/scheduler/scheduler.go

    	// SchedulingQueue, in effect causing a deadlock on shutdown.
    	go wait.UntilWithContext(ctx, sched.ScheduleOne, 0)
    
    	<-ctx.Done()
    	sched.SchedulingQueue.Close()
    
    	// If the plugins satisfy the io.Closer interface, they are closed.
    	err := sched.Profiles.Close()
    	if err != nil {
    		logger.Error(err, "Failed to close plugins")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. src/os/exec/exec.go

    	childIOFiles []io.Closer
    
    	// parentIOPipes holds closers for the parent's end of any pipes
    	// connected to the child's stdin, stdout, and/or stderr streams
    	// that were opened by the Cmd itself (not supplied by the caller).
    	// These should be closed after Wait sees the command and copying
    	// goroutines exit, or after WaitDelay has expired.
    	parentIOPipes []io.Closer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/schedule.go

    					if a.Block == b {
    						inBlockUses[a.ID] = true
    					}
    				}
    			}
    		}
    	}
    	priq.inBlockUses = inBlockUses
    
    	for _, b := range f.Blocks {
    		// Compute score. Larger numbers are scheduled closer to the end of the block.
    		for _, v := range b.Values {
    			switch {
    			case v.Op.isLoweredGetClosurePtr():
    				// We also score GetLoweredClosurePtr as early as possible to ensure that the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

        mlir::OpPassManager& pass_manager) {
      pass_manager.addPass(
          mlir::odml::CreateLegalizeTFXlaCallModuleToStablehloPass());
    
      // Legalize MHLO to StableHLO should be moved closer to where it is needed
      // There are some entry points that start with HLO->MHLO like
      // jax_to_tfl_flatbuffer.cc which can likely be updated to emit StableHLO
      // to be consistent with other entrypoints.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

        sources(Buildscript sources)
        compileAndInstrument{{"Compile and instrument\n(Execution engine)"}}
        classes(Buildscript classes*)
        
        sources --> compileAndInstrument --> classes
    ```
    
    #### Closer look at transformation of an individual Jars or class directories
    
    Transformation is done by modifying the bytecode of the plugin's jar or class directory. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/compile.go

    	{name: "lowered deadcode", fn: deadcode, required: true},
    	{name: "checkLower", fn: checkLower, required: true},
    	{name: "late phielim and copyelim", fn: copyelim},
    	{name: "tighten", fn: tighten, required: true}, // move values closer to their uses
    	{name: "late deadcode", fn: deadcode},
    	{name: "critical", fn: critical, required: true}, // remove critical edges
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/runtime/panic.go

    	// checks the return value and jumps to the
    	// end of the function if deferproc returns != 0.
    	return0()
    	// No code can go here - the C return register has
    	// been set and must not be clobbered.
    }
    
    var rangeDoneError = error(errorString("range function continued iteration after function for loop body returned false"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  10. src/syscall/exec_linux.go

    	CLONE_VFORK          = 0x00004000 // set if the parent wants the child to wake it up on mm_release
    	CLONE_PARENT         = 0x00008000 // set if we want to have the same parent as the cloner
    	CLONE_THREAD         = 0x00010000 // Same thread group?
    	CLONE_NEWNS          = 0x00020000 // New mount namespace group
    	CLONE_SYSVSEM        = 0x00040000 // share system V SEM_UNDO semantics
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top