Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 97 for zero (0.2 sec)

  1. src/debug/elf/elf.go

    	R_X86_64_32              R_X86_64 = 10 /* Add 32 bit zero extended symbol value */
    	R_X86_64_32S             R_X86_64 = 11 /* Add 32 bit sign extended symbol value */
    	R_X86_64_16              R_X86_64 = 12 /* Add 16 bit zero extended symbol value */
    	R_X86_64_PC16            R_X86_64 = 13 /* Add 16 bit signed extended pc relative symbol value */
    	R_X86_64_8               R_X86_64 = 14 /* Add 8 bit zero extended symbol value */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        SmallVector<int64_t, 4> padding_2d_array;
        for (const auto v : conv_op.getPadding().value().getValues<int64_t>()) {
          padding_2d_array.emplace_back(v);
        }
        // The newly added spatial dimension requires zero left and right padding.
        padding_2d_array.push_back(0);
        padding_2d_array.push_back(0);
        auto padding_2d = DenseIntElementsAttr::get(
            RankedTensorType::get({2, 2}, rewriter.getI64Type()), padding_2d_array);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      auto input_type = getInput().getType().cast<ShapedType>();
      // Do not fold if rank is zero because the TFLite converter doesn't
      // distinguish between unranked input and scalar input due to b/138865275.
      // TODO(b/138865275): Remove `input_type.getRank() != 0` in the following
      // predicate and fold the op when rank is zero.
      if (input_type.hasRank() && input_type.getRank() != 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    	}
    }
    
    var _ fmt.Stringer = LevelDefault
    
    // TxOptions holds the transaction options to be used in [DB.BeginTx].
    type TxOptions struct {
    	// Isolation is the transaction isolation level.
    	// If zero, the driver or database's default level is used.
    	Isolation IsolationLevel
    	ReadOnly  bool
    }
    
    // RawBytes is a byte slice that holds a reference to memory owned by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	//
    	// Trash the value by decrementing because that gets us as far away from the value
    	// the syscall exit code expects as possible. Setting to zero is risky because
    	// syscalltick could already be zero (and in fact, is initialized to zero).
    	mp.syscalltick--
    
    	// Reset trace state unconditionally. This goroutine is being 'destroyed'
    	// from the perspective of the tracer.
    	mp.curg.trace.reset()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_node_status_test.go

    			assert.NoError(t, err)
    			for i, cond := range updatedNode.Status.Conditions {
    				assert.False(t, cond.LastHeartbeatTime.IsZero(), "LastHeartbeatTime for %v condition is zero", cond.Type)
    				assert.False(t, cond.LastTransitionTime.IsZero(), "LastTransitionTime for %v condition is zero", cond.Type)
    				updatedNode.Status.Conditions[i].LastHeartbeatTime = metav1.Time{}
    				updatedNode.Status.Conditions[i].LastTransitionTime = metav1.Time{}
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			// Note: no res.Body.Close is needed here, since the
    			// response Content-Length is zero. Perhaps the test
    			// should be more explicit and use a HEAD, but tests
    			// elsewhere guarantee that zero byte responses generate
    			// a "Content-Length: 0" instead of chunking.
    		}
    
    		// At this point, each of the 5 Transport.readLoop goroutines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    				0xff,    // -1
    				0x02, 1, // INTEGER, 1 byte
    				3,
    			},
    			expectedErrSubstr: "zero or negative",
    		}, {
    			derBytes: []byte{
    				0x30, 6, // SEQUENCE
    				0x02, 1, // INTEGER, 1 byte
    				17,
    				0x02, 1, // INTEGER, 1 byte
    				0xff, // -1
    			},
    			expectedErrSubstr: "zero or negative",
    		}, {
    			derBytes: []byte{
    				0x30, 6, // SEQUENCE
    				0x02, 1, // INTEGER, 1 byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        if (dense_int_attr.getType().getElementType().isSignedInteger()) {
          // Get the sign-extended value (=>int64) if the type is signed.
          float_val = apint_val.getSExtValue();
        } else {
          // Get the zero-extended value (=>uint64) if unsigned or signless.
          float_val = apint_val.getZExtValue();
        }
      }
      return DenseFPElementsAttr::get(
          RankedTensorType::get({}, builder.getF32Type()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "is-extglob": "^2.1.1"
          },
          "engines": {
            "node": ">=0.10.0"
          }
        },
        "node_modules/is-negative-zero": {
          "version": "2.0.2",
          "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
          "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==",
          "dev": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
Back to top