Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for reuse (0.06 sec)

  1. src/cmd/dist/build.go

    	gorootBin = pathf("%s/bin", goroot)
    
    	// Don't run just 'go' because the build infrastructure
    	// runs cmd/dist inside go/bin often, and on Windows
    	// it will be found in the current directory and refuse to exec.
    	// All exec calls rewrite "go" into gorootBinGo.
    	gorootBinGo = pathf("%s/bin/go", goroot)
    
    	b = os.Getenv("GOOS")
    	if b == "" {
    		b = gohostos
    	}
    	goos = b
    	if find(goos, okgoos) < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    == Precompiled Headers
    
    Precompiled headers are a performance optimization that reduces the cost of compiling widely used headers multiple times. This feature _precompiles_ a header such that the compiled object file can be reused when compiling each source file rather than recompiling the header each time. This support is available for C, C+\+, Objective-C, and Objective-C++ builds.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    In addition, Kotlin delegated properties can easily be renamed via IDE refactoring.
    
    The following sample does the exact same things as the one in the previous section, but it uses delegated properties and reuses those references in place of string-literal task paths:
    
    .Using Kotlin delegated properties
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm_ppc64le.s

    #define Y0    V2 // Not modified
    #define Y1    V3 // Not modified
    #define T0    V4 // Result
    #define T1    V5 // Result
    #define P0    V30 // Not modified
    #define P1    V31 // Not modified
    
    // Temporaries: lots of reused vector regs
    #define YDIG  V6 // Overloaded with CAR2
    #define ADD1H V7 // Overloaded with ADD3H
    #define ADD2H V8 // Overloaded with ADD4H
    #define ADD3  V9 // Overloaded with SEL2,SEL5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ppc64/asm.go

    				t = ldr.SymValue(tramp) - (ldr.SymValue(s) + int64(r.Off()))
    
    				// With internal linking, the trampoline can be used if it is not too far.
    				// With external linking, the trampoline must be in this section for it to be reused.
    				if (ctxt.IsInternal() && int64(int32(t<<6)>>6) == t) || (ctxt.IsExternal() && ldr.SymSect(s) == ldr.SymSect(tramp)) {
    					break
    				}
    			}
    			if ldr.SymType(tramp) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    	flags unwindFlags
    }
    
    // init initializes u to start unwinding gp's stack and positions the
    // iterator on gp's innermost frame. gp must not be the current G.
    //
    // A single unwinder can be reused for multiple unwinds.
    func (u *unwinder) init(gp *g, flags unwindFlags) {
    	// Implementation note: This starts the iterator on the first frame and we
    	// provide a "valid" method. Alternatively, this could start in a "before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // - The outer parentheses in CompileAssert<(bool(expr))> are necessary
    //   to work around a bug in gcc 3.4.4 and 4.0.1.  If we had written
    //
    //     CompileAssert<bool(expr)>
    //
    //   instead, these compilers will refuse to compile
    //
    //     GTEST_COMPILE_ASSERT_(5 > 0, some_message);
    //
    //   (They seem to think the ">" in "5 > 0" marks the end of the
    //   template argument list.)
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // - The outer parentheses in CompileAssert<(bool(expr))> are necessary
    //   to work around a bug in gcc 3.4.4 and 4.0.1.  If we had written
    //
    //     CompileAssert<bool(expr)>
    //
    //   instead, these compilers will refuse to compile
    //
    //     GTEST_COMPILE_ASSERT_(5 > 0, some_message);
    //
    //   (They seem to think the ">" in "5 > 0" marks the end of the
    //   template argument list.)
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // must be JSONMap. A patch can be created from an original and modified document by
    // calling CreateTwoWayMergeMapPatch.
    // Warning: the original and patch JSONMap objects are mutated by this function and should not be reused.
    func StrategicMergeMapPatch(original, patch JSONMap, dataStruct interface{}) (JSONMap, error) {
    	schema, err := NewPatchMetaFromStruct(dataStruct)
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  10. src/go/build/build.go

    		return fn(path)
    	}
    
    	f, err := os.Open(path)
    	if err != nil {
    		return nil, err // nil interface
    	}
    	return f, nil
    }
    
    // isFile determines whether path is a file by trying to open it.
    // It reuses openFile instead of adding another function to the
    // list in Context.
    func (ctxt *Context) isFile(path string) bool {
    	f, err := ctxt.openFile(path)
    	if err != nil {
    		return false
    	}
    	f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top