Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 96 for doPing (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        // shape result.
        if (port.size() != 2 || port[0] != 0 || port[1] >= operand_ty.getRank())
          return nullptr;
    
        // If the dim is dynamic, the dimension can't be inferred during
        // compilation.
        int64_t dim = operand_ty.getDimSize(port[1]);
        if (dim == ShapedType::kDynamic) return nullptr;
    
        // Create an elements attribute for the particular dimension.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    LogicalResult TensorListReserveOp::verify() {
      TensorListReserveOp op = *this;
      // This is required to populate derived attributes during export in a
      // meaningful way. Else during export to GraphDef element_type() query
      // will result in out of bounds access/assert.
      if (handle_dtype().getSubtypes().size() != 1) {
        return emitOpError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. src/reflect/value.go

    		// Either flagIndir is set and v.ptr points at array,
    		// or flagIndir is not set and v.ptr is the actual array data.
    		// In the former case, we want v.ptr + offset.
    		// In the latter case, we must be doing Index(0), so offset = 0,
    		// so v.ptr + offset is still the correct address.
    		val := add(v.ptr, offset, "same as &v[i], i < tt.len")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    		}
    		rinfo.Duration = time.Since(startTime)
    	}()
    
    	rinfo.ReplicationStatus = replication.Completed
    	rinfo.Size = size
    	rinfo.ReplicationAction = rAction
    	// use core client to avoid doing multipart on PUT
    	c := &minio.Core{Client: tgt.Client}
    
    	putOpts, err := putReplicationOpts(ctx, tgt.StorageClass, objInfo, 0)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    // The imports in p.TestImports and p.XTestImports are not recursively
    // loaded during the initial load of p, so they list the imports found in
    // the source file, but most processing should be over the vendor-resolved
    // import paths. We do this resolution lazily both to avoid file system work
    // and because the eventual real load of the test imports (during 'go test')
    // can produce better error messages if it starts with the original paths.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_generator.go

    	// It's ok to ignore the error, returning error is not expected from this function.
    	// If an error case occurred during the function generation, this error case(skipped one) will also trigger an error
    	// while the generated function is executed. And those errors will be handled during the execution of the generated
    	// function with a back off policy.
    	if err == nil && attachableVolumePlugin != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    //
    // Pointer-typed fields may point to one of many different types. It's
    // up to the caller to provide a pointer to the appropriate type, cast
    // to Pointer. The caller must obey the unsafe.Pointer rules while
    // doing so.
    type Pointer *struct{}
    
    // Invented values to support what package os expects.
    type Timeval struct {
    	Sec  int32
    	Usec int32
    }
    
    func (tv *Timeval) Nanoseconds() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			costBudget:              50,
    			expectedValidationErr:   "str1 a string",
    			expectedRemainingBudget: 46,
    		},
    		{
    			name:                    "runtime cost preserved if messageExpression fails during evaluation",
    			message:                 "message not messageExpression",
    			messageExpression:       `"str1 " + ["a", "b", "c", "d"][4]`,
    			costBudget:              50,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    // See mixInConventionAware() for how we do this for decorated types that do not implement IConventionAware manually
                    //
                    // Doing this for all types introduces a performance penalty for types that have Provider properties, even
                    // if they don't use convention mapping.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

    If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
Back to top