Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for raceinit (0.14 sec)

  1. src/cmd/compile/internal/walk/walk.go

    		types.CalcSize(n.Type())
    	}
    }
    
    // walkRecv walks an ORECV node.
    func walkRecv(n *ir.UnaryExpr) ir.Node {
    	if n.Typecheck() == 0 {
    		base.Fatalf("missing typecheck: %+v", n)
    	}
    	init := ir.TakeInit(n)
    
    	n.X = walkExpr(n.X, &init)
    	call := walkExpr(mkcall1(chanfn("chanrecv1", 2, n.X.Type()), nil, &init, n.X, typecheck.NodNil()), &init)
    	return ir.InitExpr(init, call)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/builtin.go

    	typecheck.Stmts(l)
    	walkStmtList(l)
    	init.Append(l...)
    	return nlen
    }
    
    // walkDelete walks an ODELETE node.
    func walkDelete(init *ir.Nodes, n *ir.CallExpr) ir.Node {
    	init.Append(ir.TakeInit(n)...)
    	map_ := n.Args[0]
    	key := n.Args[1]
    	map_ = walkExpr(map_, init)
    	key = walkExpr(key, init)
    
    	t := map_.Type()
    	fast := mapfast(t)
    	key = mapKeyArg(fast, n, key, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        platform.localhostHandshakeCertificates()
    
      private lateinit var server: MockWebServer
      private lateinit var protocol: Protocol
      private lateinit var client: OkHttpClient
      private val fileSystem: FakeFileSystem = FakeFileSystem()
      private val cache: Cache = Cache(fileSystem, "/tmp/cache".toPath(), Long.MAX_VALUE)
      private lateinit var scheme: String
    
      private fun configureClientTestRule(): OkHttpClientTestRule {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasVX     bool // vector facility
    	HasVXE    bool // vector-enhancements facility 1
    	_         CacheLinePad
    }
    
    func init() {
    	archInit()
    	initOptions()
    	processOptions()
    }
    
    // options contains the cpu debug options that can be used in GODEBUG.
    // Options are arch dependent and are added by the arch specific initOptions functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/connection/RouteSelectorTest.kt

          this.proxySelector = ******@****.***elector
          this.uriHost = ******@****.***t
          this.uriPort = ******@****.***t
        }
    
      private lateinit var call: RealCall
      private val routeDatabase = RouteDatabase()
    
      @BeforeEach fun setUp() {
        call =
          clientTestRule.newClient().newCall(
            Request.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/order.go

    		// First, ensure that no work is required here.
    		if len(n.Init()) > 0 {
    			base.Fatalf("order.init shared node with ninit")
    		}
    		return
    	}
    	o.stmtList(ir.TakeInit(n))
    }
    
    // call orders the call expression n.
    // n.Op is OCALLFUNC/OCALLINTER or a builtin like OCOPY.
    func (o *orderState) call(nn ir.Node) {
    	if len(nn.Init()) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/expr.go

    		// because we might replace n with some other node
    		// and would lose the init list.
    		base.Fatalf("walkExpr init == &n->ninit")
    	}
    
    	if len(n.Init()) != 0 {
    		walkStmtList(n.Init())
    		init.Append(ir.TakeInit(n)...)
    	}
    
    	lno := ir.SetPos(n)
    
    	if base.Flag.LowerW > 1 {
    		ir.Dump("before walk expr", n)
    	}
    
    	if n.Typecheck() != 1 {
    		base.Fatalf("missed typecheck: %+v", n)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CacheTest.kt

      val clientTestRule = OkHttpClientTestRule()
    
      @RegisterExtension
      val platform = PlatformRule()
      private lateinit var server: MockWebServer
      private lateinit var server2: MockWebServer
      private val handshakeCertificates = platform.localhostHandshakeCertificates()
      private lateinit var client: OkHttpClient
      private lateinit var cache: Cache
      private val cookieManager = CookieManager()
    
      @BeforeEach
      fun setUp(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

        @get:InputDirectory
        @get:IgnoreEmptyDirectories
        @get:PathSensitive(PathSensitivity.RELATIVE)
        abstract val compiledPluginsBlocksDir: DirectoryProperty
    
        @get:Internal
        internal
        lateinit var plugins: List<PrecompiledScriptPlugin>
    
        @get:InputFiles
        @get:IgnoreEmptyDirectories
        @get:PathSensitive(PathSensitivity.RELATIVE)
        @Suppress("unused")
        internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

            }
    
        private
        fun binaryStatement(tree: CachingLightTree, node: LighterASTNode): ElementResult<DataStatement> {
            val children = tree.children(node)
    
            var isLeftArgument = true
            lateinit var operationTokenName: String
            var leftArg: LighterASTNode? = null
            var rightArg: LighterASTNode? = null
    
            children.forEach {
                when (it.tokenType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top