Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 653 for copied32 (0.23 sec)

  1. src/internal/fuzz/pcg.go

    // necessary methods, optimized for speed.
    
    var globalInc atomic.Uint64 // PCG stream
    
    const multiplier uint64 = 6364136223846793005
    
    // pcgRand is a PRNG. It should not be copied or shared. No Rand methods are
    // concurrency safe.
    type pcgRand struct {
    	noCopy noCopy // help avoid mistakes: ask vet to ensure that we don't make a copy
    	state  uint64
    	inc    uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:28:14 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/compress/flate/dict_decoder.go

    //     Any valid stream must start with a literal insertion if no preset dictionary
    //     is used.
    //
    //   - Backward copies: Runs of one or more symbols are copied from previously
    //     emitted data. Backward copies come as the tuple (dist, length) where dist
    //     determines how far back in the stream to copy from and length determines how
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
  3. test/fixedbugs/issue17449.go

    }
    
    func (l *PriorityList) Next() interface{} {
        return l.remove(l.Len() - 1)
    }
    
    var l *PriorityList
    
    func Foo() {
        // It would fail here if instrumented code (including inline-label) was copied.
        for elem := l.Next(); elem != nil; elem = l.Next() {
        }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/compose.go

    		}
    	}
    }
    
    // ClearVariants removes any variants previously added, including those
    // copied from a Tag in SetTag.
    func (b *Builder) ClearVariants() {
    	b.variants = b.variants[:0]
    }
    
    // ClearExtensions removes any extensions previously added, including those
    // copied from a Tag in SetTag.
    func (b *Builder) ClearExtensions() {
    	b.private = ""
    	b.extensions = b.extensions[:0]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/DuplicateFileCopyingException.java

     * limitations under the License.
     */
    
    package org.gradle.api.file;
    
    import org.gradle.api.GradleException;
    
    /**
     * Thrown when more than one file with the same relative path name is to be copied
     * and the {@link DuplicatesStrategy} is set to DuplicatesStrategy.FAIL
     */
    public class DuplicateFileCopyingException extends GradleException {
        public DuplicateFileCopyingException(String desc) {
            super(desc);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 1004 bytes
    - Viewed (0)
  6. docs/bucket/lifecycle/DESIGN.md

            },
    ```
    
    When a transitioned object is restored temporarily to local MinIO instance via PostRestoreObject API, the object data is copied back from the remote tier, and additional metadata for the restored object is maintained as referenced below. Once the restore period expires, the local copy of the object is removed by the scanner during its periodic runs.
    
    ```
    ...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractPathSensitivityIntegrationSpec.groovy

                task test(type: PathSensitiveTask) {
                    outputFile = file("build/output.txt")
                }
            """
        }
    
        def "copy task stays up-to-date after files are moved but end up copied to the same destination"() {
            file("src/data/input.txt").text = "data"
    
            when:
            buildFile << """
                task copy(type: Copy) {
                    outputs.cacheIf { true }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  8. pkg/controller/deployment/rollback.go

    		// otherwise, the deployment's current annotations (should be the same as current new RS) will be copied to the RS after the rollback.
    		//
    		// For example,
    		// A Deployment has old RS1 with annotation {change-cause:create}, and new RS2 {change-cause:edit}.
    		// Note that both annotations are copied from Deployment, and the Deployment should be annotated {change-cause:edit} as well.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. testing/performance/docs/performance-bisect.md

    All files from ~/.gradle-bisect-override will be copied to the working directory. Make changes to files under that directory since the script will reset any changes.
    This means that all the files we modified before should be copied into this directory.
    
    usage:
    
    ```bash
    mkdir ~/.gradle-bisect-override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. test/fixedbugs/issue40954.go

    	// we stored an integer in that pointer. That integer just happens
    	// to be the address of i.
    	// v is also the address of i.
    	// p has a base type which is marked not-in-heap, so it
    	// should not be adjusted when the stack is copied.
    	recurse(100, p, v)
    }
    func recurse(n int, p *S, v uintptr) {
    	if n > 0 {
    		recurse(n-1, p, v)
    	}
    	if uintptr(unsafe.Pointer(p)) != v {
    		panic("adjusted notinheap pointer")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 15:27:18 UTC 2022
    - 874 bytes
    - Viewed (0)
Back to top