Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 141 for programs (0.14 sec)

  1. src/testing/testing.go

    // as "changed by a cmd/link -X option".
    var testBinary = "0"
    
    // Testing reports whether the current code is being run in a test.
    // This will report true in programs created by "go test",
    // false in programs created by "go build".
    func Testing() bool {
    	return testBinary == "1"
    }
    
    // CoverMode reports what the test coverage mode is set to. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    		argv = append(argv, p)
    		checkStatic(p)
    	}
    
    	// When building a program with the default -buildmode=exe the
    	// gc compiler generates code requires DT_TEXTREL in a
    	// position independent executable (PIE). On systems where the
    	// toolchain creates PIEs by default, and where DT_TEXTREL
    	// does not work, the resulting programs will not run. See
    	// issue #17847. To avoid this problem pass -no-pie to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    			//
    			// Delay operand checking until we know the final type
    			// by marking the lhs expression as lhs shift operand.
    			//
    			// Usually (in correct programs), the lhs expression
    			// is in the untyped map. However, it is possible to
    			// create incorrect programs where the same expression
    			// is evaluated twice (via a declaration cycle) such
    			// that the lhs expression type is determined in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. src/net/http/request.go

    // [Header] map as Header["Referer"]; the benefit of making it available
    // as a method is that the compiler can diagnose programs that use the
    // alternate (correct English) spelling req.Referrer() but cannot
    // diagnose programs that use Header["Referrer"].
    func (r *Request) Referer() string {
    	return r.Header.Get("Referer")
    }
    
    // multipartByReader is a sentinel value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    			//
    			// Delay operand checking until we know the final type
    			// by marking the lhs expression as lhs shift operand.
    			//
    			// Usually (in correct programs), the lhs expression
    			// is in the untyped map. However, it is possible to
    			// create incorrect programs where the same expression
    			// is evaluated twice (via a declaration cycle) such
    			// that the lhs expression type is determined in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    // starting with 1 above. See discussion of GC rate below.
    
    // Concurrent sweep.
    //
    // The sweep phase proceeds concurrently with normal program execution.
    // The heap is swept span-by-span both lazily (when a goroutine needs another span)
    // and concurrently in a background goroutine (this helps programs that are not CPU bound).
    // At the end of STW mark termination all spans are marked as "needs sweeping".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. src/runtime/mprof.go

    //
    // The tools that process the memory profiles assume that the
    // profile rate is constant across the lifetime of the program
    // and equal to the current value. Programs that change the
    // memory profiling rate should do so just once, as early as
    // possible in the execution of the program (for example,
    // at the beginning of main).
    var MemProfileRate int = 512 * 1024
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // included by any test program that uses Google Test.
    //
    // IMPORTANT NOTE: Due to limitation of the C++ language, we have to
    // leave some internal implementation details in this header file.
    // They are clearly marked by comments like this:
    //
    //   // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
    //
    // Such code is NOT meant to be used by a user directly, and is subject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  9. src/time/format.go

    // permitted by the RFCs and they do accept time formats not formally defined.
    // The [RFC3339Nano] format removes trailing zeros from the seconds field
    // and thus may not sort correctly once formatted.
    //
    // Most programs can use one of the defined constants as the layout passed to
    // Format or Parse. The rest of this comment can be ignored unless you are
    // creating a custom layout string.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    			bits >>= 8
    		}
    
    		// Process one instruction.
    		inst := uintptr(*p)
    		p = add1(p)
    		n := inst & 0x7F
    		if inst&0x80 == 0 {
    			// Literal bits; n == 0 means end of program.
    			if n == 0 {
    				// Program is over.
    				break Run
    			}
    			nbyte := n / 8
    			for i := uintptr(0); i < nbyte; i++ {
    				bits |= uintptr(*p) << nbits
    				p = add1(p)
    				*dst = uint8(bits)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top