Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 807 for Binary1 (0.12 sec)

  1. src/internal/coverage/cfile/hooks.go

    // MarkProfileEmitted to indicate that no more work needs to be
    // done. If however that call is never made, this is a sign that the
    // test binary is being used as a replacement binary for the tool
    // being tested, hence we do want to run exit hooks when the program
    // terminates.
    func InitHook(istest bool) {
    	// Note: hooks are run in reverse registration order, so
    	// register the counter data hook before the meta-data hook
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. test/fixedbugs/issue65962.go

    func isI(x any) {
    	_ = x.(I)
    }
    
    func test1() {
    	defer func() { recover() }()
    	ld[bool]() // add <bool,I> itab to binary
    	_ = any(false).(I)
    }
    
    type B bool
    
    func (B) f() {
    }
    func (B) g() {
    }
    
    func test2() {
    	defer func() { recover() }()
    	ld[B]() // add <B,I> itab to binary
    	_ = any(B(false)).(I)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:30:40 UTC 2024
    - 625 bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		names = append(names, osxNames...)
    	}
    	for _, name := range names {
    		if binary, found := findExe(name, paths); found {
    			return binary, true
    		}
    	}
    	return "", false
    }
    
    // isLLVMObjdump accepts a string with path to an objdump binary,
    // and returns a boolean indicating if the given binary is an LLVM
    // objdump binary of an acceptable version.
    func isLLVMObjdump(output string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. hack/verify-file-sizes.sh

    # Files larger than 1MB get reported and verification fails, unless the file is
    # allowed to be larger. Any output or a non-zero exit status indicate a
    # failure.
    largefiles () {
        # --eol adds information that allows detecting binary files:
        #    i/-text w/-text attr/text=auto eol=lf 	test/images/sample-device-plugin/sampledeviceplugin
        #
        # shellcheck disable=SC2034 # Some variables unused and only present to capture the output field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 19:39:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/api/plugins/JvmTestSuitePluginIntegrationTest.groovy

            def resultsPath = new TestFile(getTestDirectory(), 'build/test-results/test/binary').getRelativePathFromBase()
            outputContains("""
    --------------------------------------------------
    Variant testResultsElementsForTest (i)
    --------------------------------------------------
    Directory containing binary results of running tests for the test Test Suite's test target.
    
    Capabilities
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModuleStateModificationListener.kt

         *
         * The module structure, source code, and binary content of all [KtModule]s in the project should be considered modified when this event
         * is received. This includes source files being moved or removed, binary content being added, removed, or changed, and modules possibly
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1010 bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/SuppressSignatureCheck.kt

     */
    package okhttp3.internal
    
    import java.lang.annotation.Documented
    import kotlin.annotation.AnnotationRetention.BINARY
    import kotlin.annotation.AnnotationTarget.CLASS
    import kotlin.annotation.AnnotationTarget.CONSTRUCTOR
    import kotlin.annotation.AnnotationTarget.FUNCTION
    
    @Retention(BINARY)
    @Documented
    @Target(CONSTRUCTOR, CLASS, FUNCTION)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 990 bytes
    - Viewed (0)
  8. src/internal/trace/raw/reader.go

    }
    
    func (r *Reader) readArgs(n int) ([]uint64, error) {
    	var args []uint64
    	for i := 0; i < n; i++ {
    		val, err := binary.ReadUvarint(r.r)
    		if err != nil {
    			return nil, err
    		}
    		args = append(args, val)
    	}
    	return args, nil
    }
    
    func (r *Reader) readData() ([]byte, error) {
    	len, err := binary.ReadUvarint(r.r)
    	if err != nil {
    		return nil, err
    	}
    	var data []byte
    	for i := 0; i < int(len); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. doc/next/5-toolchain.md

    A linker command line flag `-checklinkname=0` can be used to disable
    this check, for debugging and experimenting purposes.
    
    <!-- CL 473495 -->
    When building a dynamically linked ELF binary (including PIE binary), the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/io/SerializeUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        public void testObjectAndBinary() throws Exception {
            final String o = "hoge";
            final byte[] binary = SerializeUtil.fromObjectToBinary(o);
            assertEquals(o, SerializeUtil.fromBinaryToObject(binary));
        }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top