Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 110 for seem (0.17 sec)

  1. src/crypto/tls/handshake_client_test.go

    		}
    	}
    
    	return 0, io.EOF
    }
    
    // opensslOutputSink is an io.Writer that receives the stdout and stderr from an
    // `openssl` process and sends a value to handshakeComplete or readKeyUpdate
    // when certain messages are seen.
    type opensslOutputSink struct {
    	handshakeComplete chan struct{}
    	readKeyUpdate     chan struct{}
    	all               []byte
    	line              []byte
    }
    
    func newOpensslOutputSink() *opensslOutputSink {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    		}
    	}
    	wantActive := int32(0)
    	if job.Spec.Completions == nil {
    		// Job does not specify a number of completions.  Therefore, number active
    		// should be equal to parallelism, unless the job has seen at least
    		// once success, in which leave whatever is running, running.
    		if jobCtx.succeeded > 0 {
    			wantActive = active
    		} else {
    			wantActive = parallelism
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    		// Validate the named M.
    		if mid == curCtx.M {
    			if gen != o.initialGen && curCtx.G != gid {
    				// If this isn't the first generation, we *must* have seen this
    				// binding occur already. Even if the G was blocked in a syscall
    				// for multiple generations since trace start, we would have seen
    				// a previous GoStatus event that bound the goroutine to an M.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. go.sum

    github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
    github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts=
    github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc=
    github.com/seccomp/libseccomp-golang v0.10.0 h1:aA4bp+/Zzi0BnWZ2F1wgNBs5gTpm+na2rWM6M9YjLpY=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    	// freeIndexForScan is like freeindex, except that freeindex is
    	// used by the allocator whereas freeIndexForScan is used by the
    	// GC scanner. They are two fields so that the GC sees the object
    	// is allocated only when the object and the heap bits are
    	// initialized (see also the assignment of freeIndexForScan in
    	// mallocgc, and issue 54596).
    	freeIndexForScan uint16
    
    	// Cache of the allocBits at freeindex. allocCache is shifted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    	// collector. Otherwise, on weakly ordered machines,
    	// the garbage collector could follow a pointer to x,
    	// but see uninitialized memory or stale heap bits.
    	publicationBarrier()
    	// As x and the heap bits are initialized, update
    	// freeIndexForScan now so x is seen by the GC
    	// (including conservative scan) as an allocated object.
    	// While this pointer can't escape into user code as a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/reflect/type.go

    	mt.Key = ktyp
    	mt.Elem = etyp
    	mt.Bucket = bucketOf(ktyp, etyp)
    	mt.Hasher = func(p unsafe.Pointer, seed uintptr) uintptr {
    		return typehash(ktyp, p, seed)
    	}
    	mt.Flags = 0
    	if ktyp.Size_ > abi.MapMaxKeyBytes {
    		mt.KeySize = uint8(goarch.PtrSize)
    		mt.Flags |= 1 // indirect key
    	} else {
    		mt.KeySize = uint8(ktyp.Size_)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[upgrading_version_8]]
    = Upgrading your build from Gradle 8.x to the latest
    
    This chapter provides the information you need to migrate your Gradle 8.x builds to the latest Gradle release.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. src/go/build/build.go

    // We never pass these arguments to a shell (just to programs we construct argv for), so this should be okay.
    // See golang.org/issue/6038.
    // The @ is for OS X. See golang.org/issue/13720.
    // The % is for Jenkins. See golang.org/issue/16959.
    // The ! is because module paths may use them. See golang.org/issue/26716.
    // The ~ and ^ are for sr.ht. See golang.org/issue/32260.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader.go

    	// For the moment, allow DWARF subprogram DIEs for
    	// auto-generated wrapper functions. What seems to happen
    	// here is that we get different line numbers on formal
    	// params; I am guessing that the pos is being inherited
    	// from the spot where the wrapper is needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top