Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 281 for salary (0.12 sec)

  1. istioctl/pkg/proxystatus/proxystatus_test.go

    			wantException: true,
    		},
    		{ // case 6: new --revision argument
    			args:           strings.Split("--revision canary", " "),
    			expectedString: "NAME     CLUSTER     CDS     LDS     EDS     RDS     ECDS     ISTIOD",
    			revision:       "canary",
    		},
    		{ // case 7: supplying type that doesn't select pods should fail
    			args:          strings.Split("serviceaccount/sleep", " "),
    			wantException: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. docs/tr/docs/advanced/index.md

    Bazı kurs sağlayıcıları ✨ [**FastAPI destekçileridir**](../help-fastapi.md#sponsor-the-author){.internal-link target=_blank} ✨, bu FastAPI ve **ekosisteminin** sürekli ve sağlıklı bir şekilde **gelişmesini** sağlar.
    
    Ayrıca, size **iyi bir öğrenme deneyimi** sağlamakla kalmayıp, **iyi ve sağlıklı bir framework** olan FastAPI'a ve ve **topluluğuna** (yani size) olan gerçek bağlılıklarını gösterir.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 05 00:05:51 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. docs/tr/docs/tutorial/static-files.md

        Projenize dahil etmek için `from starlette.staticfiles import StaticFiles` kullanabilirsiniz.
    
        **FastAPI**, geliştiricilere kolaylık sağlamak amacıyla `starlette.staticfiles`'ı `fastapi.staticfiles` olarak sağlar. Ancak `StaticFiles` sınıfı aslında doğrudan Starlette'den gelir.
    
    ### Bağlama (Mounting) Nedir?
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 23:57:08 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. istioctl/pkg/tag/generate_test.go

    			webhook:     revisionCanonicalWebhook,
    			tagName:     "canary",
    			whURL:       "",
    			whSVC:       "istiod-revision",
    			whCA:        "ca",
    			numWebhooks: 2,
    		},
    		{
    			name:        "webhook-pointing-to-url",
    			webhook:     revisionCanonicalWebhookRemote,
    			tagName:     "canary",
    			whURL:       remoteInjectionURL,
    			whSVC:       "",
    			whCA:        "ca",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelPropertyTargetingRuleIntegrationTest.groovy

            output.contains("plugin name: windows 10")
            output.contains("script input: OperatingSystem 'platforms.windows'")
            output.contains("script name: windows 10")
        }
    
        def "rule can target scalar property of managed element as input"() {
            when:
            buildScript '''
                @Managed
                interface Platform {
                    String getName()
                    void setName(String name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractIsolatableScalarValue.java

    package org.gradle.internal.snapshot.impl;
    
    import org.gradle.internal.isolation.Isolatable;
    import org.gradle.internal.snapshot.ValueSnapshot;
    
    import javax.annotation.Nullable;
    
    /**
     * An isolated immutable scalar value. Should only be used for immutable JVM provided or core Gradle types.
     *
     * @param <T> the type of the value
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. tests/integration/helm/upgrade/util.go

    		//    -s templates/revision-tags.yaml --set revision=latest --set revisionTags={canary}
    		helmtest.SetRevisionTag(t, h, "", latestRevisionTag, canaryTag, helmtest.ManifestsChartPath, "")
    		helmtest.VerifyMutatingWebhookConfigurations(t, cs, []string{
    			"istio-revision-tag-prod",
    			fmt.Sprintf("istio-sidecar-injector-%v", previousRevision),
    			"istio-revision-tag-canary",
    			"istio-sidecar-injector-latest",
    		})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Managed.java

     * of {@link org.gradle.model.internal.manage.schema.extract.ScalarTypes scalar types}, where scalar types is either one of the supported immutable JDK types above or an enumeration.
     * <p>
     * Properties of any other type must have their getter annotated with {@link Unmanaged}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. istioctl/pkg/wait/wait_test.go

    		},
    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--timeout 2s --revision canary virtualservice foo.default", " "),
    			wantException:    false,
    		},
    		{
    			execClientConfig: distributionTrackingDisabledResponseMap,
    			args:             strings.Split("--timeout 2s --revision canary virtualservice foo.default", " "),
    			wantException:    true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/UnmanagedCollectionPropertyIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class UnmanagedCollectionPropertyIntegrationTest extends AbstractIntegrationSpec {
    
        def "managed type can have unmanaged properties of collection type with types that are not scalar types"() {
            given:
            buildScript """
    
            class Widget {
                String name
            }
    
            @Managed
            interface Container {
                @Unmanaged
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top