Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for whereIs (0.18 sec)

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

        derived.cancel(false);
        assertTrue(primary.isCancelled());
        assertFalse(primary.wasInterrupted());
      }
    
      // catching() uses a plain Function, so there's no testCatching_resultCancelledAfterFallback().
    
      // catching() uses a plain Function, so there's no testCatching_nullInsteadOfFuture().
    
      // Some tests of the exceptionType parameter:
    
      public void testCatching_Throwable() throws Exception {
    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. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        derived.cancel(false);
        assertTrue(primary.isCancelled());
        assertFalse(primary.wasInterrupted());
      }
    
      // catching() uses a plain Function, so there's no testCatching_resultCancelledAfterFallback().
    
      // catching() uses a plain Function, so there's no testCatching_nullInsteadOfFuture().
    
      // Some tests of the exceptionType parameter:
    
      public void testCatching_Throwable() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    					// on the vetfail/p1 package (added in CL 83955).
    					// Apparently, imports.ShouldBuild biases toward rejecting files
    					// with invalid build constraints, whereas ImportDir biases toward
    					// accepting them.
    					//
    					// TODO(#41410: Figure out how this actually ought to work and fix
    					// this mess).
    				} else {
    					data.err = r.err
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/net/http/server.go

    // A trailing slash in a path acts as an anonymous "..." wildcard.
    //
    // The special wildcard {$} matches only the end of the URL.
    // For example, the pattern "/{$}" matches only the path "/",
    // whereas the pattern "/" matches every path.
    //
    // For matching, both pattern paths and incoming request paths are unescaped segment by segment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

          --access-config-name "${ACCESS_CONFIG_NAME}" \
          --address "${IP_ADDR}"
      fi
    }
    
    # Creates load balancer in front of apiserver if it doesn't exists already. Assumes there's only one
    # existing master replica.
    #
    # Assumes:
    #   PROJECT
    #   MASTER_NAME
    #   ZONE
    #   REGION
    function create-loadbalancer() {
      # Step 0: Return early if LB is already configured.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    // Executed only by the owner P.
    func runqget(pp *p) (gp *g, inheritTime bool) {
    	// If there's a runnext, it's the next G to run.
    	next := pp.runnext
    	// If the runnext is non-0 and the CAS fails, it could only have been stolen by another P,
    	// because other Ps can race to set runnext to 0, but only the current P can set it to non-0.
    	// Hence, there's no need to retry this CAS if it fails.
    	if next != 0 && pp.runnext.cas(next, 0) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    	switch sm.GetMatchType().(type) {
    	case *networking.StringMatch_Regex:
    	default:
    		return nil
    	}
    	re := sm.GetRegex()
    	if re == "" {
    		return fmt.Errorf("%q: regex string match should not be empty", where)
    	}
    	return validateStringRegexp(re, where)
    }
    
    func validateStringRegexp(re string, where string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. src/crypto/x509/verify_test.go

    	return cert, priv, nil
    }
    
    func TestPathologicalChain(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping generation of a long chain of certificates in short mode")
    	}
    
    	// Build a chain where all intermediates share the same subject, to hit the
    	// path building worst behavior.
    	roots, intermediates := NewCertPool(), NewCertPool()
    
    	parent, parentKey, err := generateCert("Root CA", true, nil, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      DCOMMENT_OP(op, "Inferring shape for ");
      Value result = op->getResult(0);
      if (!CanBeRefined(result.getType())) return false;
    
      // Avoid inserting a cast where no users types could be refined (e.g., where
      // there would need to be a cast inserted for every user again).
      if (llvm::all_of(result.getUses(), [this](OpOperand& use) {
            return NeedsCastBack(use, tf_dialect_);
          }))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    // then fixes up those relocations as needed. A reference to a symbol
    // XYZ from some DLL will fall into one of two categories: an indirect
    // ref via "__imp_XYZ", or a direct ref to "XYZ". Here's an example of
    // an indirect ref (this is an excerpt from objdump -ldr):
    //
    //	     1c1: 48 89 c6                     	movq	%rax, %rsi
    //	     1c4: ff 15 00 00 00 00            	callq	*(%rip)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
Back to top