Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for zero (0.12 sec)

  1. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    2000..200A    ; disallowed_STD3_mapped ; 0020          # 1.1  EN QUAD..HAIR SPACE
    200B          ; ignored                                # 1.1  ZERO WIDTH SPACE
    200C..200D    ; deviation              ;               # 1.1  ZERO WIDTH NON-JOINER..ZERO WIDTH JOINER
    200E..200F    ; disallowed                             # 1.1  LEFT-TO-RIGHT MARK..RIGHT-TO-LEFT MARK
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  2. RELEASE.md

    *   Fixes a division by zero in padding computation in TFLite
        ([CVE-2021-29585](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29585))
    *   Fixes a division by zero in optimized pooling implementations in TFLite
        ([CVE-2021-29586](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29586))
    *   Fixes a division by zero in TFLite's implementation of `SpaceToDepth`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

                "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
                "format": "int64",
                "type": "integer"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteARM64.go

    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Leq16U x zero:(MOVDconst [0]))
    	// result: (Eq16 x zero)
    	for {
    		x := v_0
    		zero := v_1
    		if zero.Op != OpARM64MOVDconst || auxIntToInt64(zero.AuxInt) != 0 {
    			break
    		}
    		v.reset(OpEq16)
    		v.AddArg2(x, zero)
    		return true
    	}
    	// match: (Leq16U (MOVDconst [1]) x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "revisionHistoryLimit": {
                "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
                "format": "int32",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritegeneric.go

    		return true
    	}
    	// match: (Zero {t} [s] dst1 zero:(Zero {t} [s] dst2 _))
    	// cond: isSamePtr(dst1, dst2)
    	// result: zero
    	for {
    		s := auxIntToInt64(v.AuxInt)
    		t := auxToType(v.Aux)
    		dst1 := v_0
    		zero := v_1
    		if zero.Op != OpZero || auxIntToInt64(zero.AuxInt) != s || auxToType(zero.Aux) != t {
    			break
    		}
    		dst2 := zero.Args[0]
    		if !(isSamePtr(dst1, dst2)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    split line based on `delimiter` or the line number (starting from zero).
    Where to extract the key and value from a line is specified by `key_index` and
    `value_index`.
    
    - A value of -1 means use the line number(starting from zero), expects `int64`.
    - A value of -2 means use the whole line content, expects `string`.
    - A value >= 0 means use the index (starting at zero) of the split line based
      on `delimiter`.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation_test.go

    		containers     []core.Container
    		expectedErrors field.ErrorList
    	}{{
    		"zero-length name",
    		line(),
    		[]core.Container{{Name: "", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: "File"}},
    		field.ErrorList{{Type: field.ErrorTypeRequired, Field: "containers[0].name"}},
    	}, {
    		"zero-length-image",
    		line(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	v_0 := v.Args[0]
    	b := v.Block
    	config := b.Func.Config
    	typ := &b.Func.Config.Types
    	// match: (Zero [0] _ mem)
    	// result: mem
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		mem := v_1
    		v.copyOf(mem)
    		return true
    	}
    	// match: (Zero [1] destptr mem)
    	// result: (MOVBstoreconst [makeValAndOff(0,0)] destptr mem)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/gateway-api-crd.yaml

    
                                Setting a timeout to the zero duration (e.g. "0s") SHOULD disable the timeout
                                completely. Implementations that cannot completely disable the timeout MUST
                                instead interpret the zero duration as the longest possible value to which
                                the timeout can be set.
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
Back to top