Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 91 for Tresults (1.9 sec)

  1. src/reflect/all_test.go

    // The basic usage is:
    //
    //	for x.Next() {
    //		... code using x.Maybe() or x.Choice(n) to create test cases ...
    //	}
    //
    // Each iteration of the loop returns a different set of results, until all
    // possible result sets have been explored. It is okay for different code paths
    // to make different method call sequences on x, but there must be no
    // other source of non-determinism in the call sequences.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * </ul>
       *
       * <p>Example usage:
       *
       * <pre>{@code
       * // Result.getRowsClosingFuture() returns a ClosingFuture.
       * ClosingFuture<List<Row>> rowsFuture =
       *     queryFuture.transformAsync((closer, result) -> result.getRowsClosingFuture(), executor);
       *
       * // Result.writeRowsToOutputStreamFuture() returns a ListenableFuture that resolves to the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        inputStream: InputStream,
        count: Int,
      ): String {
        val result = StringBuilder()
        for (i in 0 until count) {
          val value = inputStream.read()
          if (value == -1) {
            inputStream.close()
            break
          }
          result.append(value.toChar())
        }
        return result.toString()
      }
    
      @Test
      fun markAndResetWithContentLengthHeader() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * </ul>
       *
       * <p>Example usage:
       *
       * <pre>{@code
       * // Result.getRowsClosingFuture() returns a ClosingFuture.
       * ClosingFuture<List<Row>> rowsFuture =
       *     queryFuture.transformAsync((closer, result) -> result.getRowsClosingFuture(), executor);
       *
       * // Result.writeRowsToOutputStreamFuture() returns a ListenableFuture that resolves to the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	// check if an internal module has requested the pod is evicted and override the reason and message
    	for _, podSyncHandler := range kl.PodSyncHandlers {
    		if result := podSyncHandler.ShouldEvict(pod); result.Evict {
    			s.Phase = v1.PodFailed
    			s.Reason = result.Reason
    			s.Message = result.Message
    			break
    		}
    	}
    
    	// pods are not allowed to transition out of terminal phases
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller_test.go

    			}(),
    			newNode:        newNode("node1", nil),
    			expectedResult: false,
    		},
    	}
    
    	for _, c := range cases {
    		result := shouldIgnoreNodeUpdate(*c.oldNode, *c.newNode)
    
    		if result != c.expectedResult {
    			t.Errorf("[%s] unexpected results: %v", c.name, result)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    	resyncStatus := ResyncFailed
    	defer func() {
    		s.markStatus(resyncStatus, opts, objectAPI)
    		globalSiteResyncMetrics.incBucket(opts, resyncStatus)
    		s.workerCh <- struct{}{}
    	}()
    	// Allocate new results channel to receive ObjectInfo.
    	objInfoCh := make(chan itemOrErr[ObjectInfo])
    	cfg, err := getReplicationConfig(ctx, opts.bucket)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "NOTL", argLength: 1, reg: gp11, asm: "NOTL", resultInArg0: true},
    
    		// BS{F,R}Q returns a tuple [result, flags]
    		// result is undefined if the input is zero.
    		// flags are set to "equal" if the input is zero, "not equal" otherwise.
    		// BS{F,R}L returns only the result.
    		{name: "BSFQ", argLength: 1, reg: gp11flags, asm: "BSFQ", typ: "(UInt64,Flags)"},        // # of low-order zeroes in 64-bit arg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  9. src/crypto/x509/x509_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	b, err := SystemCertPool()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !certPoolEqual(a, b) {
    		t.Fatal("two calls to SystemCertPool had different results")
    	}
    	if ok := b.AppendCertsFromPEM([]byte(`
    -----BEGIN CERTIFICATE-----
    MIIDBjCCAe6gAwIBAgIRANXM5I3gjuqDfTp/PYrs+u8wDQYJKoZIhvcNAQELBQAw
    EjEQMA4GA1UEChMHQWNtZSBDbzAeFw0xODAzMjcxOTU2MjFaFw0xOTAzMjcxOTU2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK: device = "/job:localhost/replica:0/task:0/device:GPU:0"
    
      // Verify that use of while loop results corresponding to result #0 and 2 of
      // the while are replaces with corresponding WhileRegion operands
      // CHECK: %[[SUB0:.*]] = "tf.Sub"(%arg0, %[[WHILE_OUT]]#0)
      // CHECK: %[[SUB1:.*]] = "tf.Sub"(%arg2, %[[SUB0]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
Back to top