Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 471 for Initial (0.24 sec)

  1. src/runtime/mgcstack.go

    	if p < s.stack.lo || p >= s.stack.hi {
    		throw("address not a stack address")
    	}
    	head := &s.buf
    	if conservative {
    		head = &s.cbuf
    	}
    	buf := *head
    	if buf == nil {
    		// Initial setup.
    		buf = (*stackWorkBuf)(unsafe.Pointer(getempty()))
    		buf.nobj = 0
    		buf.next = nil
    		*head = buf
    	} else if buf.nobj == len(buf.obj) {
    		if s.freeBuf != nil {
    			buf = s.freeBuf
    			s.freeBuf = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. pkg/util/goroutinemap/goroutinemap_test.go

    	testTimeout time.Duration = 1 * time.Minute
    
    	// initialOperationWaitTimeShort is the initial amount of time the test will
    	// wait for an operation to complete (each successive failure results in
    	// exponential backoff).
    	initialOperationWaitTimeShort time.Duration = 20 * time.Millisecond
    
    	// initialOperationWaitTimeLong is the initial amount of time the test will
    	// wait for an operation to complete (each successive failure results in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 14.9K bytes
    - Viewed (0)
  3. src/testing/testing_test.go

    		initialValue       string
    		newValue           string
    	}{
    		{
    			name:               "initial value exists",
    			key:                "GO_TEST_KEY_1",
    			initialValueExists: true,
    			initialValue:       "111",
    			newValue:           "222",
    		},
    		{
    			name:               "initial value exists but empty",
    			key:                "GO_TEST_KEY_2",
    			initialValueExists: true,
    			initialValue:       "",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

                if ( initialToken != null && initialToken.length > 0 ) {
                    NegTokenInit tok = new NegTokenInit(initialToken);
                    if ( log.isDebugEnabled() ) {
                        log.debug("Have initial token " + tok);
                    }
                    if ( tok.getMechanisms() != null ) {
                        Set<ASN1ObjectIdentifier> mechs = new HashSet<>(Arrays.asList(tok.getMechanisms()));
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 18.8K bytes
    - Viewed (0)
  5. src/cmd/internal/objabi/reloctype.go

    	R_TLS_LE
    	// R_TLS_IE, used 386, amd64, and ARM resolves to the PC-relative offset to a GOT
    	// slot containing the offset from the thread-local symbol from the thread local
    	// base and is used to implemented the "initial exec" model for tls access (r.Sym
    	// is not set on intel platforms but is set to a TLS symbol -- runtime.tlsg -- in
    	// the linker when externally linking).
    	R_TLS_IE
    	R_GOTOFF
    	R_PLT0
    	R_PLT1
    	R_PLT2
    	R_USEFIELD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. licenses/github.com/hashicorp/go-version/LICENSE

    1.4. “Covered Software”
    
         means Source Code Form to which the initial Contributor has attached the
         notice in Exhibit A, the Executable Form of such Source Code Form, and
         Modifications of such Source Code Form, in each case including portions
         thereof.
    
    1.5. “Incompatible With Secondary Licenses”
         means
    
         a. that the initial Contributor has attached the notice described in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

    1.4. "Covered Software"
    
         means Source Code Form to which the initial Contributor has attached the
         notice in Exhibit A, the Executable Form of such Source Code Form, and
         Modifications of such Source Code Form, in each case including portions
         thereof.
    
    1.5. "Incompatible With Secondary Licenses"
         means
    
         a. that the initial Contributor has attached the notice described in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 03 20:21:32 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    	go wc.run(isInitialEventsEndBookmarkRequired(opts), areInitialEventsRequired(rev, opts))
    
    	// For etcd watch we don't have an easy way to answer whether the watch
    	// has already caught up. So in the initial version (given that watchcache
    	// is by default enabled for all resources but Events), we just deliver
    	// the initialization signal immediately. Improving this will be explored
    	// in the future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. cmd/bucket-replication-metrics.go

    	startTime            time.Time // Start time for window
    	expMovingAvg         float64   // Previously calculated exponential moving average
    }
    
    // newRateMeasurement creates a new instance of the measurement with the initial start time.
    func newRateMeasurement(initTime time.Time) *rateMeasurement {
    	return &rateMeasurement{
    		startTime: initTime,
    	}
    }
    
    // incrementBytes add bytes reported for a bucket/target.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/fingerprinting_utils.cc

          TF_ASSIGN_OR_RETURN(
              int matches,
              fieldTagMatches(chunked_field.field_tag(), target_fields));
          if (matches == chunked_field.field_tag_size()) {
            // chunked_field_tags is an initial subsequence of target_fields, which
            // means the chunked_field is relevant and the necessary data should be
            // copied over.
            auto cf = std::make_unique<proto_splitter::ChunkedField>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top