Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 121 for chuge (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    This is only an example to illustrate potential pitfalls.
    In practice, larger libraries or frameworks can bring in a huge set of dependencies.
    If those libraries fail to declare features separately and can only be consumed in a "all or nothing" fashion, excludes can be a valid method to reduce the library to the feature set actually required.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. docs/en/docs/async.md

    * **Machine Learning**: it normally requires lots of "matrix" and "vector" multiplications. Think of a huge spreadsheet with numbers and multiplying all of them together at the same time.
    * **Deep Learning**: this is a sub-field of Machine Learning, so, the same applies. It's just that there is not a single spreadsheet of numbers to multiply, but a huge set of them, and in many cases, you use a special processor to build and / or use those models.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/math/j0.go

    //
    
    // J0 returns the order-zero Bessel function of the first kind.
    //
    // Special cases are:
    //
    //	J0(±Inf) = 0
    //	J0(0) = 1
    //	J0(NaN) = NaN
    func J0(x float64) float64 {
    	const (
    		Huge   = 1e300
    		TwoM27 = 1.0 / (1 << 27) // 2**-27 0x3e40000000000000
    		TwoM13 = 1.0 / (1 << 13) // 2**-13 0x3f20000000000000
    		Two129 = 1 << 129        // 2**129 0x4800000000000000
    		// R0/S0 on [0, 2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  4. src/compress/bzip2/bzip2.go

    	// preprocessing step. The block based nature means that we can
    	// preallocate fixed-size buffers and reuse them. However, the RLE
    	// preprocessing would require allocating huge buffers to store the
    	// maximum expansion. Thus we process blocks all at once, except for
    	// the RLE which we decompress as required.
    	n := 0
    	for (bz2.repeats > 0 || bz2.preRLEUsed < len(bz2.preRLE)) && n < len(buf) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. pkg/xds/server.go

    				return <-con.errorChan
    			}
    		case <-con.stop:
    			return nil
    		default:
    		}
    		// If there wasn't already a request, poll for requests and pushes. Note: if we have a huge
    		// amount of incoming requests, we may still send some pushes, as we do not `continue` above;
    		// however, requests will be handled ~2x as much as pushes. This ensures a wave of requests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/dec64.rules

    (Rsh64x64 [c] x (Int64Make (Const32 [0]) lo)) => (Rsh64x32 [c] x lo)
    (Rsh64Ux64 [c] x (Int64Make (Const32 [0]) lo)) => (Rsh64Ux32 [c] x lo)
    
    // turn x64 non-constant shifts to x32 shifts
    // if high 32-bit of the shift is nonzero, make a huge shift
    (Lsh64x64 x (Int64Make hi lo)) && hi.Op != OpConst32 =>
           (Lsh64x32 x (Or32 <typ.UInt32> (Zeromask hi) lo))
    (Rsh64x64 x (Int64Make hi lo)) && hi.Op != OpConst32 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/sccp.go

    	//	case OpDiv8:
    	//		if !isDivideByZero(argLt2.val.AuxInt8()) {
    	//			res.val = newConst(argLt1.val.AuxInt8() / argLt2.val.AuxInt8())
    	//		}
    	//  ...
    	// 	}
    	//
    	// However, this would create a huge switch for all opcodes that can be
    	// evaluated during compile time. Moreover, some operations can be evaluated
    	// only if its arguments satisfy additional conditions(e.g. divide by zero).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status_test.go

    		name         string
    		testKubelet  *TestKubelet
    		initialNode  *v1.Node
    		existingNode *v1.Node
    		expectedNode *v1.Node
    		needsUpdate  bool
    	}{
    		{
    			name:        "no update needed when all huge page resources are similar",
    			testKubelet: testKubelet,
    			needsUpdate: false,
    			initialNode: &v1.Node{
    				Status: v1.NodeStatus{
    					Capacity: v1.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  9. pkg/controller/resourcequota/resource_quota_controller.go

    	if rq.quotaMonitor != nil {
    		go rq.quotaMonitor.Run(ctx)
    	}
    
    	if !cache.WaitForNamedCacheSync("resource quota", ctx.Done(), rq.informerSyncedFuncs...) {
    		return
    	}
    
    	// the workers that chug through the quota calculation backlog
    	for i := 0; i < workers; i++ {
    		go wait.UntilWithContext(ctx, rq.worker(rq.queue), time.Second)
    		go wait.UntilWithContext(ctx, rq.worker(rq.missingUsageQueue), time.Second)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache_test.cc

          [&env]() { return env->NowSeconds(); });
      // Execute the first read to load the block.
      TF_EXPECT_OK(ReadCache(&cache2, "", 0, 1, &out));
      EXPECT_EQ(calls, 1);
      // Advance the clock by a huge amount and verify that the cached block is
      // used to satisfy the read.
      env->SetNowSeconds(365 * 24 * 60 * 60);  // ~1 year, just for fun.
      TF_EXPECT_OK(ReadCache(&cache2, "", 0, 1, &out));
      EXPECT_EQ(calls, 1);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:57 UTC 2021
    - 23.2K bytes
    - Viewed (0)
Back to top