Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 161 for osinit (0.38 sec)

  1. platforms/documentation/docs/src/snippets/initScripts/plugins/groovy/init.gradle

    // tag::init-script-plugin[]
    
    apply plugin: EnterpriseRepositoryPlugin
    
    class EnterpriseRepositoryPlugin implements Plugin<Gradle> {
    
        private static String ENTERPRISE_REPOSITORY_URL = "https://repo.gradle.org/gradle/repo"
    
        void apply(Gradle gradle) {
            // ONLY USE ENTERPRISE REPO FOR DEPENDENCIES
            gradle.allprojects { project ->
                project.repositories {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && !arm && !arm64 && !mips64 && !mips64le && !ppc64 && !ppc64le && !s390x
    
    package cpu
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 282 bytes
    - Viewed (0)
  3. src/runtime/linkname.go

    //go:linkname cgoAlwaysFalse
    //go:linkname cgoUse
    //go:linkname cgoCheckPointer
    //go:linkname cgoCheckResult
    //go:linkname cgoNoCallback
    //go:linkname gobytes
    //go:linkname gostringn
    
    // used in plugin
    //go:linkname doInit
    
    // used in math/bits
    //go:linkname overflowError
    //go:linkname divideError
    
    // used in tests
    //go:linkname extraMInUse
    //go:linkname blockevent
    //go:linkname haveHighResSleep
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 778 bytes
    - Viewed (0)
  4. src/internal/cpu/cpu_loong64.go

    //go:build loong64
    
    package cpu
    
    // CacheLinePadSize is used to prevent false sharing of cache lines.
    // We choose 64 because Loongson 3A5000 the L1 Dcache is 4-way 256-line 64-byte-per-line.
    const CacheLinePadSize = 64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:17:08 UTC 2022
    - 398 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/multipleFiles.txt

    public final class main/Main {
        // source: 'main.kt'
        public final static field INSTANCE: main.Main
        static method <clinit>(): void
        private method <init>(): void
        public final static method main(p0: java.lang.String[]): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 243 bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_linux_mips64x.go

    //go:build linux && (mips64 || mips64le)
    
    package cpu
    
    // HWCAP bits. These are exposed by the Linux kernel 5.4.
    const (
    	// CPU features
    	hwcap_MIPS_MSA = 1 << 1
    )
    
    func doinit() {
    	// HWCAP feature bits
    	MIPS64X.HasMSA = isSet(hwCap, hwcap_MIPS_MSA)
    }
    
    func isSet(hwc uint, value uint) bool {
    	return hwc&value != 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 480 bytes
    - Viewed (0)
  7. test/linkmain_run.go

    // run
    
    //go:build !nacl && !js && !wasip1
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Run the sinit test.
    
    package main
    
    import (
    	"fmt"
    	"io/ioutil"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"strings"
    )
    
    var tmpDir string
    
    func cleanup() {
    	os.RemoveAll(tmpDir)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. apache-maven/src/assembly/shared/init.cmd

    @REM ==== END VALIDATION ====
    
    :init
    
    set "CLASSWORLDS_CONF=%MAVEN_HOME%\bin\m2.conf"
    
    @REM Find the project basedir, i.e., the directory that contains the directory ".mvn".
    @REM Fallback to current working directory if not found.
    
    set "EXEC_DIR=%CD%"
    set "WDIR=%EXEC_DIR%"
    
    @REM Look for the --file switch and start the search for the .mvn directory from the specified
    @REM POM location, if supplied.
    
    set FILE_ARG=
    :arg_loop
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 16 21:35:28 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/initScripts/configurationInjection/groovy/init.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 62 bytes
    - Viewed (0)
  10. hack/lib/init.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # Short-circuit if init.sh has already been sourced
    [[ $(type -t kube::init::loaded) == function ]] && return 0
    
    # Unset CDPATH so that path interpolation can work correctly
    # https://github.com/kubernetes/kubernetes/issues/52255
    unset CDPATH
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top