Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 232 for factories (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/guarantee_all_funcs_one_use.cc

    // functions have a single use. This can in principle cause exponential code
    // size bloat, and should in general be guided by a proper cost model.
    //
    // There are two factors which should be considered by a principled replacement
    // to this pass:
    //
    // 1. TF currently relies on "sufficiently good shape inference" for
    // correctness so for now the cost of doing this seems acceptable since
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. docs/pt/docs/project-generation.md

    Você pode ler mais sobre nas documentaçãoes do repositório.
    
    ## Full Stack FastAPI MongoDB
    
    ...pode demorar, dependendo do meu tempo disponível e outros fatores. 😅 🎉
    
    ## Modelos de Aprendizado de Máquina com spaCy e FastAPI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Oct 17 05:50:32 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbResourceLocator.java

         *
         * @return The uncanonicalized full URL of this SMB resource.
         */
    
        String getPath ();
    
    
        /**
         * Returns the full URL of this SMB resource with '.' and '..' components
         * factored out. An <code>SmbFile</code> constructed with the result of
         * this method will result in an <code>SmbFile</code> that is equal to
         * the original.
         *
         * @return The canonicalized URL of this SMB resource.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/RegularImmutableMultiset.java

            if (bucketLength > MAX_HASH_BUCKET_LENGTH) {
              return true;
            }
          }
        }
        return false;
      }
    
      /**
       * Closed addressing tends to perform well even with high load factors. Being conservative here
       * ensures that the table is still likely to be relatively sparse (hence it misses fast) while
       * saving space.
       */
      @VisibleForTesting static final double MAX_LOAD_FACTOR = 1.0;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/replica_calculator.go

    		return currentReplicas, utilization, rawUtilization, timestamp, nil
    	}
    
    	// return the result, where the number of replicas considered is
    	// however many replicas factored into our calculation
    	return newReplicas, utilization, rawUtilization, timestamp, nil
    }
    
    // GetRawResourceReplicas calculates the desired replica count based on a target resource usage (as a raw milli-value)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/shufflesharding/shufflesharding_test.go

    			}
    			if len(cardMap) != int(test.handSize) {
    				t.Errorf("test case %s fails in duplication check", test.name)
    				return
    			}
    
    		})
    	}
    }
    
    // ff computes the falling factorial `n!/(n-m)!` and requires n to be
    // positive and m to be in the range [0, n] and requires the answer to
    // fit in an int
    func ff(n, m int) int {
    	ans := 1
    	for f := n; f > n-m; f-- {
    		ans *= f
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 25 06:44:08 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  7. src/image/color/ycbcr.go

    	//	B = Y' + 1.77200*(Cb-128)
    	// https://www.w3.org/Graphics/JPEG/jfif3.pdf says Y but means Y'.
    	//
    	// Those formulae use non-integer multiplication factors. When computing,
    	// integer math is generally faster than floating point math. We multiply
    	// all of those factors by 1<<16 and round to the nearest integer:
    	//	 91881 = roundToNearestInteger(1.40200 * 65536).
    	//	 22554 = roundToNearestInteger(0.34414 * 65536).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/CompactLinkedHashMap.java

     * <p>This class should not be assumed to be universally superior to {@code
     * java.util.LinkedHashMap}. Generally speaking, this class reduces object allocation and memory
     * consumption at the price of moderately increased constant factors of CPU. Only use this class
     * when there is a specific reason to prioritize memory over CPU.
     *
     * @author Louis Wasserman
     */
    @J2ktIncompatible // no support for access-order mode in LinkedHashMap delegate
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/crypto/des/block.go

    				// Column is the middle four bits.
    				row := uint8(((i & 2) << 4) | i&1)
    				col := uint8(j << 1)
    				t := row | col
    
    				// The rotation was performed in the feistel rounds, being factored out and now mixed into the feistelBox.
    				f = (f << 1) | (f >> 31)
    
    				feistelBox[s][t] = uint32(f)
    			}
    		}
    	}
    }
    
    // permuteInitialBlock is equivalent to the permutation defined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/layout.go

    			break
    		}
    
    		// Here, the order of traversing the b.Succs affects the direction in which the topological
    		// sort advances in depth. Take the following cfg as an example, regardless of other factors.
    		//           b1
    		//         0/ \1
    		//        b2   b3
    		// Traverse b.Succs in order, the right child node b3 will be scheduled immediately after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top