Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for dotdot (0.21 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultDynamicCallProblemReportingTest.kt

            val results = Collections.synchronizedList(mutableListOf<Boolean>())
    
            fun doTest() {
                reporting.enterDynamicCall(this)
                latch.countDown()
                latch.await()
                results += reporting.unreportedProblemInCurrentCall(problem)
            }
    
            (1..3).map { thread { doTest() } }.forEach(Thread::join)
            assertEquals(listOf(true, true, true), results)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/build.gradle

        // 'integTest.samplesdir' is set to an absolute path by the 'org.gradle.samples' plugin
        systemProperties.clear()
    
        filter {
            // workaround for https://github.com/gradle/dotcom/issues/5958
            failOnNoMatchingTests = false
            // Only execute C++ sample tests on Linux because it is the configured target
            if (!OperatingSystem.current().linux) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

      #   -rw------- 1 root root 1.3K Oct 12 00:56 kubelet.crt
      #   -rw------- 1 root root 1.7K Oct 12 00:56 kubelet.key
      # Windows:
      #   https://docs.microsoft.com/en-us/dotnet/api/system.io.fileattributes
      #   https://docs.microsoft.com/en-us/dotnet/api/system.io.fileattributes
    }
    
    # Creates the node PKI files in $env:PKI_DIR.
    #
    # Required ${kube_env} keys:
    #   CA_CERT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    		tocAddr := int64(Segdata.Vaddr) + 0x8000
    		if gotAddr := ldr.SymValue(ctxt.GOT); gotAddr != 0 {
    			tocAddr = gotAddr + 0x8000
    		}
    		for i := range ctxt.DotTOC {
    			if i >= sym.SymVerABICount && i < sym.SymVerStatic { // these versions are not used currently
    				continue
    			}
    			if toc := ldr.Lookup(".TOC.", i); toc != 0 {
    				ldr.SetSymValue(toc, tocAddr)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top