Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,372 for below (0.05 sec)

  1. src/index/suffixarray/sais.go

    	freq = freq_8_32(text, freq, bucket)
    	freq = freq[:256]     // establish len(freq) = 256, so 0 ≤ i < 256 below
    	bucket = bucket[:256] // eliminate bounds check for bucket[i] below
    	total := int32(0)
    	for i, n := range freq {
    		bucket[i] = total
    		total += n
    	}
    }
    
    // bucketMax_8_32 stores into bucket[c] the maximum index
    // in the bucket for character c in a bucket-sort of text.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_cache_pgo.txt

    stderr 'preprofile.*default\.pgo'
    
    # ... building a different package should not run preprofile again, instead
    # using a profile from cache.
    #
    # Note we can't directly look for $GOCACHE in the regex below because the
    # Windows slashes would need to be escaped. Instead just look for the "gocache"
    # component (specified above) as an approximation.
    go build -x -pgo=default.pgo lib2.go
    ! stderr 'preprofile.*default\.pgo'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 18:28:25 UTC 2024
    - 927 bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/format/LogHeaderFormatter.java

    import java.util.List;
    
    public interface LogHeaderFormatter {
        /**
         * Given a message, return possibly-styled output for displaying message meant to categorize
         * other messages "below" it, if any.
         */
        List<StyledTextOutputEvent.Span> format(String description, String status, boolean failed);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. cmd/update_fips.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    // Newer official download info URLs appear earlier below.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 934 bytes
    - Viewed (0)
  5. src/runtime/defs_linux_amd64.go

    type sigactiont struct {
    	sa_handler  uintptr
    	sa_flags    uint64
    	sa_restorer uintptr
    	sa_mask     uint64
    }
    
    type siginfoFields struct {
    	si_signo int32
    	si_errno int32
    	si_code  int32
    	// below here is a union; si_addr is the only field we use
    	si_addr uint64
    }
    
    type siginfo struct {
    	siginfoFields
    
    	// Pad struct to the max size in the kernel.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/groovy/buildSrc/src/main/groovy/myproject.library-conventions.gradle

        }
        repositories {
            maven {
                name "myOrgPrivateRepo"
                url 'build/my-repo'
            }
        }
    }
    
    // The project requires libraries to have a README containing sections configured below
    // tag::use-java-class[]
    def readmeCheck = tasks.register('readmeCheck', com.example.ReadmeVerificationTask) {
        // Expect the README in the project directory
        readme = layout.projectDirectory.file("README.md")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/image/ycbcr.go

    	r = r.Intersect(p.Rect)
    	// If r1 and r2 are Rectangles, r1.Intersect(r2) is not guaranteed to be inside
    	// either r1 or r2 if the intersection is empty. Without explicitly checking for
    	// this, the Pix[i:] expression below can panic.
    	if r.Empty() {
    		return &YCbCr{
    			SubsampleRatio: p.SubsampleRatio,
    		}
    	}
    	yi := p.YOffset(r.Min.X, r.Min.Y)
    	ci := p.COffset(r.Min.X, r.Min.Y)
    	return &YCbCr{
    		Y:              p.Y[yi:],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/dev_zos.go

    // license that can be found in the LICENSE file.
    
    //go:build zos && s390x
    
    // Functions to access/create device major and minor numbers matching the
    // encoding used by z/OS.
    //
    // The information below is extracted and adapted from <sys/stat.h> macros.
    
    package unix
    
    // Major returns the major component of a z/OS device number.
    func Major(dev uint64) uint32 {
    	return uint32((dev >> 16) & 0x0000FFFF)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 830 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testshared/testdata/depBase/dep.go

    var V int = 1
    
    var HasMask []string = []string{"hi"}
    
    type HasProg struct {
    	array [1024]*byte
    }
    
    type Dep struct {
    	X int
    }
    
    func (d *Dep) Method() int {
    	// This code below causes various go.itab.* symbols to be generated in
    	// the shared library. Similar code in ../exe/exe.go results in
    	// exercising https://golang.org/issues/17594
    	reflect.TypeOf(os.Stdout).Elem()
    	return 10
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    [[sec:cpp_unit_test_conventions]]
    == Conventions
    
    The {cpp} Unit Test Plugin adds conventions for sources and tasks, shown below.
    
    [[sec:cpp_unit_test_layout]]
    === Project layout
    
    The {cpp} Unit Test Plugin assumes the project layout shown below.
    None of these directories needs to exist or have anything in them.
    The {cpp} Unit Test Plugin will compile whatever it finds, and handles anything which is missing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top