Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 75 of 75 for corerest (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    As such, if you use the `copy()` method as part of a task action, you must explicitly declare all inputs and outputs to get the correct behavior.
    
    The following example shows how to work around these limitations using the <<incremental_build.adoc#sec:task_input_output_runtime_api,dynamic API for task inputs and outputs>>:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    // The result is a best effort. It is because the PeerAuthentication is workload-based, this function is unable
    // to compute the correct service mTLS mode without knowing service to workload binding. For now, this
    // function uses only mesh and namespace level PeerAuthentication and ignore workload & port level policies.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //-------------------------------
    // function descriptor pointer validity test
    // good pointer returns 0
    // bad pointer returns 1
    
    // TODO: currently mksyscall_zos_s390x.go generate empty string for funcName
    // have correct funcName pass to the funcptrtest function
    func funcptrtest(funcptr uintptr, funcName string) uint64 {
    	entrypoint, err := safeload(funcptr + entrypointLocationOffset)
    	if err != 0 {
    		return 1
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    	if len(flagExtld) == 0 {
    		// Return the default external linker for the platform.
    		// This only matters when link tool is called directly without explicit -extld,
    		// go tool already passes the correct linker in other cases.
    		switch buildcfg.GOOS {
    		case "darwin", "freebsd", "openbsd":
    			flagExtld = []string{"clang"}
    		default:
    			flagExtld = []string{"gcc"}
    		}
    	}
    	return flagExtld
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    		l.extStaticSyms[nameVer{name, ver}] = i
    	} else {
    		l.symsByName[ver][name] = i
    	}
    	return i
    }
    
    // AddCgoExport records a cgo-exported symbol in l.CgoExports.
    // This table is used to identify the correct Go symbol ABI to use
    // to resolve references from host objects (which don't have ABIs).
    func (l *Loader) AddCgoExport(s Sym) {
    	if l.CgoExports == nil {
    		l.CgoExports = make(map[string]Sym)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top