Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 364 for isDependent (0.14 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/AbstractNativeCompileTask.java

         *
         * @since 4.7
         */
        @Nested
        public Property<NativePlatform> getTargetPlatform() {
            return targetPlatform;
        }
    
        /**
         * Should the compiler generate position independent code?
         */
        @Input
        public boolean isPositionIndependentCode() {
            return positionIndependentCode;
        }
    
        public void setPositionIndependentCode(boolean positionIndependentCode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/op.go

    // There is one file for generic (architecture-independent) ops and one file
    // for each architecture.
    type Op int32
    
    type opInfo struct {
    	name              string
    	reg               regInfo
    	auxType           auxType
    	argLen            int32 // the number of arguments, -1 if variable length
    	asm               obj.As
    	generic           bool      // this is a generic (arch-independent) opcode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. src/internal/poll/fd_unix.go

    		return n, err
    	}
    }
    
    // Pread wraps the pread system call.
    func (fd *FD) Pread(p []byte, off int64) (int, error) {
    	// Call incref, not readLock, because since pread specifies the
    	// offset it is independent from other reads.
    	// Similarly, using the poller doesn't make sense for pread.
    	if err := fd.incref(); err != nil {
    		return 0, err
    	}
    	if fd.IsStream && len(p) > maxRW {
    		p = p[:maxRW]
    	}
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm_test.go

    		{immAddr(-200), Yi32},
    
    		{regAddr(REG_SP), Yrl32},
    		{regAddr(REG_SI), Yrl32},
    		{regAddr(REG_DI), Yrl32},
    	}
    
    	// Add tests that are arch-independent for all sets.
    	oclassTestsAMD64 = append(oclassTestsAMD64, oclassTestsCommon...)
    	oclassTests386 = append(oclassTests386, oclassTestsCommon...)
    }
    
    func TestOclass(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. src/strconv/decimal.go

    }
    
    func digitZero(dst []byte) int {
    	for i := range dst {
    		dst[i] = '0'
    	}
    	return len(dst)
    }
    
    // trim trailing zeros from number.
    // (They are meaningless; the decimal point is tracked
    // independent of the number of digits.)
    func trim(a *decimal) {
    	for a.nd > 0 && a.d[a.nd-1] == '0' {
    		a.nd--
    	}
    	if a.nd == 0 {
    		a.dp = 0
    	}
    }
    
    // Assign v to a.
    func (a *decimal) Assign(v uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 15 19:41:25 UTC 2017
    - 11K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/events.md

    That's what we'll solve, let's load the model before the requests are handled, but only right before the application starts receiving requests, not while  the code is being loaded.
    
    ## Lifespan
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. LICENSE

    covered by this License; they are outside its scope.  The act of
    running a program using the Library is not restricted, and output from
    such a program is covered only if its contents constitute a work based
    on the Library (independent of the use of the Library in a tool for
    writing it).  Whether that is true depends on what the Library does
    and what the program that uses the Library does.
    
      1. You may copy and distribute verbatim copies of the Library's
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/nodes_test.go

    type test struct {
    	nodetyp string
    	snippet string
    }
    
    var decls = []test{
    	// The position of declarations is always the
    	// position of the first token of an individual
    	// declaration, independent of grouping.
    	{"ImportDecl", `import @"math"`},
    	{"ImportDecl", `import @mymath "math"`},
    	{"ImportDecl", `import @. "math"`},
    	{"ImportDecl", `import (@"math")`},
    	{"ImportDecl", `import (@mymath "math")`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 18:45:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/workcmd/use.go

    		// so it must be kept absolute instead.
    		return abs, abs
    	}
    
    	// Normalize relative paths to use slashes, so that checked-in go.work
    	// files with relative paths within the repo are platform-independent.
    	return abs, modload.ToDirectoryPath(rel)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileFilesFactory.java

        private enum IncludeFileResolutionResult {
            NoMacroIncludes,
            HasMacroIncludes, // but all resolved ok
            UnresolvedMacroIncludes
        }
    
        /**
         * Details of a file that are independent of where the file appears in the file include graph.
         */
        private static class FileDetails {
            final IncludeDirectives directives;
            // Non-null when the result of visiting this file can be reused
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
Back to top