Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 241 for set_type (0.5 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/mdo/common.vm

    ## type and loading a model with such a type would fail the Modello validation.
    ##
    #foreach ( $field in $model.getClass("Model", $version).allFields )
      #if ( $field.name == "pomFile" )
        #set ( $dummy = $field.setType("java.nio.file.Path") )
      #end
    #end
    #set ( $locationTracking = true )
    #end
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jan 19 23:38:51 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

            }
        }
    
        protected SitemapSet parseTextSitemaps(final InputStream in) {
            final SitemapSet sitemapSet = new SitemapSet();
            sitemapSet.setType(SitemapSet.URLSET);
    
            try {
                final BufferedReader br = new BufferedReader(new InputStreamReader(in, Constants.UTF_8));
                String line;
                while ((line = br.readLine()) != null) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

          arg.setType(ReplaceElementType(arg.getType(), element_type));
        }
    
        for (Operation& op : region.getOps()) {
          for (Value operand : op.getOperands()) {
            operand.setType(ReplaceElementType(operand.getType(), element_type));
          }
    
          for (Value result : op.getResults()) {
            result.setType(ReplaceElementType(result.getType(), element_type));
          }
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/ipset/testing/fake_test.go

    	}
    	if version != testVersion {
    		t.Errorf("Unexpected version mismatch, expected: %s, got: %s", testVersion, version)
    	}
    	// create a set
    	set := &ipset.IPSet{
    		Name:       "foo",
    		SetType:    ipset.HashIPPort,
    		HashFamily: ipset.ProtocolFamilyIPV4,
    	}
    	if err := fake.CreateSet(set, true); err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    
    	// add two entries
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top