Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 73 for addAction (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/limits.go

    	// MinDatetimeSizeJSON is the minimal length of a datetime formatted as RFC 3339
    	// RFC 3339 datetimes require a full date (YYYY-MM-DD) and full time (HH:MM:SS), and we add 3 for
    	// quotation marks like always in addition to the capital T that separates the date and time
    	MinDatetimeSizeJSON = 21
    	// MinStringSize is the size of literal ""
    	MinStringSize = 2
    	// MinBoolSize is the length of literal true
    	MinBoolSize = 4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/strconv/itoa.go

    		// the compiler can optimize it into a multiply+shift
    
    		if host32bit {
    			// convert the lower digits using 32bit operations
    			for u >= 1e9 {
    				// Avoid using r = a%b in addition to q = a/b
    				// since 64bit division and modulo operations
    				// are calculated by runtime functions on 32bit machines.
    				q := u / 1e9
    				us := uint(u - q*1e9) // u % 1e9 fits into a uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. pkg/kubelet/cadvisor/helpers_linux.go

    	}
    	return "", fmt.Errorf("no imagefs label for configured runtime")
    }
    
    // ContainerFsInfoLabel returns the container fs label for the configured runtime.
    // For remote runtimes, it handles addition runtimes natively understood by cAdvisor.
    func (i *imageFsInfoProvider) ContainerFsInfoLabel() (string, error) {
    	if detectCrioWorkaround(i) {
    		return cadvisorfs.LabelCrioContainers, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:15:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. pkg/kube/krt/util.go

    // the output will be compared (using standard equality checking), and only changes will trigger the handler.
    // Note this is in addition to the normal event mechanics, so this can only filter things further.
    func BatchedEventFilter[I, O any](cf func(a I) O, handler func(events []Event[I], initialSync bool)) func(o []Event[I], initialSync bool) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionSupplier.java

         * collection supplier that produces a collection that contains the original elements and the
         * elements supplied by the given collector.
         *
         * @param added a collector that represents an addition to the collection to be returned by this supplier
         * @return a new supplier that produces a collection that contains the
         * same elements as this supplier, plus the elements obtained via the given <code>added</code> collector
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 05:02:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced-published/tests/outgoingVariants.out

              - build/resources/main (artifactType = java-resources-directory)
    
    
    (*) Secondary variants are variants created via the Configuration#getOutgoing(): ConfigurationPublications API which also participate in selection, in addition to the configuration itself.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.td

    }
    
    def OptimizeIntGraph : Pass<"optimize-int-graph", "mlir::func::FuncOp"> {
      let summary = "Optimization patterns for quantized integer graph";
    
      let description = [{
        This includes patterns for merging addition of zp offset and bias.
      }];
    
      let constructor = "mlir::quant::stablehlo::CreateOptimizeIntGraphPass()";
      let dependentDialects = ["mhlo::MhloDialect"];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 01:41:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java

     */
    package org.apache.maven.api.services;
    
    /**
     * Describes a problem that was encountered during model building. A problem can either be an exception that was thrown
     * or a simple string message. In addition, a problem carries a hint about its source, e.g. the POM file that exhibits
     * the problem.
     *
     */
    public interface ModelProblem extends BuilderProblem {
    
        /**
         * Version
         */
        enum Version {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultBuilderProblem.java

    import org.apache.maven.api.services.BuilderProblem;
    
    /**
     * Describes a problem that was encountered during settings building. A problem can either be an exception that was
     * thrown or a simple string message. In addition, a problem carries a hint about its source, e.g. the settings file
     * that exhibits the problem.
     */
    class DefaultBuilderProblem implements BuilderProblem {
        final String source;
        final int lineNumber;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_ordinv.go

    	p256OrdReduce(x)
    
    	// Inversion is implemented as exponentiation by n - 2, per Fermat's little theorem.
    	//
    	// The sequence of 38 multiplications and 254 squarings is derived from
    	// https://briansmith.org/ecc-inversion-addition-chains-01#p256_scalar_inversion
    	_1 := new(p256OrdElement)
    	_11 := new(p256OrdElement)
    	_101 := new(p256OrdElement)
    	_111 := new(p256OrdElement)
    	_1111 := new(p256OrdElement)
    	_10101 := new(p256OrdElement)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top