Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 635 for earlib (0.33 sec)

  1. releasenotes/notes/skip-graceful-termination.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue: [36686]
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 03:38:52 UTC 2023
    - 180 bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/testFixtures/groovy/org/gradle/testing/fixture/MultiJvmTestCompatibility.groovy

     */
    class MultiJvmTestCompatibility {
        /**
         * Check that the console is correct for a test worker. On Java 22, the console exists but is not a terminal. On earlier versions, the console does not exist.
         */
        static final String CONSOLE_CHECK = JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_22)
            ? "assertFalse(System.console().isTerminal());"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/testdata/i22600.go

    package main
    
    import (
    	"fmt"
    	"os"
    )
    
    func test() {
    	pwd, err := os.Getwd()
    	if err != nil {
    		fmt.Println(err)
    		os.Exit(1)
    	}
    	fmt.Println(pwd)
    }
    
    func main() {
    	growstack() // Use stack early to prevent growth during test, which confuses gdb
    	test()
    }
    
    var snk string
    
    //go:noinline
    func growstack() {
    	snk = fmt.Sprintf("%#v,%#v,%#v", 1, true, "cat")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 358 bytes
    - Viewed (0)
  4. releasenotes/notes/external-name.yaml

        content: |
          Below describes *upcoming* changes to `ExternalName`.
          In this release, there is no behavioral changes by default.
          However, you can explicitly opt-in to the new behavior early if desired, and prepare your environments for the upcoming change.
          
          Kubernetes `ExternalName` `Service`s allow users to create new DNS entries. For example, you can create an `example` service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/evaluation/OperationGenerationId.kt

    /**
     * Represents the "generation" of a particular operation (either an addition function call or a property assignment operation).
     *
     * The order of generations is important as calls in later generations can override calls in earlier generations, but no the
     * other way around.
     * For instance, a property assignment can override a convention assignment, but a convention assignment cannot override a property assignment.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/assignment/internal/KotlinDslAssignment.kt

    object KotlinDslAssignment {
    
        init {
            DeprecationLogger.deprecate("Internal class ${KotlinDslAssignment::class.java.name}")
                .withAdvice("The class was most likely loaded from `kotlin-dsl` plugin version 4.1.0 or earlier version used in the build: avoid specifying a version for `kotlin-dsl` plugin.")
                .willBeRemovedInGradle9()
                .undocumented()
                .nagUser()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/dist/README

    As of Go 1.5, dist and other parts of the compiler toolchain are written
    in Go, making bootstrapping a little more involved than in the past.
    The approach is to build the current release of Go with an earlier one.
    
    The process to install Go 1.x, for x ≥ 22, is:
    
    1. Build cmd/dist with Go 1.20.6.
    2. Using dist, build Go 1.x compiler toolchain with Go 1.20.6.
    3. Using dist, rebuild Go 1.x compiler toolchain with itself.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 17:20:22 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestCppInteroperabilityIntegrationTest.groovy

                project(':cppGreeter') {
                    apply plugin: 'cpp-library'
                    library.linkage = [Linkage.${linkage}]
                }
            """
            lib.writeToProject(testDirectory)
            cppGreeter.asLib().writeToProject(file("cppGreeter"))
    
            when:
            succeeds("test")
    
            then:
            result.assertTasksExecuted(":cppGreeter:compileDebugCpp", ":cppGreeter:${createOrLink(linkage)}Debug",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. src/crypto/aes/block.go

    	s2 ^= xk[k+2]
    	s3 ^= xk[k+3]
    
    	_ = dst[15] // early bounds check
    	byteorder.BePutUint32(dst[0:4], s0)
    	byteorder.BePutUint32(dst[4:8], s1)
    	byteorder.BePutUint32(dst[8:12], s2)
    	byteorder.BePutUint32(dst[12:16], s3)
    }
    
    // Decrypt one block from src into dst, using the expanded key xk.
    func decryptBlockGo(xk []uint32, dst, src []byte) {
    	_ = src[15] // early bounds check
    	s0 := byteorder.BeUint32(src[0:4])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    	}
    
    	// Exit early if rotation is disabled.
    	if !rotate {
    		return nil
    	}
    
    	kubeconfigPath := filepath.Join(kubeadmconstants.KubernetesDir, kubeadmconstants.KubeletKubeConfigFileName)
    	fmt.Printf("[kubelet-finalize] Updating %q to point to a rotatable kubelet client certificate and key\n", kubeconfigPath)
    
    	// Exit early if dry-running is enabled.
    	if data.DryRun() {
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top