Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 582 for SIMPLE (0.17 sec)

  1. docs/en/data/external_links.yml

    Building a realtime ticket booking solution with Kafka, FastAPI, and Ably - author: Shahriyar(Shako) Rzayev author_link: https://www.linkedin.com/in/shahriyar-rzayev/ link: https://www.azepug.az/posts/fastapi/#building-simple-e-commerce-with-nuxtjs-and-fastapi-series title: Building simple E-Commerce with NuxtJS and FastAPI - author: Rodrigo Arenas author_link: https://rodrigo-arenas.medium.com/ link: https://medium.com/analytics-vidhya/serve-a-machine-learning-model-using-sklearn-fastapi-and-docker-85aabf96729b...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/fake.go

    	ServiceEntryRegistry *serviceentry.Controller
    	Registry             model.Controller
    	initialConfigs       []config.Config
    	stop                 chan struct{}
    	MemServiceRegistry   serviceregistry.Simple
    }
    
    func NewConfigGenTest(t test.Failer, opts TestOptions) *ConfigGenTest {
    	t.Helper()
    	configs := getConfigs(t, opts)
    	cc := opts.ConfigController
    	if cc == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/first-steps.md

    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png)
    
    ### Alternative API-Dokumentation
    
    Gehen Sie nun auf <a href="http://127.0.0.1:8000/redoc" class="external-link" target="_blank">http://127.0.0.1:8000/redoc</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 12:16:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeCodeGenTest.groovy

            assertThat(compilation).succeededWithoutWarnings()
            assertThat(compilation).generatedSourceFile("${GENERATED_CLASSES_PACKAGE_NAME}.Task_Adapter")
        }
    
        def "should fail if @ReplacesEagerProperty is not a simple getter"() {
            given:
            def givenSource = source """
                package org.gradle.test;
    
                import org.gradle.api.provider.Property;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

        @Rule
        Sample sample = new Sample(testDirectoryProvider)
    
        @Requires(UnitTestPreconditions.Jdk9OrLater)
        @UsesSample("java/basic")
        def "can execute simple Java tests with #dsl dsl"() {
            given:
            configureExecuterForToolchains('17')
            TestFile dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/parse.go

    			p.registerExtension(a, tok.String(), prefix)
    			p.expectOperandEnd()
    			return
    		} else if r1, r2, scale, ok := p.register(tok.String(), prefix); ok {
    			if scale != 0 {
    				p.errorf("expected simple register reference")
    			}
    			a.Type = obj.TYPE_REG
    			a.Reg = r1
    			if r2 != 0 {
    				// Form is R1:R2. It is on RHS and the second register
    				// needs to go into the LHS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    		annotations map[string][]byte
    		expect      string
    	}{
    		{map[string][]byte{"simple": []byte(strings.Repeat("a", 33*1024))}, maxSizeErrMsg},
    		{map[string][]byte{"simple": []byte(strings.Repeat("a", 32*1024))}, maxSizeErrMsg},
    		{map[string][]byte{"simple": []byte(strings.Repeat("a", 64*1024))}, maxSizeErrMsg},
    		{map[string][]byte{"simple": []byte(strings.Repeat("a", 31*1024)), "simple2": []byte(strings.Repeat("a", 1024))}, maxSizeErrMsg},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  8. src/unicode/letter.go

    // inclusive and has the specified stride. Lo and Hi must always be >= 1<<16.
    type Range32 struct {
    	Lo     uint32
    	Hi     uint32
    	Stride uint32
    }
    
    // CaseRange represents a range of Unicode code points for simple (one
    // code point to one code point) case conversion.
    // The range runs from Lo to Hi inclusive, with a fixed stride of 1. Deltas
    // are the number to add to the code point to reach the code point for a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/fields/selector_test.go

    limitations under the License.
    */
    
    package fields
    
    import (
    	"reflect"
    	"testing"
    )
    
    func TestSplitTerms(t *testing.T) {
    	testcases := map[string][]string{
    		// Simple selectors
    		`a`:                            {`a`},
    		`a=avalue`:                     {`a=avalue`},
    		`a=avalue,b=bvalue`:            {`a=avalue`, `b=bvalue`},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 08:00:38 UTC 2017
    - 11.2K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_block_test.go

    	// TODO (vladimirvivien) specName with slashes will not work
    	testCases := []struct {
    		name           string
    		specVolumeName string
    		path           string
    	}{
    		{
    			name:           "simple specName",
    			specVolumeName: "spec-0",
    			path:           filepath.Join(tmpDir, fmt.Sprintf("plugins/kubernetes.io/csi/volumeDevices/%s/%s", "spec-0", "dev")),
    		},
    		{
    			name:           "specName with dots",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top