Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for startm (0.17 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

            """
            def configurationCache = newConfigurationCacheFixture()
    
            when:
            configurationCacheRun()
    
            then: 'finish event is dispatched but start and progress are not'
            output.count('onInstantiated') == 1
            outputDoesNotContain 'onStarted'
            outputDoesNotContain 'onProgress'
            outputContains 'onFinished'
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

            }
    
            scriptSource.uri?.takeIf { it.isHttp }?.let { uri ->
                sink().captureRemoteScript(uri)
            }
        }
    
        /**
         * Returns `true` if [scheme][URI.scheme] starts with `http`.
         */
        private
        val URI.isHttp: Boolean
            get() = scheme.startsWith("http")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. cmd/object-api-datatypes.go

    type StorageInfo = madmin.StorageInfo
    
    // objectHistogramInterval is an interval that will be
    // used to report the histogram of objects data sizes
    type objectHistogramInterval struct {
    	name       string
    	start, end int64
    }
    
    const (
    	// dataUsageBucketLenV1 must be length of ObjectsHistogramIntervalsV1
    	dataUsageBucketLenV1 = 7
    	// dataUsageBucketLen must be length of ObjectsHistogramIntervals
    	dataUsageBucketLen  = 11
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    					if !ok {
    						return nil, nil, fmt.Errorf("not a pod")
    					}
    					return pod.ObjectMeta.Labels, fields.Set{
    						"metadata.name": pod.Name,
    					}, nil
    				},
    			}
    
    			// now we start benchmarking
    			b.ResetTimer()
    			for i := 0; i < b.N; i++ {
    				list := tc.newListObjectFunc()
    				if err := store.GetList(ctx, dir, storage.ListOptions{Predicate: pred, Recursive: true}, list); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway.go

    // different ports, the optimization (one RDS instead of two) could quickly become useless the moment the set of
    // hosts on the two servers start differing -- necessitating the need for two different RDS routes.
    func gatewayRDSRouteName(server *networking.Server, portNumber uint32, cfg config.Config) string {
    	p := protocol.Parse(server.Port.Protocol)
    	bind := ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

       * state: BLOCKED, WAITING, or TIMED_WAITING.
       */
      void waitForThreadToEnterWaitState(Thread thread, long timeoutMillis) {
        long startTime = System.nanoTime();
        for (; ; ) {
          Thread.State s = thread.getState();
          if (s == Thread.State.BLOCKED || s == Thread.State.WAITING || s == Thread.State.TIMED_WAITING)
            return;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster.go

    	}
    }
    
    func setKeepAliveSettings(c *cluster.Cluster, keepalive *networking.ConnectionPoolSettings_TCPSettings_TcpKeepalive) {
    	if keepalive == nil {
    		return
    	}
    	// Start with empty tcp_keepalive, which would set SO_KEEPALIVE on the socket with OS default values.
    	if c.UpstreamConnectionOptions == nil {
    		c.UpstreamConnectionOptions = &cluster.UpstreamConnectionOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. cmd/storage-rest-server.go

    		}
    	}
    }
    
    // StatInfoFile returns file stat info.
    func (s *storageRESTServer) StatInfoFile(w http.ResponseWriter, r *http.Request) {
    	if !s.IsValid(w, r) {
    		return
    	}
    	volume := r.Form.Get(storageRESTVolume)
    	filePath := r.Form.Get(storageRESTFilePath)
    	glob := r.Form.Get(storageRESTGlob)
    	done := keepHTTPResponseAlive(w)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top