Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for newsize (0.33 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    		migrated := false
    
    		newSize := pvc.Spec.Resources.Requests[v1.ResourceStorage]
    		statusSize := pvc.Status.Capacity[v1.ResourceStorage]
    		pvSize := pv.Spec.Capacity[v1.ResourceStorage]
    		if pvSize.Cmp(newSize) < 0 {
    			updatedSize, expandErr := volumePlugin.ExpandVolumeDevice(
    				volumeSpec,
    				newSize,
    				statusSize)
    			if expandErr != 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)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          }
        }
    
        // Handle size.
        if (size_op && size_type && size_type.getElementType().isInteger(64)) {
          auto new_size = NarrowDownInt64InputValuesForOp(
              size_op, size_type, slice_op.getLoc(), &rewriter);
          if (new_size != nullptr) {
            slice_op.setOperand(2, new_size);
            return success();
          }
        }
    
        return failure();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          "tf.AssignVariableOp"(%buffer, %new_val)
          %new_size = "tf.AddV2"(%old_size, %const1)
          "tf.AssignVariableOp"(%size, %new_size)
        ```
    
        and each pop will be turned into
    
        ```mlir
          %old_val = "tf.ReadVariableOp"(%buffer)
          %old_size = "tf.ReadVariableOp"(%size)
          %new_size = "tf.Sub"(%old_size, %const1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                        Type argType = paramTypes.get(typeVar);
                        _ILOAD_OF(argType, stackVar);
                        stackVar += argType.getSize();
                    }
                    _INVOKESPECIAL(superclassType, "<init>", superMethodDescriptor);
    
                    if (addNameParameter) {
                        // this.name = name
                        _ALOAD(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // check if Flatbuffer builder can no longer hold the given amount of the data
      inline bool IsModelBiggerThan2GB(const uint64_t data_size) {
        return data_size > flatbuffer_size_max - builder_.GetSize();
      }
    
      // helper function for build stablehlo operators
      std::optional<BufferOffset<tflite::Operator>>
      BuildStablehloOperatorwithoutOptions(Operation* inst,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    </p>
    
    <h3 id="Characters">Characters</h3>
    
    <p>
    The following terms are used to denote specific Unicode character classes:
    </p>
    <pre class="ebnf">
    newline        = /* the Unicode code point U+000A */ .
    unicode_char   = /* an arbitrary Unicode code point except newline */ .
    unicode_letter = /* a Unicode code point classified as "Letter" */ .
    unicode_digit  = /* a Unicode code point classified as "Number, decimal digit" */ .
    </pre>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

                                    DenseSliceSpec *dense) {
      // Build expanded dense begin, end, strides, begin_mask, end_mask, and
      // shrink_axis_mask.
      dense->begin.resize(dense->dims);
      dense->end.resize(dense->dims);
      dense->strides.resize(dense->dims);
      dense->begin_mask = 0;
      dense->end_mask = 0;
      dense->shrink_axis_mask = 0;
    
      // Count number of new_axis after ellipsis. This helps in calculating the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. src/debug/elf/elf.go

    	Size      uint32 /* Size in bytes. */
    	Link      uint32 /* Index of a related section. */
    	Info      uint32 /* Depends on section type. */
    	Addralign uint32 /* Alignment in bytes. */
    	Entsize   uint32 /* Size of each entry in section. */
    }
    
    // ELF32 Program header.
    type Prog32 struct {
    	Type   uint32 /* Entry type. */
    	Off    uint32 /* File offset of contents. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //		directives whose full original source text (excluding
    //		any trailing spaces and final newline) matches the
    //		expression.
    //
    //	-skip=""
    //		if non-empty, specifies a regular expression to suppress
    //		directives whose full original source text (excluding
    //		any trailing spaces and final newline) matches the
    //		expression. If a directive matches both the -run and
    //		the -skip arguments, it is skipped.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    				default:
    					// Not an escape character after all.
    					flag = append(flag, '\\', c)
    					escaped = false
    					continue
    				}
    			}
    
    			if c == '\n' {
    				// “If a <newline> follows the <backslash>, the shell shall interpret
    				// this as line continuation.”
    			} else {
    				flag = append(flag, c)
    			}
    			escaped = false
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top