Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 85 for INS (0.02 sec)

  1. src/cmd/vendor/golang.org/x/build/relnote/dump.go

    	case *md.List:
    		dumpBlocks(b.Items, depth+1)
    	case *md.Item:
    		dumpBlocks(b.Blocks, depth+1)
    	default:
    		// TODO(jba): additional cases as needed.
    	}
    }
    
    func dumpInlines(ins []md.Inline, depth int) {
    	for _, in := range ins {
    		switch in := in.(type) {
    		case *md.Plain:
    			dprintf(depth, "Plain(%q)\n", in.Text)
    		case *md.Code:
    			dprintf(depth, "Code(%q)\n", in.Text)
    		case *md.Link:
    			dprintf(depth, "Link:\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/OsddHelper.java

            }
    
            return new StreamResponse(osddFile.getName()).contentType(contentType + "; charset=" + encoding).stream(out -> {
                try (InputStream ins = new FileInputStream(osddFile)) {
                    out.write(ins);
                }
            });
        }
    
        public void setOsddPath(final String osddPath) {
            this.osddPath = osddPath;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/OsddHelperTest.java

            assertEquals("text/xml; charset=UTF-8", streamResponse.getContentType());
            streamResponse.getStreamCall().callback(new WrittenStreamOut() {
    
                @Override
                public void write(final InputStream ins) throws IOException {
                    assertEquals("""
                            <?xml version="1.0" encoding="UTF-8"?>
                            <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/abiutilsaux_test.go

    		}
    		f := types.NewField(src.NoXPos, nil, t)
    		fields[k] = f
    	}
    	s := types.NewStruct(fields)
    	return s
    }
    
    func mkFuncType(rcvr *types.Type, ins []*types.Type, outs []*types.Type) *types.Type {
    	q := typecheck.Lookup("?")
    	inf := []*types.Field{}
    	for _, it := range ins {
    		inf = append(inf, mkParamResultField(it, q, ir.PPARAM))
    	}
    	outf := []*types.Field{}
    	for _, ot := range outs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:34:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java

            for (MetadataGraphVertex v : vertices) {
                sb.append("Vertex:  ").append(v.getMd().toString()).append('\n');
                List<MetadataGraphEdge> ins = getIncidentEdges(v);
                if (ins != null) {
                    for (MetadataGraphEdge e : ins) {
                        sb.append("       from :  ").append(e.toString()).append('\n');
                    }
                } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 05 18:41:13 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/riscv64/asm.go

    			}
    		default:
    			panic(fmt.Sprintf("unknown relocation type: %v", r.Type()))
    		}
    
    		ins := int64(uint32(val))
    		ins = (ins &^ immMask) | int64(uint32(imm))
    		return ins, 0, true
    
    	case objabi.R_RISCV_CALL, objabi.R_RISCV_PCREL_ITYPE, objabi.R_RISCV_PCREL_STYPE:
    		// Generate AUIPC and second instruction immediates.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/KtStaticProjectStructureProvider.kt

     */
    public abstract class KtStaticProjectStructureProvider : ProjectStructureProvider() {
        /**
         * All [KtModule]s registered with the project structure provider, excluding [KtNotUnderContentRootModule]s and the built-ins module.
         *
         * [allKtModules] may be used by other services to pre-build caches based on the full module structure.
         */
        public abstract val allKtModules: List<KtModule>
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jul 31 15:58:00 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

        The shape of `value` must be compatible with the shape of `type` in the
        sense of `tf.TensorShape` compatibility. And the element types must match.
      }];
    
      let arguments = (ins
        StrAttr:$sym_name,
        OptionalAttr<ElementsAttr>:$value,
        TypeAttr:$type,
        UnitAttr:$is_mutable
      );
    
      let hasVerifier = 1;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. platforms/software/security/src/main/java/org/gradle/security/internal/SecuritySupport.java

            List<PGPPublicKeyRing> existingRings = new ArrayList<>();
            // load existing keys from keyring before
            try (InputStream ins = PGPUtil.getDecoderStream(createInputStreamFor(keyringFile))) {
                PGPObjectFactory objectFactory = new JcaPGPObjectFactory(ins);
                KeyFingerPrintCalculator fingerprintCalculator = new JcaKeyFingerprintCalculator();
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. docs/de/docs/external-links.md

        Die folgenden Überschriften und Links werden aus einer <a href="https://github.com/tiangolo/fastapi/blob/master/docs/en/data/external_links.yml" class="external-link" target="_blank">anderen Datei</a> gelesen und sind daher nicht ins Deutsche übersetzt.
    
    {% for section_name, section_content in external_links.items() %}
    
    ## {{ section_name }}
    
    {% for lang_name, lang_content in section_content.items() %}
    
    ### {{ lang_name }}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 21 22:23:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top