Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 103 for Cases (0.09 sec)

  1. src/cmd/go/internal/load/pkg.go

    		return "no non-test Go files in " + e.Package.Dir
    	}
    	return "no Go files in " + e.Package.Dir
    }
    
    // setLoadPackageDataError presents an error found when loading package data
    // as a *PackageError. It has special cases for some common errors to improve
    // messages shown to users and reduce redundancy.
    //
    // setLoadPackageDataError returns true if it's safe to load information about
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     queryFuture.transform((closer, result) -> result.getRows(), executor);
       * }</pre>
       *
       * <p>When selecting an executor, note that {@code directExecutor} is dangerous in some cases. See
       * the discussion in the {@link ListenableFuture#addListener} documentation. All its warnings
       * about heavyweight listeners are also applicable to heavyweight functions passed to this method.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    			// you can imagine this happening in cases where a container failed and the kubelet didn't ask about it in time to see the result.
    			// in this case, the container should not to into waiting state immediately because that can make cases like runonce pods actually run
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        // Check that the outermost reshape_op in the pattern does not add
        // additional elements to the final output tensor.
        // TODO: b/323217483. This code needs to generalized to additional cases.
        // For example- inner-shape = [1, 1, 1, 8, 1, 10],
        // broadcast_shape = [1, 1, 1, 8, 16, 10] & outer_shape = [1, 1, 1, 1280, 1]
        // And extend the pettern to handle dynamic shapes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        func.return
      }
      func.func @empty_func() {
        func.return
      }
    }
    
    // -----
    
    // The following topology is used in subsequent test cases:
    // Proto debug string:
    //   mesh_shape: 1
    //   mesh_shape: 1
    //   mesh_shape: 1
    //   mesh_shape: 2
    //   num_tasks: 1
    //   num_tpu_devices_per_task: 2
    //   device_coordinates: 0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  6. src/crypto/x509/x509_test.go

    	}
    
    	if extra[0].Value != "backing array" {
    		t.Errorf("the backing array of an empty ExtraNames got modified by String")
    	}
    }
    
    func TestRDNSequenceString(t *testing.T) {
    	// Test some extra cases that get lost in pkix.Name conversions such as
    	// multi-valued attributes.
    
    	var (
    		oidCountry            = []int{2, 5, 4, 6}
    		oidOrganization       = []int{2, 5, 4, 10}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      Value resource = op.getResource();
      if (!CanBeRefined(resource.getType())) return false;
    
      // Make sure there are only use cases from the `AssignVariableOp` and
      // `ReadVariableOp`. For other cases, we can skip to be conservative.
      for (auto& use : make_early_inc_range(resource.getUses())) {
        Operation* def = use.getOwner();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    		o1 = AOP_RRR(v&^t, REGTMP, uint32(r), uint32(p.From.Reg))
    		o2 = AOP_RRR(OP_MULLD, REGTMP, REGTMP, uint32(p.From.Reg))
    		o3 = AOP_RRR(OP_SUBF|t, uint32(p.To.Reg), REGTMP, uint32(r))
    		/* cases 50,51: removed; can be reused. */
    
    		/* cases 50,51: removed; can be reused. */
    
    	case 52: /* mtfsbNx cr(n) */
    		v := c.regoff(&p.From) & 31
    
    		o1 = AOP_RRR(c.oprrr(p.As), uint32(v), 0, 0)
    
    	case 53: /* mffsX ,fr1 */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. src/net/http/server.go

    // wrapped by the response.w buffered writer.
    //
    // chunkWriter also is responsible for finalizing the Header, including
    // conditionally setting the Content-Type and setting a Content-Length
    // in cases where the handler's final output is smaller than the buffer
    // size. It also conditionally adds chunk headers, when in chunking mode.
    //
    // See the comment above (*response).Write for the entire write flow.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

     public:
      // Sets benefit to 10 to make this pattern more preferred than smaller local
      // transformations like `stablehlo.transpose`->`tfl.transpose`, as this
      // pattern involves `stablehlo.transpose` in some cases.
      explicit RewriteQuantizedDotGeneralOpToTflFullyConnectedOrBatchMatmulOp(
          MLIRContext* ctx)
          : OpRewritePattern<stablehlo::DotGeneralOp>(ctx, /*benefit=*/10) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
Back to top