Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for resptr (0.2 sec)

  1. cmd/storage-rest-common_gen_test.go

    	if buf.Len() > m {
    		t.Log("WARNING: TestEncodeDecodensScannerOptions Msgsize() is inaccurate")
    	}
    
    	vn := nsScannerOptions{}
    	err := msgp.Decode(&buf, &vn)
    	if err != nil {
    		t.Error(err)
    	}
    
    	buf.Reset()
    	msgp.Encode(&buf, &v)
    	err = msgp.NewReader(&buf).Skip()
    	if err != nil {
    		t.Error(err)
    	}
    }
    
    func BenchmarkEncodensScannerOptions(b *testing.B) {
    	v := nsScannerOptions{}
    	var buf bytes.Buffer
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. cmd/lock-rest-server.go

    func (l *lockRESTServer) RefreshHandler(args *dsync.LockArgs) (*dsync.LockResp, *grid.RemoteErr) {
    	resp := lockRPCRefresh.NewResponse()
    	refreshed, err := l.ll.Refresh(context.Background(), *args)
    	if err != nil {
    		return l.makeResp(resp, err)
    	}
    	if !refreshed {
    		return l.makeResp(resp, errLockNotFound)
    	}
    	return l.makeResp(resp, err)
    }
    
    // LockHandler - Acquires a lock.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. src/compress/zlib/reader.go

    	err          error
    	scratch      [4]byte
    }
    
    // Resetter resets a ReadCloser returned by [NewReader] or [NewReaderDict]
    // to switch to a new underlying Reader. This permits reusing a ReadCloser
    // instead of allocating a new one.
    type Resetter interface {
    	// Reset discards any buffered data and resets the Resetter as if it was
    	// newly initialized with the given reader.
    	Reset(r io.Reader, dict []byte) error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/caching/internal/controller/impl/LifecycleAwareBuildCacheController.java

         */
        void configurationAvailable(BuildCacheConfigurationInternal configuration);
    
        /**
         * Resets the state of this controller in preparation for loading configuration from the cache.
         */
        void resetState();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:28:13 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/runtime/tls_ppc64x.s

    // license that can be found in the LICENSE file.
    
    //go:build ppc64 || ppc64le
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    
    // We have to resort to TLS variable to save g (R30).
    // One reason is that external code might trigger
    // SIGSEGV, and our runtime.sigtramp don't even know we
    // are in external code, and will continue to use R30,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/runtime/tls_s390x.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    
    // We have to resort to TLS variable to save g (R13).
    // One reason is that external code might trigger
    // SIGSEGV, and our runtime.sigtramp don't even know we
    // are in external code, and will continue to use R13,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 07 18:56:54 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DirectDependencyMetadata.java

         * resolution as if they were defined by the endorsing module itself.
         *
         * @since 6.0
         */
        void endorseStrictVersions();
    
        /**
         * Resets the {@link #isEndorsingStrictVersions()} state of this dependency.
         *
         * @since 6.0
         */
        void doNotEndorseStrictVersions();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 09 17:53:23 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. src/runtime/trace2map_test.go

    package runtime_test
    
    import (
    	. "runtime"
    	"strconv"
    	"sync"
    	"testing"
    )
    
    func TestTraceMap(t *testing.T) {
    	var m TraceMap
    
    	// Try all these operations multiple times between resets, to make sure
    	// we're resetting properly.
    	for range 3 {
    		var d = [...]string{
    			"a",
    			"b",
    			"aa",
    			"ab",
    			"ba",
    			"bb",
    		}
    		for i, s := range d {
    			id, inserted := m.PutString(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 18:52:49 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/taskgraph/TaskExecutionGraphInternal.java

         * Returns all the work items in this graph scheduled for execution plus all
         * dependencies from other builds.
         */
        void visitScheduledNodes(BiConsumer<List<Node>, Set<Node>> visitor);
    
        /**
         * Resets the lifecycle for this graph.
         */
        void resetState();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. cmd/lock-rest-server-common_test.go

    Klaus Post <******@****.***> 1679592381 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 23 17:26:21 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top