Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for OUT (0.11 sec)

  1. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * bug where the loop that connects a Listener to each of the futures would die on the last
       * loop-check as done() on ListFuture nulled out the variable being looped over (the list of
       * futures).
       */
      public void testAllAsList_doneFutures() throws Exception {
        // Create input and output
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    			humanize.IBytes(capacityNeeded), humanize.IBytes(capacity))
    	}
    
    	// Verify if we can employ autotune without running out of capacity,
    	// if we do run out of capacity, make sure to turn-off autotuning
    	// in such situations.
    	if autotune {
    		newConcurrent := concurrent + (concurrent+1)/2
    		autoTunedCapacityNeeded := uint64(newConcurrent * size)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

            .throttleBody(1, 750, TimeUnit.MILLISECONDS)
            .build(),
        )
    
        // First request: time out after 1s.
        client =
          client.newBuilder()
            .readTimeout(Duration.ofSeconds(1))
            .build()
        executeSynchronously("/a").assertBody("abc")
    
        // Second request: time out after 250ms.
        client =
          client.newBuilder()
            .readTimeout(Duration.ofMillis(250))
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

       * normally derive from {@code Map<Object, Object>}, but they typically contain strings, which is
       * awkward. This method lets you get a plain-old-{@code Map} out of a {@code Properties}.
       *
       * @param properties a {@code Properties} object to be converted
       * @return an immutable map containing all the entries in {@code properties}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

       * normally derive from {@code Map<Object, Object>}, but they typically contain strings, which is
       * awkward. This method lets you get a plain-old-{@code Map} out of a {@code Properties}.
       *
       * @param properties a {@code Properties} object to be converted
       * @return an immutable map containing all the entries in {@code properties}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	q.Add(logger, medPriorityPodInfo.Pod)
    	if q.activeQ.Len() != 1 {
    		t.Errorf("Expected 1 item to be in activeQ, but got: %v", q.activeQ.Len())
    	}
    	// Pop out the medPriorityPodInfo in activeQ.
    	if p, err := q.Pop(logger); err != nil || p.Pod != medPriorityPodInfo.Pod {
    		t.Errorf("Expected: %v after Pop, but got: %v", medPriorityPodInfo.Pod, p.Pod.Name)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    		return driver.ErrSkip
    	}
    	switch v := nv.Value.(type) {
    	default:
    		return driver.ErrSkip
    	case Out:
    		switch ov := v.Dest.(type) {
    		default:
    			return errors.New("unknown NameValueCheck OUTPUT type")
    		case *string:
    			*ov = "from-server"
    			nv.Value = "OUT:*string"
    		}
    		return nil
    	case decimalInt, []int64:
    		return nil
    	case doNotInclude:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "Replicated Out Objects [{{bucket}}]",
              "refId": "A"
            }
          ],
          "title": "Replicated Out Objects",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

          - By constraint: Dependency locking
       Failures:
          - Dependency lock state out of date:
              - Resolved 'org:foo:1.1' which is not part of the dependency lock state
    
    org:foo:1.1 FAILED
    \\--- lockedConf
    
    org:foo:1.+ -> 1.1
    \\--- lockedConf
    """
        }
    
        def "displays a dependency insight report even if locks are out of date because of new constraint"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    // This is used for sanity and security checks, so we include all files,
    // even IgnoredGoFiles, because some subcommands consider them.
    // The go/build package filtered others out (like foo_wrongGOARCH.s)
    // and that's OK.
    func (p *Package) AllFiles() []string {
    	files := str.StringList(
    		p.GoFiles,
    		p.CgoFiles,
    		// no p.CompiledGoFiles, because they are from GoFiles or generated by us
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top