Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for block64 (0.16 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (BR(W|H) x:(MOV(W|H)Zload [off] {sym} ptr mem)) && x.Uses == 1 => @x.Block (MOV(W|H)BRload (MOVDaddr <ptr.Type> [off] {sym} ptr) mem)
    (BR(W|H) x:(MOV(W|H)Zloadidx ptr idx      mem)) && x.Uses == 1 => @x.Block (MOV(W|H)BRloadidx ptr idx mem)
    (BRD x:(MOVDload [off] {sym} ptr mem)) && x.Uses == 1 => @x.Block (MOVDBRload (MOVDaddr <ptr.Type> [off] {sym} ptr) mem)
    (BRD x:(MOVDloadidx ptr idx      mem)) && x.Uses == 1 => @x.Block (MOVDBRloadidx ptr idx mem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

      buffer_type file
      buffer_path /var/log/fluentd-buffers/kubernetes.containers.buffer
      # Set queue_full action to block because we want to pause gracefully
      # in case of the off-the-limits load instead of throwing an exception
      buffer_queue_full_action block
      # Set the chunk limit conservatively to avoid exceeding the recommended
      # chunk size of 5MB per write request.
      buffer_chunk_limit 512k
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    		// TODO(#57001): 'go get' should reject explicit toolchains below GoStrictVersion.
    		modFile.DropToolchainStmt()
    	} else {
    		modFile.AddToolchainStmt(toolchain)
    	}
    
    	// Update require blocks.
    	if gover.Compare(goVersion, gover.SeparateIndirectVersion) < 0 {
    		modFile.SetRequire(list)
    	} else {
    		modFile.SetRequireSeparateIndirect(list)
    	}
    	modFile.Cleanup()
    	after, err = modFile.Format()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    	    calling runtime.SetBlockProfileRate with n.
    	    See 'go doc runtime.SetBlockProfileRate'.
    	    The profiler aims to sample, on average, one blocking event every
    	    n nanoseconds the program spends blocked. By default,
    	    if -test.blockprofile is set without this flag, all blocking events
    	    are recorded, equivalent to -test.blockprofilerate=1.
    
    	-coverprofile cover.out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Prior to Gradle 7.6, Groovy scripts permitted access to root project configure methods
    within named container configure methods that throw `MissingMethodException`s.
    Consider the following snippets for examples of this behavior:
    
    Gradle permits access to the top-level `repositories` block from within the `configurations` block
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Accessing `libraries` or `bundles` from dependency version catalogs in the `plugins {}` block of a Kotlin script
    
    Accessing `libraries` or `bundles` from dependency version catalogs in the `plugins {}` block of a Kotlin script is deprecated.
    Please only use `versions` or `plugins` from dependency version catalogs in the `plugins {}` block.
    
    [[validate_plugins_without_java_toolchain]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    // reply.
    type writeRequest struct {
    	req *transportRequest
    	ch  chan<- error
    
    	// Optional blocking chan for Expect: 100-continue (for receive).
    	// If not nil, writeLoop blocks sending request body until
    	// it receives from this chan.
    	continueCh <-chan struct{}
    }
    
    // httpTimeoutError represents a timeout.
    // It implements net.Error and wraps context.DeadlineExceeded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top