Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for INS (0.03 sec)

  1. 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)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/ProtocolToModelAdapterTest.groovy

            model1.project.is(model2.project)
    
            def otherModel1 = converter.adapt(TestModel.class, protocolModel1)
            model1.is(otherModel1)
        }
    
        def "does not reuse views with different mix ins"() {
            TestProtocolModel protocolModel = Mock()
            TestProtocolProject protocolProject = Mock()
            _ * protocolModel.getProject() >> protocolProject
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/dependencies/index.md

    * resources
    * providers
    * services
    * injectables
    * components
    
    ## **FastAPI** plug-ins
    
    Integrations and "plug-ins" can be built using the **Dependency Injection** system. But in fact, there is actually **no need to create "plug-ins"**, as by using dependencies it's possible to declare an infinite number of integrations and interactions that become available to your *path operation functions*.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. 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).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

                file 'file1.txt'
                file 'file2.txt'
            }
            file('dest').create {
                file 'extra.txt'
            }
            // Intentionally hold open a file
            def ins = new FileInputStream(file("dest/extra.txt"))
            buildScript '''
                task syncIt {
                    doLast {
                        project.sync {
                            from 'source'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. docs/es/docs/features.md

    * **Sin comprometerse** con bases de datos, frontend, etc. Pero permitiendo integración fácil con todos ellos.
    
    ### "Plug-ins" ilimitados
    
    O dicho de otra manera, no hay necesidad para "plug-ins". Importa y usa el código que necesites.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

                'flexmark-util', 'flexmark-formatter', 'autolink-0.6', 'flexmark-jira-converter', 'antlr-3', 'jackson-annotations', 'jackson-core',
                'jackson-databind', 'snakeyaml', 'flexmark-ext-tables', 'flexmark-ext-ins', 'flexmark-ext-superscript', 'antlr-runtime', 'ST4'
            ]
            hasProjectLibrary('root.ipr', 'scala-sdk-3.0.1', [], [], [], scalaLibs + scaladocLibsAndDeps)
            hasScalaSdk('project1/project1.iml', '2.11.2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	for _, b := range bs {
    		io.WriteString(&d, text(b))
    		fmt.Fprintln(&d)
    	}
    	return d.String()
    }
    
    // inlineText returns all the next in a slice of inline nodes.
    func inlineText(ins []md.Inline) string {
    	var buf bytes.Buffer
    	for _, in := range ins {
    		in.PrintText(&buf)
    	}
    	return buf.String()
    }
    
    // Merge combines the markdown documents (files ending in ".md") in the tree rooted
    // at fs into a single document.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. docs/en/docs/alternatives.md

    I have been avoiding the creation of a new framework for several years. First I tried to solve all the features covered by **FastAPI** using many different frameworks, plug-ins, and tools.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/parse.go

    	}
    	inner := v.FieldByName("Inner")
    	if inner.IsValid() {
    		printis(buf, inner.Interface().([]Inline))
    	}
    	buf.WriteString(")")
    }
    
    func printis(buf *bytes.Buffer, ins []Inline) {
    	for _, in := range ins {
    		buf.WriteByte(' ')
    		printi(buf, in)
    	}
    }
    
    func dump(b Block) string {
    	var buf bytes.Buffer
    	printb(&buf, b, "")
    	return buf.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top