Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 575 for Instruction (0.23 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/rules/JacocoLimitImpl.java

    package org.gradle.internal.jacoco.rules;
    
    import org.gradle.testing.jacoco.tasks.rules.JacocoLimit;
    
    import java.math.BigDecimal;
    
    public class JacocoLimitImpl implements JacocoLimit {
    
        private String counter = "INSTRUCTION";
        private String value = "COVEREDRATIO";
        private BigDecimal minimum;
        private BigDecimal maximum;
    
        @Override
        public String getCounter() {
            return counter;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. src/runtime/preempt.go

    //    descheduled, blocked on synchronization, or in a system call.
    //
    // 2. Synchronous safe-points occur when a running goroutine checks
    //    for a preemption request.
    //
    // 3. Asynchronous safe-points occur at any instruction in user code
    //    where the goroutine can be safely paused and a conservative
    //    stack and register scan can find stack roots. The runtime can
    //    stop a goroutine at an async safe-point using a signal.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/runtime/vdso_freebsd.go

    	bt.frac += x
    	if u > bt.frac {
    		bt.sec++
    	}
    }
    
    var (
    	// binuptimeDummy is used in binuptime as the address of an atomic.Load, to simulate
    	// an atomic_thread_fence_acq() call which behaves as an instruction reordering and
    	// memory barrier.
    	binuptimeDummy uint32
    
    	zeroBintime bintime
    )
    
    // based on /usr/src/lib/libc/sys/__vdso_gettimeofday.c
    //
    //go:nosplit
    func binuptime(abs bool) (bt bintime) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    	size  int8   // Text space in bytes to lay operation
    
    	// A prefixed instruction is generated by this opcode. This cannot be placed
    	// across a 64B PC address. Opcodes should not translate to more than one
    	// prefixed instruction. The prefixed instruction should be written first
    	// (e.g when Optab.size > 8).
    	ispfx bool
    
    	asmout func(*ctxt9, *obj.Prog, *Optab, *[5]uint32)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/amd64/asm.go

    	// Transform the PC-relative instruction into a constant load.
    	// That is,
    	//
    	//	MOVQ X(IP), REG  ->  MOVQ $Y, REG
    	//
    	// To determine the instruction and register, we study the op codes.
    	// Consult an AMD64 instruction encoding guide to decipher this.
    	if off < 3 {
    		log.Fatal("R_X86_64_GOTTPOFF reloc not preceded by MOVQ or ADDQ instruction")
    	}
    	op := P[off-3 : off]
    	reg := op[2] >> 3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/parse.go

    		if !ok {
    			break
    		}
    		scratch = operands
    
    		if p.pseudo(word, operands) {
    			continue
    		}
    		i, present := p.arch.Instructions[word]
    		if present {
    			p.instruction(i, word, cond, operands)
    			continue
    		}
    		p.errorf("unrecognized instruction %q", word)
    	}
    	if p.errorCount > 0 {
    		return nil, false
    	}
    	p.patch()
    	return p.firstProg, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. src/runtime/traceback.go

    // Specifically, this is the PC of the last instruction executed in this frame.
    //
    // If this frame did a normal call, then frame.pc is a return PC, so this will
    // return frame.pc-1, which points into the CALL instruction. If the frame was
    // interrupted by a signal (e.g., profiler, segv, etc) then frame.pc is for the
    // trapped instruction, so this returns frame.pc. See issue #34123. Finally,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. ci/official/wheel_test/test_import_api_packages.py

    The `_api/v2/api_packages.txt` file is created during the process of generating
    TensorFlow API v2 init files and is stored in the wheel file after the build.
    
    See README.md file for "how to run" instruction.
    """
    
    import logging
    import unittest
    import pkg_resources
    
    logging.basicConfig(level=logging.INFO)
    
    
    class ImportApiPackagesTest(unittest.TestCase):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 13 15:52:07 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/framepointer/framepointer.go

    			}
    			if asmMentionBP.MatchString(line) { // any other use of BP might be a read, so function is OK
    				active = false
    				continue
    			}
    			if asmControlFlow.MatchString(line) { // give up after any branch instruction
    				active = false
    				continue
    			}
    		}
    	}
    	return nil, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/encoding/xml/marshal_test.go

    }, {
    	desc: "proc instruction",
    	toks: []Token{
    		ProcInst{"Target", []byte("Instruction")},
    	},
    	want: `<?Target Instruction?>`,
    }, {
    	desc: "proc instruction with empty target",
    	toks: []Token{
    		ProcInst{"", []byte("Instruction")},
    	},
    	err: "xml: EncodeToken of ProcInst with invalid Target",
    }, {
    	desc: "proc instruction with bad content",
    	toks: []Token{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
Back to top