Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 96 for realm (2.08 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      const int num_orig_loop_operands = orig_while_op->getNumOperands();
      loop_operands_0.reserve(num_orig_loop_operands);
      Append(loop_operands_0, orig_while_op->getOperands());
    
      // Evaluate the real conditional function before the new while loop.
      builder.setInsertionPoint(orig_while_op);
      Operation* cond_caller_0 =
          MakeFuncCaller(builder, orig_while_op->getLoc(), orig_cond_func,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    				buf = buf[:n]
    				if !bytes.Equal([]byte(opensslSentinel), buf) {
    					t.Errorf("Client.Read returned %q, but wanted %q", string(buf), opensslSentinel)
    				}
    			}()
    
    			if write {
    				// There's no real reason to wait for the client KeyUpdate to
    				// send data with the new server keys, except that s_server
    				// drops writes if they are sent at the wrong time.
    				<-stdout.readKeyUpdate
    				stdin <- opensslSendSentinel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    	if testing.Short() {
    		N = 500
    	}
    	buf := make([]byte, 10*1024)
    	for i := 0; i < N; i++ {
    		runtime.Stack(buf, true)
    	}
    }
    
    // TestTryAdd tests the cases that are hard to test with real program execution.
    //
    // For example, the current go compilers may not always inline functions
    // involved in recursion but that may not be true in the future compilers. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    }
    
    func SetsockoptTimeval(fd Handle, level, opt int, tv *Timeval) (err error) { return syscall.EWINDOWS }
    
    // The Linger struct is wrong but we only noticed after Go 1.
    // sysLinger is the real system call structure.
    
    // BUG(brainman): The definition of Linger is not appropriate for direct use
    // with Setsockopt and Getsockopt.
    // Use SetsockoptLinger instead.
    
    type Linger struct {
    	Onoff  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			// the pod could reserve the claim. Instead of reserving here by
    			// updating the ResourceClaim status, we assume that reserving
    			// will work and only do it for real during binding. If it fails at
    			// that time, some other pod was faster and we have to try again.
    			continue
    		}
    
    		// Do we have the builtin controller?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    func is8BitInt(t *types.Type) bool {
    	return t.Size() == 1 && t.IsInteger()
    }
    
    func isPtr(t *types.Type) bool {
    	return t.IsPtrShaped()
    }
    
    // mergeSym merges two symbolic offsets. There is no real merging of
    // offsets, we just pick the non-nil one.
    func mergeSym(x, y Sym) Sym {
    	if x == nil {
    		return y
    	}
    	if y == nil {
    		return x
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

     */
    @media not screen and (min-width: 64rem) {
    	/* Repeat the class twice to prioritize our mobile classes! */
    
    	.content.content {
    		/* Make the height equal to
               the real height of content */
    		overflow: visible;
    	}
    
    	.main-content {
    		/* Main content show first */
    		flex-direction: column-reverse;
    	}
    
    	.docs-navigation.docs-navigation {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // (NULL is considered a substring of itself only), and return an
    // appropriate error message when they fail.
    //
    // The {needle,haystack}_expr arguments are the stringified
    // expressions that generated the two real arguments.
    GTEST_API_ AssertionResult IsSubstring(
        const char* needle_expr, const char* haystack_expr,
        const char* needle, const char* haystack);
    GTEST_API_ AssertionResult IsSubstring(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // (NULL is considered a substring of itself only), and return an
    // appropriate error message when they fail.
    //
    // The {needle,haystack}_expr arguments are the stringified
    // expressions that generated the two real arguments.
    GTEST_API_ AssertionResult IsSubstring(
        const char* needle_expr, const char* haystack_expr,
        const char* needle, const char* haystack);
    GTEST_API_ AssertionResult IsSubstring(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. src/sync/atomic/atomic_test.go

    	if testing.Short() {
    		n = int(1e4)
    	}
    	const procs = 8
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(procs))
    	// Disable the GC because hammerStoreLoadPointer invokes
    	// write barriers on values that aren't real pointers.
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    	// Ensure any in-progress GC is finished.
    	runtime.GC()
    	for _, tt := range tests {
    		c := make(chan int)
    		var val uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
Back to top