Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for clobber (0.17 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    const (
    	cUncased          info = iota // 000
    	cTitle                        // 001
    	cLower                        // 010
    	cUpper                        // 011
    	cIgnorableUncased             // 100
    	cIgnorableCased               // 101 // lower case if mappings exist
    	cXORCase                      // 11x // case is cLower | ((rune&1) ^ x)
    
    	maxCaseMode = cUpper
    )
    
    func (c info) isCased() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. cmd/bitrot.go

    func closeBitrotReaders(rs []io.ReaderAt) {
    	for _, r := range rs {
    		if r != nil {
    			if br, ok := r.(io.Closer); ok {
    				br.Close()
    			}
    		}
    	}
    }
    
    // Close all the writers.
    func closeBitrotWriters(ws []io.Writer) {
    	for _, w := range ws {
    		if w != nil {
    			if bw, ok := w.(io.Closer); ok {
    				bw.Close()
    			}
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/TransformBackedProvider.java

     *
     * <p>This provider checks that the contents of value have been built prior to running the transform, as the transform may use the content.
     * This check should move further upstream in the future, closer to the producer of the content.</p>
     *
     * @see ProviderInternal for a discussion of the "value" and "value contents".
     */
    public class TransformBackedProvider<OUT, IN> extends AbstractMinimalProvider<OUT> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. src/net/rpc/jsonrpc/client.go

    import (
    	"encoding/json"
    	"fmt"
    	"io"
    	"net"
    	"net/rpc"
    	"sync"
    )
    
    type clientCodec struct {
    	dec *json.Decoder // for reading JSON values
    	enc *json.Encoder // for writing JSON values
    	c   io.Closer
    
    	// temporary work space
    	req  clientRequest
    	resp clientResponse
    
    	// JSON-RPC responses include the request id but not the request method.
    	// Package rpc expects both.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_arm.s

    // (they don't need to pop it because panic won't return; however, we
    // do need to set the SP delta back).
    
    // Check if R1 is 8-byte aligned, panic if not.
    // Clobbers R2.
    #define CHECK_ALIGN \
    	AND.S	$7, R1, R2 \
    	BEQ 	4(PC) \
    	MOVW.W	R14, -4(R13) /* prepare a real frame */ \
    	BL	·panicUnaligned(SB) \
    	ADD	$4, R13 /* compensate SP delta */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/net/rpc/jsonrpc/server.go

    	"sync"
    )
    
    var errMissingParams = errors.New("jsonrpc: request body missing params")
    
    type serverCodec struct {
    	dec *json.Decoder // for reading JSON values
    	enc *json.Encoder // for writing JSON values
    	c   io.Closer
    
    	// temporary work space
    	req serverRequest
    
    	// JSON-RPC clients can use arbitrary json values as request IDs.
    	// Package rpc expects uint64 request IDs.
    	// We assign uint64 sequence numbers to incoming requests
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInstallationDownloader.groovy

            new File(parent, "apache-maven-$mavenVersion")
        }
    
        private static String fetchPreferredUrl(String mavenVersion) {
            // Use ASF preferred mirror resolution
            def url = "https://www.apache.org/dyn/closer.cgi/maven/maven-3/$mavenVersion/binaries/apache-maven-$mavenVersion-bin.zip?as_json=1"
            def parsed = new JsonSlurper().parse(new URL(url))
            parsed.preferred + parsed.path_info
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. src/io/pipe_test.go

    	}
    	for i := 0; i < 128; i++ {
    		if rdat[i] != byte(i) {
    			t.Fatalf("rdat[%d] = %d", i, rdat[i])
    		}
    	}
    }
    
    // Test read after/before writer close.
    
    type closer interface {
    	CloseWithError(error) error
    	Close() error
    }
    
    type pipeTest struct {
    	async          bool
    	err            error
    	closeWithError bool
    }
    
    func (p pipeTest) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. src/crypto/md5/md5block_ppc64x.s

    #include "textflag.h"
    
    // ENDIAN_MOVE generates the appropriate
    // 4 byte load for big or little endian.
    // The 4 bytes at ptr+off is loaded into dst.
    // The idx reg is only needed for big endian
    // and is clobbered when used.
    #ifdef GOARCH_ppc64le
    #define ENDIAN_MOVE(off, ptr, dst, idx) \
    	MOVWZ	off(ptr),dst
    #else
    #define ENDIAN_MOVE(off, ptr, dst, idx) \
    	MOVD	$off,idx; \
    	MOVWBR	(idx)(ptr), dst
    #endif
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.s

    	ADD   R2, R9                // add offset to vector table
    	MOVWZ (R9), R9              // r9 points to entry point
    	BYTE  $0x0D                 // BL R14,R9 --> basr r14,r9
    	BYTE  $0xE9                 // clobbers 0,1,14,15
    	MOVD  R8, R15               // restore 15
    	JMP   R7                    // return via saved return address
    
    //   func A2e(arr [] byte)
    //   code page conversion from  819 to 1047
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top