Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,322 for Issue (0.04 sec)

  1. test/typeparam/issue45722.go

    package main
    
    import (
    	"fmt"
    	"log"
    )
    
    func try[T any](v T, err error) T {
    	if err != nil {
    		panic(err)
    	}
    	return v
    }
    
    func handle(handle func(error)) {
    	if issue := recover(); issue != nil {
    		if e, ok := issue.(error); ok && e != nil {
    			handle(e)
    		} else {
    			handle(fmt.Errorf("%v", e))
    		}
    	}
    }
    
    func main() {
    	defer handle(func(e error) { log.Fatalln(e) })
    	_ = try(fmt.Print(""))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 562 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/route/binary.go

    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    }
    
    func (binaryLittleEndian) Uint32(b []byte) uint32 {
    	_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. releasenotes/notes/pilot-discovery-scoped-namespaces.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    # issue is a list of GitHub issues resolved in this note.
    # If issue is not in the current repo, specify its full URL instead.
    issue:
      - https://github.com/istio/istio/issues/26679
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 19:34:37 UTC 2021
    - 904 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/devnull.txt

    env GO111MODULE=off
    
    # Issue 28035: go test -c -o NUL should work.
    # Issue 28549: go test -c -o /dev/null should not overwrite /dev/null when run as root.
    cd x
    cmp $devnull $WORK/empty.txt
    go test -o=$devnull -c
    ! exists x.test$GOEXE
    cmp $devnull $WORK/empty.txt
    
    # Issue 12407: go build -o /dev/null should succeed.
    cd ..
    go build -o $devnull y
    cmp $devnull $WORK/empty.txt
    
    -- x/x_test.go --
    package x_test
    import (
        "testing"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 18 19:03:27 UTC 2019
    - 525 bytes
    - Viewed (0)
  5. .github/stale.yml

    # Configuration for probot-stale - https://github.com/probot/stale
    
    # Number of days of inactivity before an Issue or Pull Request becomes stale
    daysUntilStale: 30
    
    # Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
    # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
    daysUntilClose: 15
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 24 04:36:59 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarEncodingIntegrationTest.groovy

    import spock.lang.Issue
    
    import java.util.jar.JarFile
    import java.util.jar.Manifest
    
    @TestReproducibleArchives
    @DoesNotSupportNonAsciiPaths(reason = "Tests manage their own encoding settings")
    class JarEncodingIntegrationTest extends AbstractIntegrationSpec {
        // Only works on Java 8, see https://bugs.openjdk.java.net/browse/JDK-7050570
        @Issue(['GRADLE-1506'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. doc/next/2-language.md

    For details see the [language spec](/ref/spec#For_statements).
    
    <!-- go.dev/issue/46477, CL 566856, CL 586955, CL 586956 -->
    Go 1.23 includes preview support for [generic type aliases](/issue/46477).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 757 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_vendor_issue46867.txt

    # 'go mod vendor' on Windows attempted to open and copy
    # files from directories outside of the module.
    
    cd subdir
    go mod vendor
    ! exists vendor/example.net/NOTICE
    exists vendor/example.net/m/NOTICE
    
    -- subdir/go.mod --
    module golang.org/issue46867
    
    go 1.17
    
    replace example.net/m v0.1.0 => ./m
    
    require example.net/m v0.1.0
    -- subdir/issue.go --
    package issue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 01 17:10:57 UTC 2021
    - 675 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsBugsIntegrationTest.groovy

            // io.ktor:ktor-bom:1.3.2 is not available in mavenCentral() and the original issue this test covers
            // is only reproducible with io.micronaut:micronaut-bom:2.0.1 which depends on io.ktor:ktor-bom:1.3.2
            // The original issue can still be reproduced using the following placeholder pom for this missing dependency
            // with Gradle 6.5.1 where the issue was originally reported
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 17:15:55 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4FilteringIntegrationTest.groovy

     */
    
    
    package org.gradle.testing.junit.junit4
    import org.gradle.integtests.fixtures.DefaultTestExecutionResult
    import org.gradle.testing.AbstractTestFilteringIntegrationTest
    import spock.lang.Issue
    
    abstract class AbstractJUnit4FilteringIntegrationTest extends AbstractTestFilteringIntegrationTest {
    
        void theParameterizedFiles() {
            file("src/test/java/ParameterizedFoo.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top