Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 149 for meaningful (0.54 sec)

  1. guava/src/com/google/common/net/HostAndPort.java

       *
       * @param hostPortString the input string to parse.
       * @return if parsing was successful, a populated HostAndPort object.
       * @throws IllegalArgumentException if nothing meaningful could be parsed.
       */
      @CanIgnoreReturnValue // TODO(b/219820829): consider removing
      public static HostAndPort fromString(String hostPortString) {
        checkNotNull(hostPortString);
        String host;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    // A derived attribute that returns the element type of `idx`-th ODS-declared
    // operand. If the `idx`-th operand is a variadic operand, then this attribute
    // just returns the element type of its first tensor, which is only meaningful
    // when the variadic operand has at least one tensor and the tensors all have
    // the same element type.
    class TF_DerivedOperandTypeAttr<int idx> : DerivedTypeAttr<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

      %push = "tf.StackPushV2"(%arg1, %elem) {swap_memory = false} : (tensor<!tf_type.resource>, tensor<f32>) -> tensor<f32>
      func.return %arg1 : tensor<!tf_type.resource>
    }
    
    // -----
    
    // Tests that the pass returns meaningful error message when WhileRegion op has
    // resource arguments.
    func.func @main() -> () {
      %max_size = "tf.Const"() {value = dense<10> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/HostAndPort.java

       *
       * @param hostPortString the input string to parse.
       * @return if parsing was successful, a populated HostAndPort object.
       * @throws IllegalArgumentException if nothing meaningful could be parsed.
       */
      @CanIgnoreReturnValue // TODO(b/219820829): consider removing
      public static HostAndPort fromString(String hostPortString) {
        checkNotNull(hostPortString);
        String host;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/query.go

    			return fmt.Errorf("can't request explicit version %q of path %q in main module", q.rawVersion, q.pattern)
    		}
    		return nil
    	}
    
    	if q.pattern == "all" {
    		// If there is no main module, "all" is not meaningful.
    		if !modload.HasModRoot() {
    			return fmt.Errorf(`cannot match "all": %v`, modload.ErrNoModRoot)
    		}
    		if !versionOkForMainModule(q.version) {
    			// TODO(bcmills): "all@none" seems like a totally reasonable way to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. src/runtime/runtime.go

    //
    // Note: Clocks are hard. Using this as an actual conversion rate for timestamps is ill-advised
    // and should be avoided when possible. Use only for durations, where a tiny error term isn't going
    // to make a meaningful difference in even a 1ms duration. If an accurate timestamp is needed,
    // use nanotime instead. (The entire Windows platform is a broad exception to this rule, where nanotime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    // limitations under the License.
    
    [[organizing_gradle_projects]]
    = Organizing Gradle Projects
    
    Source code and build logic of every software project should be organized in a meaningful way.
    This page lays out the best practices that lead to readable, maintainable projects.
    The following sections also touch on common problems and how to avoid them.
    
    [[sec:separate_language_source_files]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/cmd/covdata/metamerge.go

    	// Open output file. The file naming scheme is intended to mimic
    	// that used when running a coverage-instrumented binary, for
    	// consistency (however the process ID is not meaningful here, so
    	// use a value of zero).
    	var dummyPID int
    	fn := fmt.Sprintf(coverage.CounterFileTempl, coverage.CounterFilePref, metaHash, dummyPID, time.Now().UnixNano())
    	fpath := filepath.Join(outdir, fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptingMetaClass.java

            @Override
            public int getModifiers() {
                if (original != null) {
                    return original.getModifiers();
                }
                // TODO is there even a way to return meaningful modifiers when we are intercepting calls to a missing method?
                return 0;
            }
    
            @Override
            public String getName() {
                if (original != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    		case 9:
    			return "ctr"
    		case 268:
    			return "tb"
    		default:
    			return fmt.Sprintf("%d", int(arg))
    		}
    	case PCRel:
    		// If the arg is 0, use the relative address format.
    		// Otherwise the pc is meaningful, use absolute address.
    		if int(arg) == 0 {
    			return fmt.Sprintf(".%+#x", int(arg))
    		}
    		addr := pc + uint64(int64(arg))
    		return fmt.Sprintf("%#x", addr)
    	case Label:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top