Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 369 for lasta (0.04 sec)

  1. internal/grid/muxserver.go

    	defer t.Stop()
    	for {
    		select {
    		case <-m.ctx.Done():
    			return
    		case <-t.C:
    			last := time.Since(time.Unix(atomic.LoadInt64(&m.LastPing), 0))
    			if last > 4*m.clientPingInterval {
    				gridLogIf(m.ctx, fmt.Errorf("canceling remote connection %s not seen for %v", m.parent, last))
    				m.close()
    				return
    			}
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    			fn.cum += inst.cum
    		}
    
    		// See if we should merge into preceding function.
    		if len(funcs) > 0 {
    			last := funcs[len(funcs)-1]
    			if l-last.end < mergeLimit && last.name == name {
    				last.end = l + 1
    				last.flat += fn.flat
    				last.cum += fn.cum
    				funcs[len(funcs)-1] = last
    				continue
    			}
    		}
    
    		// Add new function.
    		funcs = append(funcs, fn)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. src/testing/testing.go

    		if recur {
    			c.runCleanup(normalPanic)
    		}
    	}()
    
    	for {
    		var cleanup func()
    		c.mu.Lock()
    		if len(c.cleanups) > 0 {
    			last := len(c.cleanups) - 1
    			cleanup = c.cleanups[last]
    			c.cleanups = c.cleanups[:last]
    		}
    		c.mu.Unlock()
    		if cleanup == nil {
    			return nil
    		}
    		cleanup()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtClassTypeQualifierRenderer.kt

                type: KaType,
                qualifiers: List<KaClassTypeQualifier>,
                typeRenderer: KaTypeRenderer,
                printer: PrettyPrinter,
            ) {
                qualifiers.last().render(analysisSession, type, typeRenderer, printer)
            }
        }
    
        public object WITH_SHORT_NAMES_WITH_NESTED_CLASSIFIERS : KaClassTypeQualifierRenderer {
            override fun renderClassTypeQualifier(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. doc/next/7-ports.md

    As [announced](go1.22#darwin) in the Go 1.22 release notes,
    Go 1.23 requires macOS 11 Big Sur or later;
    support for previous versions has been discontinued.
    
    ### Linux {#linux}
    
    <!-- go.dev/issue/67001 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServiceRegistry.java

         */
        ServiceRegistry getServicesFor(File gradleUserHomeDir);
    
        /**
         * Locates the shared services from the last used user home dir - if any.
         *
         * The method will never create services, so the caller should not release the registry.
         */
        Optional<ServiceRegistry> getCurrentServices();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/discovery.go

    				if req.ConfigsUpdated == nil {
    					log.Infof("Push debounce stable[%d] %d for reason %s: %v since last change, %v since last push, full=%v",
    						pushCounter, debouncedEvents, reasonsUpdated(req),
    						quietTime, eventDelay, req.Full)
    				} else {
    					log.Infof("Push debounce stable[%d] %d for config %s: %v since last change, %v since last push, full=%v",
    						pushCounter, debouncedEvents, configsUpdated(req),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. cmd/perf-tests.go

    // To collect RX stats during "mc support perf net"
    // RXSample holds the RX bytes for the duration between
    // the last peer to connect and the first peer to disconnect.
    // This is to improve the RX throughput accuracy.
    type netPerfRX struct {
    	RX                uint64    // RX bytes
    	lastToConnect     time.Time // time at which last peer to connect to us
    	firstToDisconnect time.Time // time at which the first peer disconnects from us
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InputTrackingState.kt

         * enable input tracking back.
         */
        fun disableForCurrentThread() {
            ++inputTrackingDisabledCounterForThread
        }
    
        /**
         * Restores the input tracking state to the state it was in before the last call to
         * [disableForCurrentThread].
         */
        fun restoreForCurrentThread() {
            Preconditions.checkState(inputTrackingDisabledCounterForThread > 0, "Restore input tracking state without prior disable is detected")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. cmd/metrics-v3-scanner.go

    	scannerVersionsScannedMD = NewCounterMD(scannerVersionsScanned,
    		"Total number of object versions scanned since server start")
    	scannerLastActivitySecondsMD = NewGaugeMD(scannerLastActivitySeconds,
    		"Time elapsed (in seconds) since last scan activity.")
    )
    
    // loadClusterScannerMetrics - `MetricsLoaderFn` for cluster webhook
    // such as failed objects and directories scanned.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top