Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 908 for haninge (0.15 sec)

  1. src/internal/testenv/testenv_unix.go

    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    package testenv
    
    import (
    	"errors"
    	"io/fs"
    	"syscall"
    )
    
    // Sigquit is the signal to send to kill a hanging subprocess.
    // Send SIGQUIT to get a stack trace.
    var Sigquit = syscall.SIGQUIT
    
    func syscallIsNotSupported(err error) bool {
    	if err == nil {
    		return false
    	}
    
    	var errno syscall.Errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 17:44:01 UTC 2023
    - 994 bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/MetadataSupplierAware.java

     * avoid too many requests on a server. By providing such rules, a plugin or build author can
     * provide the necessary information to perform component selection without having to actually
     * fetch the component metadata on a server.
     *
     * @since 4.9
     */
    public interface MetadataSupplierAware {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3K bytes
    - Viewed (0)
  3. releasenotes/notes/fix-stackdriver-install.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 02:38:06 UTC 2023
    - 209 bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/caching/internal/packaging/BuildCacheEntryPackingIntegrationTest.groovy

            "ISO-8859-1",
            "windows-1250",
        ]
    
        @Issue("https://github.com/gradle/gradle/issues/9877")
        @ToBeFixedForConfigurationCache(skip =  INVESTIGATE)
        def "can store and load files having non-ascii characters in file name when default file encoding is set to #fileEncoding"() {
            def fileName = NON_ASCII_NAME + ".txt"
            def outputFile = file("dir", fileName)
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. releasenotes/notes/49476.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issues:
    - 49476
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 00:44:31 UTC 2024
    - 219 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/_builtin/coverage.go

    // license that can be found in the LICENSE file.
    
    // NOTE: If you change this file you must run "go generate"
    // in cmd/compile/internal/typecheck
    // to update builtin.go. This is not done automatically
    // to avoid depending on having a working compiler binary.
    
    //go:build ignore
    
    package coverage
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 16:59:48 UTC 2024
    - 437 bytes
    - Viewed (0)
  7. releasenotes/notes/revision-tag-command.yaml

        directly at a revision and selectively decide the granularity of their namespace labels. This makes it possible
        to perform upgrades with the ease of in-place upgrades while having the safety revision-based upgrades
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 16 06:17:37 UTC 2021
    - 532 bytes
    - Viewed (0)
  8. test/typeparam/mdempsky/21.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that devirtualization doesn't introduce spurious type
    // assertion failures due to shaped and non-shaped interfaces having
    // distinct itabs.
    
    package main
    
    func main() {
    	F[int]()
    }
    
    func F[T any]() {
    	var i I[T] = X(0)
    	i.M()
    }
    
    type I[T any] interface{ M() }
    
    type X int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:26:32 UTC 2022
    - 467 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_vcs_missing.txt

    [exec:bzr] skip 'tests NOT having bzr'
    [!net:launchpad.net] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    
    cd empty
    ! go get launchpad.net/gocheck
    stderr '"bzr": executable file not found'
    cd ..
    
    # 1.11 used to give the cryptic error "cannot find module for path" here, but
    # only for a main package.
    cd main
    ! go build -mod=mod
    stderr '"bzr": executable file not found'
    cd ..
    
    -- empty/go.mod --
    module m
    -- main/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 513 bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/BaseGraph.java

       *       involving {@code view} will throw)
       *   <li>{@code hashCode()} does not throw
       *   <li>if {@code node} is re-added to the graph after having been removed, {@code view}'s
       *       behavior is undefined
       * </ul>
       *
       * @throws IllegalArgumentException if {@code node} is not an element of this graph
       */
      Set<N> adjacentNodes(N node);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top