Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for ins (0.15 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java

                res.setEntry(resEntry);
    
                res.setScope(requestedScope);
    
                for (MetadataGraphVertex v : vertices) {
                    final List<MetadataGraphEdge> ins = graph.getIncidentEdges(v);
                    final MetadataGraphEdge edge = cleanEdges(v, ins, requestedScope);
    
                    if (edge == null) { // no edges - don't need this vertex anymore
                        if (entry.equals(v)) { // unless it's an entry point.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K 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;
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 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/">
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/en-ie/stopwords.txt

    dar
    de
    deich
    deichniúr
    den
    dhá
    do
    don
    dtí
    dá
    dár
    dó
    faoi
    faoin
    faoina
    faoinár
    fara
    fiche
    gach
    gan
    go
    gur
    haon
    hocht
    i
    iad
    idir
    in
    ina
    ins
    inár
    is
    le
    leis
    lena
    lenár
    m'
    mar
    mo
    mé
    na
    nach
    naoi
    naonúr
    ná
    ní
    níor
    nó
    nócha
    ocht
    ochtar
    os
    roimh
    sa
    seacht
    seachtar
    seachtó
    seasca
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 685 bytes
    - Viewed (0)
  5. istioctl/pkg/cli/context.go

    	if opts == nil {
    		opts = &NewFakeContextOption{}
    	}
    	ns := opts.Namespace
    	ins := opts.IstioNamespace
    	return &fakeInstance{
    		clients: map[string]kube.CLIClient{},
    		rootFlags: &RootFlags{
    			kubeconfig:       ptr.Of[string](""),
    			configContext:    ptr.Of[string](""),
    			namespace:        &ns,
    			istioNamespace:   &ins,
    			defaultNamespace: "",
    		},
    		results: opts.Results,
    		objects: opts.Objects,
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  6. docs/pt/docs/alternatives.md

    ### <a href="https://apispec.readthedocs.io/en/stable/" class="external-link" target="_blank">APISpec</a>
    
    Marshmallow e Webargs fornecem validação, análise e serialização como plug-ins.
    
    Mas a documentação ainda está faltando. Então APISpec foi criado.
    
    APISpec tem plug-ins para muitos frameworks (e tem um plug-in para Starlette também).
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_macros_internal.h

    #ifdef __cplusplus
    #include "tensorflow/core/platform/status.h"
    
    // Macro to verify that the field `struct_size` of STRUCT_OBJ is initialized.
    // `struct_size` is used for struct member compatibility check between core TF
    // and plug-ins with the same C API minor version. More info here:
    // https://github.com/tensorflow/community/blob/master/rfcs/20200612-stream-executor-c-api/C_API_versioning_strategy.md
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Mar 13 17:40:56 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  8. 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 {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Oct 05 18:41:13 GMT 2023
    - 13.1K bytes
    - Viewed (0)
  9. 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 }}
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Wed Feb 21 22:23:00 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  10. dbflute_fess/dfprop/_readme.txt

    o replaceSchemaMap.dfprop
    
    Properties for documents:
    o documentMap.dfprop
    
    Properties for non-functional adjustments:
    o sourceCopyright.dfprop
    o infraMap.dfprop (manual making)
    
    Properties for plug-ins:
    o freeGenMap.dfprop (manual making)
    o lastafluteMap.dfprop (manual making)
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Jan 29 07:34:32 GMT 2018
    - 930 bytes
    - Viewed (0)
Back to top