Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for predefined (0.2 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.h

    #define TENSORFLOW_COMPILER_MLIR_QUANTIZATION_STABLEHLO_PASSES_TESTING_PASSES_H_
    
    #include "mlir/Pass/Pass.h"  // from @llvm-project  // IWYU pragma: keep
    
    namespace mlir::quant::stablehlo::testing {
    
    // Identifies predefined `QuantizationSpecs` for
    // `TestLiftQuantizableSpotsAsFunctionsWithQuantizationSpecsPass`. The pass
    // option argument is specified in line comments for each enum value.
    enum class TestQuantizationSpecs {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/path-params.md

    Similarly, you cannot redefine a path operation:
    
    ```Python hl_lines="6  11"
    {!../../../docs_src/path_params/tutorial003b.py!}
    ```
    
    The first one will always be used since the path matches first.
    
    ## Predefined values
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. hack/make-rules/update.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # A single script that runs a predefined set of update-* scripts, as they often go together.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    SILENT=${SILENT:-true}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/internal/syscall/windows/registry/key.go

    )
    
    // Key is a handle to an open Windows registry key.
    // Keys can be obtained by calling OpenKey; there are
    // also some predefined root keys such as CURRENT_USER.
    // Keys can be used directly in the Windows API.
    type Key syscall.Handle
    
    const (
    	// Windows defines some predefined root keys that are always open.
    	// An application can use these keys as entry points to the registry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/stripmeta.go

    	if err != nil {
    		return nil, nil, err
    	}
    	f.stripFields(managed.Fields(), manager)
    	return newObj, managed, nil
    }
    
    // stripFields removes a predefined set of paths found in typed from managed
    func (f *stripMetaManager) stripFields(managed fieldpath.ManagedFields, manager string) {
    	vs, ok := managed[manager]
    	if ok {
    		if vs == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/quantization_info.proto

        //     tensor_name := op_name | op_name  ’:’  port_number.
        // If the op has only one port, op_name can be used.
        // If the op has internal states, such as fused LSTM, the port_number should
        // follow a predefined convention.
        oneof name_oneof {
          string name = 1;
    
          // An regex can be used to match multiple tensors.
          string name_regex = 2;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 08 03:45:04 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  7. pkg/apis/scheduling/validation/validation.go

    	allErrs = append(allErrs, apivalidation.ValidateObjectMeta(&pc.ObjectMeta, false, apimachineryvalidation.NameIsDNSSubdomain, field.NewPath("metadata"))...)
    	// If the priorityClass starts with a system prefix, it must be one of the
    	// predefined system priority classes.
    	if strings.HasPrefix(pc.Name, scheduling.SystemPriorityClassPrefix) {
    		if is, err := schedulingapiv1.IsKnownSystemPriorityClass(pc.Name, pc.Value, pc.GlobalDefault); !is {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:30:47 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/handler.go

    )
    
    // ReadyFunc is a function that returns true if the admission controller is ready to handle requests.
    type ReadyFunc func() bool
    
    // Handler is a base for admission control handlers that
    // support a predefined set of operations
    type Handler struct {
    	operations sets.String
    	readyFunc  ReadyFunc
    }
    
    // Handles returns true for methods that this handler supports
    func (h *Handler) Handles(operation Operation) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 08:47:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/flags/flags.go

    }
    
    var (
    	D        MultiFlag
    	I        MultiFlag
    	PrintOut int
    	DebugV   bool
    )
    
    func init() {
    	flag.Var(&D, "D", "predefined symbol with optional simple value -D=identifier=value; can be set multiple times")
    	flag.Var(&I, "I", "include directory; can be set multiple times")
    	flag.BoolVar(&DebugV, "v", false, "print debug output")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:23 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenModule.groovy

         */
        MavenModule variant(String variant, Map<String, String> attributes, @DelegatesTo(value= VariantMetadataSpec, strategy=Closure.DELEGATE_FIRST) Closure<?> variantConfiguration)
    
        /**
         * Clears all predefined variants
         */
        MavenModule adhocVariants()
    
        String getPublishArtifactVersion()
    
        String getGroupId()
    
        String getArtifactId()
    
        String getVersion()
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top