Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 107 for Dealer (0.16 sec)

  1. src/go/printer/nodes.go

    	}
    	return bodySize
    }
    
    // funcBody prints a function body following a function header of given headerSize.
    // If the header's and block's size are "small enough" and the block is "simple enough",
    // the block is printed on the current line, without line breaks, spaced from the header
    // by sep. Otherwise the block's opening "{" is printed on the current line, followed by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	reflector.WatchListPageSize = storageWatchListPageSize
    	// When etcd loses leader for 3 cycles, it returns error "no leader".
    	// We don't want to terminate all watchers as recreating all watchers puts high load on api-server.
    	// In most of the cases, leader is reelected within few cycles.
    	reflector.MaxInternalErrorRetryDuration = time.Second * 30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	"runtime/race",
    	"runtime/race/internal/amd64v1",
    	"runtime/race/internal/amd64v3",
    	"runtime/msan",
    	"runtime/asan",
    }
    
    func ldhostobj(ld func(*Link, *bio.Reader, string, int64, string), headType objabi.HeadType, f *bio.Reader, pkg string, length int64, pn string, file string) *Hostobj {
    	isinternal := false
    	for _, intpkg := range internalpkg {
    		if pkg == intpkg {
    			isinternal = true
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    	// and allowed to save.
    	z.poolMeta = newPoolMeta(z, poolMeta{})
    	z.poolMeta.dontSave = true
    
    	bootstrapTrace("newSharedLock", func() {
    		globalLeaderLock = newSharedLock(GlobalContext, z, "leader.lock")
    	})
    
    	// Enable background operations on
    	//
    	// - Disk auto healing
    	// - MRF (most recently failed) healing
    	// - Background expiration routine for lifecycle policies
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    * Entries added by hand will immediately be accounted for, and appear at the right location after writing the file,
    * The header comments of the file will be preserved, i.e. comments before the root XML node.
    This allows you to have a license header or instructions on which tasks and which parameters to use for generating that file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    		t.Fatalf("execution recipe not found in GOROOT/test/%s", t.goFileName())
    	}
    
    	// Check for build constraints only up to the actual code.
    	header, _, ok := strings.Cut(src, "\npackage")
    	if !ok {
    		header = action // some files are intentionally malformed
    	}
    	if ok, why := shouldTest(header, goos, goarch); !ok {
    		t.Skip(why)
    	}
    
    	var args, flags, runenv []string
    	var tim int
    	wantError := false
    	wantAuto := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    // The Google C++ Testing Framework (Google Test)
    //
    // This header file defines the public API for Google Test.  It should be
    // included by any test program that uses Google Test.
    //
    // IMPORTANT NOTE: Due to limitation of the C++ language, we have to
    // leave some internal implementation details in this header file.
    // They are clearly marked by comments like this:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    // The Google C++ Testing Framework (Google Test)
    //
    // This header file defines the public API for Google Test.  It should be
    // included by any test program that uses Google Test.
    //
    // IMPORTANT NOTE: Due to limitation of the C++ language, we have to
    // leave some internal implementation details in this header file.
    // They are clearly marked by comments like this:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    // The representation is a bit sleazy, inherited from C.
    // This struct defines the bucket header. It is followed in
    // memory by the stack words and then the actual record
    // data, either a memRecord or a blockRecord.
    //
    // Per-call-stack profiling information.
    // Lookup by hashing call stack into a linked-list hash table.
    //
    // None of the fields in this bucket header are modified after
    // creation, including its next and allnext links.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    // Each test has a unique name and belongs to a group (heading)
    type distTest struct {
    	name    string // unique test name; may be filtered with -run flag
    	heading string // group section; this header is printed before the test is run.
    	fn      func(*distTest) error
    }
    
    func (t *tester) run() {
    	timelog("start", "dist test")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top