Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for enumStr (0.17 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    class MHLO_ComparisonDirectionValue<string enumStr> :
      ConstantAttr<MHLO_ComparisonDirectionAttr, "::mlir::mhlo::ComparisonDirection::" # enumStr>;
    
    class CHLO_ComparisonDirectionValue<string enumStr> :
      ConstantAttr<CHLO_ComparisonDirectionAttr, "::mlir::chlo::ComparisonDirection::" # enumStr>;
    
    // TODO(b/228291745): Assert that $x and $y have the same shape.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

       HasChloCompareType<"::mlir::chlo::ComparisonType::NOTYPE">]>,
       "compare type supported by TensorFlow">;
    
    class CHLO_ComparisonDirectionValue<string enumStr> :
      ConstantAttr<CHLO_ComparisonDirectionAttr, "::mlir::chlo::ComparisonDirection::" # enumStr>;
    
    class HasMhloCompareType<string value> :
        CPred<"$_self.cast<::mlir::mhlo::ComparisonTypeAttr>().getValue() == " # value>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.val1.getDate('01:00') == 18":             4,
    				"type(self.val1) == google.protobuf.Timestamp": 4,
    			},
    		},
    		{name: "enums",
    			obj: map[string]interface{}{"enumStr": "Pending"},
    			schema: objectTypePtr(map[string]schema.Structural{"enumStr": {
    				Generic: schema.Generic{
    					Type: "string",
    				},
    				ValueValidation: &schema.ValueValidation{
    					Enum: []schema.JSON{
    						{Object: "Pending"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"timestamp(-62135596801)":            "compilation failed: ERROR: <input>:1:11: invalid timestamp",
    			},
    		},
    		{name: "enums",
    			obj: map[string]interface{}{"enumStr": "Pending"},
    			schema: objectTypePtr(map[string]schema.Structural{"enumStr": {
    				Generic: schema.Generic{
    					Type: "string",
    				},
    				ValueValidation: &schema.ValueValidation{
    					Enum: []schema.JSON{
    						{Object: "Pending"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td

    // This is the operation enums definition file for TensorFlow Lite.
    
    #ifndef TFL_OP_ENUMS
    #define TFL_OP_ENUMS
    
    include "mlir/IR/AttrTypeBase.td"
    include "mlir/IR/EnumAttr.td"
    include "mlir/IR/OpBase.td"
    include "tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td"
    
    // A string attribute whose value are one of the values in `cases`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 20 00:05:24 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        Enumeration<Integer> enumer = Iterators.asEnumeration(iter);
    
        assertTrue(enumer.hasMoreElements());
        assertEquals(1, (int) enumer.nextElement());
        assertTrue(enumer.hasMoreElements());
        assertEquals(2, (int) enumer.nextElement());
        assertTrue(enumer.hasMoreElements());
        assertEquals(3, (int) enumer.nextElement());
        assertFalse(enumer.hasMoreElements());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

     
       char *numstr = NISOBJVAL (2, obj);
       len = NISOBJLEN (2, obj);
    -  if (len == 0 && numstr[len - 1] != '\0')
    +  if (len == 0 || numstr[len - 1] != '\0')
         {
           if (len >= room_left)
     	goto no_more_room;
    @@ -98,7 +98,7 @@ _nss_nisplus_parse_pwent (nis_result *result, struct passwd *pw,
     
       numstr = NISOBJVAL (3, obj);
       len = NISOBJLEN (3, obj);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  8. src/encoding/json/encode.go

    	if v.Type() == numberType {
    		numStr := v.String()
    		// In Go1.5 the empty string encodes to "0", while this is not a valid number literal
    		// we keep compatibility so check validity after this.
    		if numStr == "" {
    			numStr = "0" // Number's zero-val
    		}
    		if !isValidNumber(numStr) {
    			e.error(fmt.Errorf("json: invalid number literal %q", numStr))
    		}
    		b := e.AvailableBuffer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                final String[] fields = getParamValueArray(request, "field");
    
                final String numStr = request.getParameter("num");
                final int num;
                if (StringUtil.isNotBlank(numStr) && StringUtils.isNumeric(numStr)) {
                    num = Integer.parseInt(numStr);
                } else {
                    num = 10;
                }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  10. docs/tr/docs/tutorial/path-params.md

    {!../../../docs_src/path_params/tutorial005.py!}
    ```
    
    !!! info "Bilgi"
        3.4 sürümünden beri <a href="https://docs.python.org/3/library/enum.html" class="external-link" target="_blank">enumerationlar (ya da enumlar) Python'da mevcuttur</a>.
    
    !!! tip "İpucu"
        Merak ediyorsanız söyleyeyim, "AlexNet", "ResNet" ve "LeNet" isimleri Makine Öğrenmesi <abbr title="Teknik olarak, Derin Öğrenme model mimarileri">modellerini</abbr> temsil eder.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top