Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 113 for osinit (0.19 sec)

  1. src/cmd/go/internal/work/init.go

    func BuildInit() {
    	if buildInitStarted {
    		base.Fatalf("go: internal error: work.BuildInit called more than once")
    	}
    	buildInitStarted = true
    	base.AtExit(closeBuilders)
    
    	modload.Init()
    	instrumentInit()
    	buildModeInit()
    	if err := fsys.Init(base.Cwd()); err != nil {
    		base.Fatal(err)
    	}
    
    	// Make sure -pkgdir is absolute, because we run commands
    	// in different directories.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/init.gradle

    def prefix = "init $gradle.identityPath"
    
    println "$prefix QUIET out"
    logging.captureStandardOutput LogLevel.INFO
    println "$prefix INFO out"
    
    System.err.println "$prefix ERROR err"
    logging.captureStandardError LogLevel.INFO
    System.err.println "$prefix INFO err"
    
    logger.lifecycle("$prefix lifecycle log")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 337 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/pluginManagement/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
    - 172 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/initScripts/externalDependency/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
    - 318 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/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
    - 61 bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_linux_ppc64x.go

    const (
    	// ISA Level
    	_PPC_FEATURE2_ARCH_2_07 = 0x80000000
    	_PPC_FEATURE2_ARCH_3_00 = 0x00800000
    
    	// CPU features
    	_PPC_FEATURE2_DARN = 0x00200000
    	_PPC_FEATURE2_SCV  = 0x00100000
    )
    
    func doinit() {
    	// HWCAP2 feature bits
    	PPC64.IsPOWER8 = isSet(hwCap2, _PPC_FEATURE2_ARCH_2_07)
    	PPC64.IsPOWER9 = isSet(hwCap2, _PPC_FEATURE2_ARCH_3_00)
    	PPC64.HasDARN = isSet(hwCap2, _PPC_FEATURE2_DARN)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 775 bytes
    - Viewed (0)
  7. src/internal/cpu/cpu_riscv64.go

    // Copyright 2019 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.
    
    package cpu
    
    const CacheLinePadSize = 64
    
    func doinit() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 01:18:38 UTC 2023
    - 220 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableFunctionMultiModules2.txt

    final class MainKt$test$1 {
        // source: 'main.kt'
        enclosing method MainKt.test()I
        public final static field INSTANCE: MainKt$test$1
        inner (anonymous) class MainKt$test$1
        static method <clinit>(): void
        method <init>(): void
        public synthetic bridge method invoke(): java.lang.Object
        public final method invoke(): void
    }
    
    public final class MainKt {
        // source: 'main.kt'
        inner (anonymous) class MainKt$test$1
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Feb 26 21:57:23 UTC 2024
    - 621 bytes
    - Viewed (0)
  9. src/cmd/internal/osinfo/os_windows.go

    // Copyright 2022 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.
    
    //go:build windows
    
    package osinfo
    
    import (
    	"fmt"
    
    	"golang.org/x/sys/windows"
    )
    
    // Version returns the OS version name/number.
    func Version() (string, error) {
    	info := windows.RtlGetVersion()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 452 bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/AbstractProxyClassGenerator.java

    import org.objectweb.asm.MethodVisitor;
    import org.objectweb.asm.Opcodes;
    
    public class AbstractProxyClassGenerator {
        protected static final String CONSTRUCTOR_NAME = "<init>";
        protected static final String STATIC_CONSTRUCTOR_NAME = "<clinit>";
        protected static final String CONCRETE_SIGNATURE = null;
        protected static final String[] NO_EXCEPTIONS = new String[0];
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top