Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,803 for maker (0.07 sec)

  1. src/cmd/go/testdata/script/cover_build_simple.txt

    go tool covdata percent -i=data/normal
    stdout  'coverage:.*[1-9][0-9.]+%'
    
    # Program makes a direct call to os.Exit(0).
    env GOCOVERDIR=data/goodexit
    exec ./example.exe goodexit
    ! stderr '^warning: GOCOVERDIR not set, no coverage data emitted'
    go tool covdata percent -i=data/goodexit
    stdout  'coverage:.*[1-9][0-9.]+%'
    
    # Program makes a direct call to os.Exit(1).
    env GOCOVERDIR=data/badexit
    ! exec ./example.exe badexit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. src/strings/clone.go

    import (
    	"internal/stringslite"
    )
    
    // Clone returns a fresh copy of s.
    // It guarantees to make a copy of s into a new allocation,
    // which can be important when retaining only a small substring
    // of a much larger string. Using Clone can help such programs
    // use less memory. Of course, since using Clone makes a copy,
    // overuse of Clone can make programs use more memory.
    // Clone should typically be used only rarely, and only when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 809 bytes
    - Viewed (0)
  3. src/container/ring/ring_test.go

    	r1.Unlink(0)
    	verify(t, &r1, 1, 0)
    }
    
    func makeN(n int) *Ring {
    	r := New(n)
    	for i := 1; i <= n; i++ {
    		r.Value = i
    		r = r.Next()
    	}
    	return r
    }
    
    func sumN(n int) int { return (n*n + n) / 2 }
    
    func TestNew(t *testing.T) {
    	for i := 0; i < 10; i++ {
    		r := New(i)
    		verify(t, r, i, -1)
    	}
    	for i := 0; i < 10; i++ {
    		r := makeN(i)
    		verify(t, r, i, sumN(i))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  4. docs/bucket/replication/README.md

    ```
    mc replicate edit alias/bucket --id xyz.id --replicate "delete,delete-marker"
    ```
    
    To re-enable replica metadata modification syncing,
    
    ```
    mc replicate edit alias/bucket --id xyz.id --replicate "delete,delete-marker,replica-metadata-sync"
    ```
    
    ## MinIO Extension
    
    ### Replicating Deletes
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/slice_test.go

    // license that can be found in the LICENSE file.
    
    // This test makes sure that t.s = t.s[0:x] doesn't write
    // either the slice pointer or the capacity.
    // See issue #14855.
    
    package main
    
    import "testing"
    
    const N = 1000000
    
    type X struct {
    	s []int
    }
    
    func TestSlice(t *testing.T) {
    	done := make(chan struct{})
    	a := make([]int, N+10)
    
    	x := &X{a}
    
    	go func() {
    		for i := 0; i < N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 850 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/build/relnote/links.go

    		// Handle inline elements with nested content.
    		switch in := ins[i].(type) {
    		case *md.Strong:
    			res = append(res, &md.Strong{
    				Marker: in.Marker,
    				Inner:  addSymbolLinksInlines(in.Inner, defaultPackage),
    			})
    
    		case *md.Emph:
    			res = append(res, &md.Emph{
    				Marker: in.Marker,
    				Inner:  addSymbolLinksInlines(in.Inner, defaultPackage),
    			})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveTest.kt

            val elementsByMarker = collectElementsToResolve(mainFile, mainModule, testServices).groupBy { it.marker }
            val actual = prettyPrint {
                printMap(
                    map = elementsByMarker,
                    omitSingleKey = true,
                    renderKey = { key, _ -> append("$key:") }
                ) { marker, byMarker ->
                    val elementsByMarkerAndContext = byMarker.groupBy { it.context }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. platforms/software/publish/src/main/java/org/gradle/api/publish/PublicationContainer.java

     * <ul>
     *     <li>The {@link org.gradle.api.publish.maven.plugins.MavenPublishPlugin} makes it possible to create {@link org.gradle.api.publish.maven.MavenPublication} instances.</li>
     *     <li>The {@link org.gradle.api.publish.ivy.plugins.IvyPublishPlugin} makes it possible to create {@link org.gradle.api.publish.ivy.IvyPublication} instances.</li>
     * </ul>
     *
     *
     * <pre class='autoTested'>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/go/doc/reader.go

    			}
    		}
    	}
    	return nil
    }
    
    var (
    	noteMarker    = `([A-Z][A-Z]+)\(([^)]+)\):?`                // MARKER(uid), MARKER at least 2 chars, uid at least 1 char
    	noteMarkerRx  = lazyregexp.New(`^[ \t]*` + noteMarker)      // MARKER(uid) at text start
    	noteCommentRx = lazyregexp.New(`^/[/*][ \t]*` + noteMarker) // MARKER(uid) at comment start
    )
    
    // clean replaces each sequence of space, \r, or \t characters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. build-logic/root-build/src/main/kotlin/gradlebuild.warmup-ec2.gradle.kts

     * limitations under the License.
     */
    // It might be injected by init scripts in ~/.gradle/init.d
    // https://github.com/gradle/dev-infrastructure/blob/ce8651f39f370ebe5c0c3413b5ab40a05421cfb7/salt/ami-baker/ec2-build-vm-baker/provision_by_salt.sh#L172
    if (tasks.findByName("resolveAllDependencies") == null) {
        tasks.register("resolveAllDependencies") {
            val npmInstall = tasks.findByName("kotlinNpmInstall")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 26 09:39:18 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top