Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 232 for defBlock (0.12 sec)

  1. pkg/kubelet/container/testing/fake_runtime.go

    		return image.Image, f.Err
    	}
    
    	retErr := f.Err
    	if f.imagePullTokenBucket == nil {
    		f.imagePullTokenBucket = make(chan bool, 1)
    	}
    	// Unlock before waiting for UnblockImagePulls calls, to avoid deadlock.
    	f.Unlock()
    	select {
    	case <-ctx.Done():
    	case <-f.imagePullTokenBucket:
    	}
    	return image.Image, retErr
    }
    
    // UnblockImagePulls unblocks a certain number of image pulls, if BlockImagePulls is true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 00:23:50 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/go/types/subst.go

    		}
    
    	case *Named:
    		// subst is called during expansion, so in this function we need to be
    		// careful not to call any methods that would cause t to be expanded: doing
    		// so would result in deadlock.
    		//
    		// So we call t.Origin().TypeParams() rather than t.TypeParams().
    		orig := t.Origin()
    		n := orig.TypeParams().Len()
    		if n == 0 {
    			return t // type is not parameterized
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/text/template/parse/lex_test.go

    		mkItem(itemNumber, "3"),
    		mkItem(itemError, "unexpected right paren"),
    	}},
    
    	// Fixed bugs
    	// Many elements in an action blew the lookahead until
    	// we made lexInsideAction not loop.
    	{"long pipeline deadlock", "{{|||||}}", []item{
    		tLeft,
    		tPipe,
    		tPipe,
    		tPipe,
    		tPipe,
    		tPipe,
    		tRight,
    		tEOF,
    	}},
    	{"text with bad comment", "hello-{{/*/}}-world", []item{
    		mkItem(itemText, "hello-"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 15:03:43 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/subst.go

    		}
    
    	case *Named:
    		// subst is called during expansion, so in this function we need to be
    		// careful not to call any methods that would cause t to be expanded: doing
    		// so would result in deadlock.
    		//
    		// So we call t.Origin().TypeParams() rather than t.TypeParams().
    		orig := t.Origin()
    		n := orig.TypeParams().Len()
    		if n == 0 {
    			return t // type is not parameterized
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                blockingServer.expect(":cInvalidPing")
                run ":aPing", ":bPing", ":cInvalidPing"
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/17013")
        def "does not deadlock when resolving outputs requires resolving multiple artifacts"() {
            buildFile("""
                import org.gradle.util.internal.GFileUtils
    
                abstract class OutputDeadlockTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{41, "ELNRNG", "link number out of range"},
    	{42, "EUNATCH", "protocol driver not attached"},
    	{43, "ENOCSI", "no CSI structure available"},
    	{44, "EL2HLT", "level 2 halted"},
    	{45, "EDEADLK", "deadlock situation detected/avoided"},
    	{46, "ENOLCK", "no record locks available"},
    	{47, "ECANCELED", "operation canceled"},
    	{48, "ENOTSUP", "operation not supported"},
    	{49, "EDQUOT", "disc quota exceeded"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  7. src/runtime/arena.go

    		}
    		return newobject(typ)
    	}
    
    	// Prevent preemption as we set up the space for a new object.
    	//
    	// Act like we're allocating.
    	mp := acquirem()
    	if mp.mallocing != 0 {
    		throw("malloc deadlock")
    	}
    	if mp.gsignal == getg() {
    		throw("malloc during signal")
    	}
    	mp.mallocing = 1
    
    	var ptr unsafe.Pointer
    	if !typ.Pointers() {
    		// Allocate pointer-less objects from the tail end of the chunk.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  8. src/syscall/zerrors_linux_mips.go

    	43:   "no CSI structure available",
    	44:   "level 2 halted",
    	45:   "resource deadlock avoided",
    	46:   "no locks available",
    	50:   "invalid exchange",
    	51:   "invalid request descriptor",
    	52:   "exchange full",
    	53:   "no anode",
    	54:   "invalid request code",
    	55:   "invalid slot",
    	56:   "file locking deadlock error",
    	59:   "bad font file format",
    	60:   "device not a stream",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 69.2K bytes
    - Viewed (0)
  9. src/syscall/zerrors_linux_mips64.go

    	43:   "no CSI structure available",
    	44:   "level 2 halted",
    	45:   "resource deadlock avoided",
    	46:   "no locks available",
    	50:   "invalid exchange",
    	51:   "invalid request descriptor",
    	52:   "exchange full",
    	53:   "no anode",
    	54:   "invalid request code",
    	55:   "invalid slot",
    	56:   "file locking deadlock error",
    	59:   "bad font file format",
    	60:   "device not a stream",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.5K bytes
    - Viewed (0)
  10. src/syscall/zerrors_linux_mips64le.go

    	43:   "no CSI structure available",
    	44:   "level 2 halted",
    	45:   "resource deadlock avoided",
    	46:   "no locks available",
    	50:   "invalid exchange",
    	51:   "invalid request descriptor",
    	52:   "exchange full",
    	53:   "no anode",
    	54:   "invalid request code",
    	55:   "invalid slot",
    	56:   "file locking deadlock error",
    	59:   "bad font file format",
    	60:   "device not a stream",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.5K bytes
    - Viewed (0)
Back to top