Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 119 for clobber (0.28 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        }
    
        /**
         * Assuming that both this [FirScope] and [another] are [FirNestedClassifierScope] or [FirClassUseSiteMemberScope] and both of them
         * are surrounding [from], returns whether this [FirScope] is closer than [another] based on the distance from [from].
         *
         * If one of this [FirScope] and [another] is not [FirNestedClassifierScope] or [FirClassUseSiteMemberScope], it returns false.
         *
         * Example:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    	f.PodNominator = n
    }
    
    // Close closes each plugin, when they implement io.Closer interface.
    func (f *frameworkImpl) Close() error {
    	var errs []error
    	for name, plugin := range f.pluginsMap {
    		if closer, ok := plugin.(io.Closer); ok {
    			err := closer.Close()
    			if err != nil {
    				errs = append(errs, fmt.Errorf("%s failed to close: %w", name, err))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. 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)
  10. 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)
Back to top