Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 258 for set_type (0.13 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithAndroidDeprecations.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import groovy.transform.SelfType
    import org.gradle.util.GradleVersion
    
    @SelfType(BaseDeprecations)
    trait WithAndroidDeprecations {
    
        void expectFilteredFileCollectionDeprecationWarning() {
            // This warning is emitted by the Kotlin Kapt plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_layout_helper.h

      for (unsigned idx : layout_sensitive.GetLayoutDependentResults()) {
        OpResult result = op->getOperation()->getResult(idx);
        result.setType(ShuffleRankedTensorType(result.getType(), perm));
      }
    
      return success();
    }
    
    // Default implementation for folding operand transpose into the operation.
    // See `FoldOperandsTransposeInterface::FoldOperandsPermutation`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/cache/CachingIntegrationFixture.groovy

    package org.gradle.integtests.fixtures.cache
    
    import groovy.transform.SelfType
    import org.gradle.api.internal.artifacts.ivyservice.CacheLayout
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.util.GradleVersion
    
    import static org.gradle.cache.internal.scopes.DefaultCacheScopeMapping.GLOBAL_CACHE_DIR_NAME
    
    @SelfType(AbstractIntegrationSpec)
    trait CachingIntegrationFixture {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/cc/const_op_size.cc

    // element is arbitrarily considered to be 4 bytes.
    constexpr int64_t kAssumedNumBytesPerElem = 4;
    
    int64_t GetSizeOfIntOrFloatConst(TF::ConstOp const_op) {
      const Type dtype = const_op.getDtype();
      const ElementsAttr const_value = const_op.getValue();
    
      const auto bytes_per_elem =
          static_cast<int64_t>(dtype.getIntOrFloatBitWidth() / CHAR_BIT);
    
      return bytes_per_elem * const_value.getNumElements();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 14 04:37:13 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/closure.go

    	// node, but we only rewrote the ONAME node's type. Logically,
    	// they're the same, but the stack offsets probably changed.
    	if typ.NumResults() == 1 {
    		n.SetType(typ.Result(0).Type)
    	} else {
    		n.SetType(typ.ResultsTuple())
    	}
    
    	// Add to Closures for enqueueFunc. It's no longer a proper
    	// closure, but we may have already skipped over it in the
    	// functions list as a non-trivial closure, so this just
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/MultipartBodyTest.kt

          |... contents of file2.gif ...
          |--BbC04y--
          |
          |--AaB03x--
          |
          """.trimMargin().replace("\n", "\r\n")
        val body =
          MultipartBody.Builder("AaB03x")
            .setType(MultipartBody.FORM)
            .addFormDataPart("submit-name", "Larry")
            .addFormDataPart(
              "files",
              null,
              MultipartBody.Builder("BbC04y")
                .addPart(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/elf.go

    			plt.SetType(sym.SELFSECT)
    		} else {
    			plt.SetType(sym.SELFRXSECT)
    		}
    
    		s = ldr.CreateSymForUpdate(elfRelType+".plt", 0)
    		s.SetType(sym.SELFROSECT)
    
    		s = ldr.CreateSymForUpdate(".gnu.version", 0)
    		s.SetType(sym.SELFROSECT)
    
    		s = ldr.CreateSymForUpdate(".gnu.version_r", 0)
    		s.SetType(sym.SELFROSECT)
    
    		/* define dynamic elf table */
    		dynamic := ldr.CreateSymForUpdate(".dynamic", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/artifact/MavenMetadataSourceTest.java

            /*
            Dependency dep1 = new Dependency();
            dep1.setGroupId( "test" );
            dep1.setArtifactId( "test-artifact" );
            dep1.setVersion( "1" );
            dep1.setType( "jar" );
    
            Exclusion exc = new Exclusion();
            exc.setGroupId( "test" );
            exc.setArtifactId( "test-artifact3" );
    
            dep1.addExclusion( exc );
    
            Dependency dep2 = new Dependency();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_op_order.cc

        dequantize_op.getOutput().setType(output_type);
        passthrough_op->replaceAllUsesWith(dequantize_op);
    
        // Set the input type of the passthrough op and pull it up.
        Type new_output_type;
        if (mlir::isa<quant::QuantizedType>(input_element_type)) {
          new_output_type = QuantizedType::getQuantizedElementType(
                                dequantize_op.getInput().getType())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loadpe/ldpe.go

    			if issehsect(arch, sect) {
    				bld.SetType(sym.SSEHSECT)
    				bld.SetAlign(4)
    			} else {
    				bld.SetType(sym.SRODATA)
    			}
    
    		case pe.IMAGE_SCN_CNT_UNINITIALIZED_DATA | pe.IMAGE_SCN_MEM_READ | pe.IMAGE_SCN_MEM_WRITE: //.bss
    			bld.SetType(sym.SNOPTRBSS)
    
    		case pe.IMAGE_SCN_CNT_INITIALIZED_DATA | pe.IMAGE_SCN_MEM_READ | pe.IMAGE_SCN_MEM_WRITE: //.data
    			bld.SetType(sym.SNOPTRDATA)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top