Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for 17065 (0.28 sec)

  1. src/cmd/cgo/internal/test/test.go

    		t.Fatalf("mismatched data: expected %v, got %v", data, (*(*[10]byte)(unsafe.Pointer(cData)))[:])
    	}
    }
    
    // issue 17065
    
    var sink C.int
    
    func test17065(t *testing.T) {
    	if runtime.GOOS == "darwin" || runtime.GOOS == "ios" {
    		t.Skip("broken on darwin; issue 17065")
    	}
    	for i := range C.ii {
    		sink = C.ii[i]
    	}
    }
    
    // issue 17537
    
    func test17537(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/99-minor/crypto/tls/67065.md

    Dmitri Shuralyov <******@****.***> 1716473495 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 226 bytes
    - Viewed (0)
  3. src/encoding/hex/example_test.go

    	// Hello Gopher!
    }
    
    func ExampleDump() {
    	content := []byte("Go is an open source programming language.")
    
    	fmt.Printf("%s", hex.Dump(content))
    
    	// Output:
    	// 00000000  47 6f 20 69 73 20 61 6e  20 6f 70 65 6e 20 73 6f  |Go is an open so|
    	// 00000010  75 72 63 65 20 70 72 6f  67 72 61 6d 6d 69 6e 67  |urce programming|
    	// 00000020  20 6c 61 6e 67 75 61 67  65 2e                    | language.|
    }
    
    func ExampleDumper() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 10 21:40:16 UTC 2016
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/Hasher.java

    /**
     * A safe hasher that can be marked as invalid.
     * <p>
     * In order to avoid collisions we prepend the length of the next bytes to the underlying hasher
     * (see this <a href="http://crypto.stackexchange.com/a/10065">answer</a> on stackexchange).
     */
    public interface Hasher {
        /**
         * Feed a bunch of bytes into the hasher.
         */
        void putBytes(byte[] bytes);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 11:14:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. test/fixedbugs/bug335.go

    // compiledir
    
    // Copyright 2011 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.
    
    // Issue 1705.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 207 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    Revision:     7d6581558e226a580d91d399f7dfb9e3095c2b1d
    
    Kotlin:       1.8.10
    Groovy:       3.0.13
    Ant:          Apache Ant(TM) version 1.10.11 compiled on July 10 2021
    JVM:          17.0.6 (Homebrew 17.0.6+0)
    OS:           Mac OS X 13.2.1 aarch64
    
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/gopath_install.txt

    exists $GOPATH/bin/go-cmd-test$GOEXE
    
    # With $GOBIN set, binaries should be installed to $GOBIN.
    env GOBIN=$WORK/bin1
    mkdir -p $GOBIN
    go install go-cmd-test
    exists $GOBIN/go-cmd-test$GOEXE
    
    # Issue 11065: installing to the current directory should create an executable.
    cd go-cmd-test
    env GOBIN=$PWD
    go install
    exists ./go-cmd-test$GOEXE
    cd ..
    
    # Without $GOBIN set, installing a program outside $GOPATH should fail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesBetweenBuildsFileSystemWatchingIntegrationTest.groovy

            runWithWatchingDisabled "run"
            then:
            outputContains "Hello VFS!"
            executedAndNotSkipped ":compileJava", ":classes", ":run"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/17865")
        def "#description directory moved is handled properly"() {
            def buildCache = new TestBuildCache(temporaryFolder.file("cache-dir").deleteDir().createDir())
            def buildFileContents = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. test/const1.go

    	// assume all types behave similarly to int8/uint8
    	Int8   int8  = 101
    	Minus1 int8  = -1
    	Uint8  uint8 = 102
    	Const        = 103
    
    	Float32    float32 = 104.5
    	Float64    float64 = 105.5
    	ConstFloat         = 106.5
    	Big        float64 = 1e300
    
    	String = "abc"
    	Bool   = true
    )
    
    var (
    	a1 = Int8 * 100              // ERROR "overflow|cannot convert"
    	a2 = Int8 * -1               // OK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 21:49:31 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

            fails("integrationTest")
            failure.assertHasErrorOutput("Configuring tests failed")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19065")
        def "test suites can add platforms using a #platformType with #format via coordinates"() {
            given: "a project defining a platform"
            file('platform/build.gradle') << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
Back to top