Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for exportable (0.17 sec)

  1. src/runtime/debug/stack.go

    		if err != nil {
    			return err
    		}
    		runtime.KeepAlive(f) // prevent finalization before dup
    		fd = uintptr(fd2)
    	}
    	if prev := runtime_setCrashFD(fd); prev != ^uintptr(0) {
    		// We use NewFile+Close because it is portable
    		// unlike syscall.Close, whose parameter type varies.
    		os.NewFile(prev, "").Close() // ignore error
    	}
    	return nil
    }
    
    //go:linkname runtime_setCrashFD runtime.setCrashFD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

                renderGraph(
                    allDataJson[chart.field],
                    {
                        tickFormatter: (index, value) => {
                            if (index === parseInt(index, 10)) { // portable way to check if sth is an integer
                                const executionLabel = allDataJson.executionLabels[index];
                                return executionLabel ? executionLabel.date : "";
                            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. build/lib/release.sh

      kube::release::package_test_platform_tarballs
    
      kube::log::status "Building tarball: test portable"
    
      local release_stage="${RELEASE_STAGE}/test/kubernetes"
      rm -rf "${release_stage}"
      mkdir -p "${release_stage}"
    
      # First add test image files and other portable sources so we can create
      # the portable test tarball.
      mkdir -p "${release_stage}/test/images"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. .teamcity/README.md

    If you have ktlint errors, you can automatically fix them by running `mvn com.github.gantsign.maven:ktlint-maven-plugin:1.1.1:format`.
    
    ## How the configuration works
    
    We use Kotlin portable DSL to store TeamCity configuration, which means you can easily create a new pipeline
    based on a specific branch. Currently, we have two pipelines: `master` and `release`, but you can easily create
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/syscall/syscall_wasip1.go

    // because we need Go programs to be portable across platforms. WASI does
    // not have a mechanism to to spawn processes so there is no reason for an
    // application to take a dependency on this type.
    type Rusage struct {
    	Utime Timeval
    	Stime Timeval
    }
    
    // ProcAttr is a placeholder to allow compilation of the [os/exec] package
    // because we need Go programs to be portable across platforms. WASI does
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/syscall/syscall.go

    // you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
    // to freebsd and $GOARCH to arm.
    // The primary use of syscall is inside other packages that provide a more
    // portable interface to the system, such as "os", "time" and "net".  Use
    // those packages rather than this one if you can.
    // For details of the functions and data types in this package consult
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/first-steps.md

     │                      │
     ╰──────────────────────╯
    
    <font color="#3465A4">INFO    </font> Importing module <font color="#4E9A06">main</font>
    <font color="#3465A4">INFO    </font> Found importable FastAPI app
    
     ╭─ <font color="#8AE234"><b>Importable FastAPI app</b></font> ─╮
     │                          │
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 12K bytes
    - Viewed (1)
  8. src/os/error.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os
    
    import (
    	"internal/poll"
    	"io/fs"
    )
    
    // Portable analogs of some common system call errors.
    //
    // Errors returned from this package may be tested against these errors
    // with [errors.Is].
    var (
    	// ErrInvalid indicates an invalid argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/environment/base.go

    //
    // Note that a default version number less than n-1 indicates a wider range of version
    // compatibility than strictly required for rollback. A wide range of compatibility is
    // desirable because it means that CEL expressions are portable across a wider range
    // of Kubernetes versions.
    func DefaultCompatibilityVersion() *version.Version {
    	return version.MajorMinor(1, 30)
    }
    
    var baseOpts = append(baseOptsWithoutStrictCost, StrictCostOpt)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 15:51:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. src/os/file_posix.go

    func (f *File) pwrite(b []byte, off int64) (n int, err error) {
    	n, err = f.pfd.Pwrite(b, off)
    	runtime.KeepAlive(f)
    	return n, err
    }
    
    // syscallMode returns the syscall-specific mode bits from Go's portable mode bits.
    func syscallMode(i FileMode) (o uint32) {
    	o |= uint32(i.Perm())
    	if i&ModeSetuid != 0 {
    		o |= syscall.S_ISUID
    	}
    	if i&ModeSetgid != 0 {
    		o |= syscall.S_ISGID
    	}
    	if i&ModeSticky != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top