Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 339 for salary (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  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. tensorflow/c/experimental/saved_model/core/revived_types/asset.cc

      AbstractTensorPtr tensor(ctx->CreateStringScalar(abs_path));
      if (tensor.get() == nullptr) {
        return absl::InternalError(absl::StrCat(
            "Failed to create scalar string tensor for Asset at path ", abs_path));
      }
    
      ImmediateTensorHandlePtr handle(ctx->CreateLocalHandle(tensor.get()));
      output->reset(new Asset(std::move(handle)));
      return Status();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. 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)
  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. tensorflow/c/eager/unified_api_test.cc

      }
    
     public:
      bool UseMlir() const { return strcmp(std::get<0>(GetParam()), "mlir") == 0; }
      bool UseFunction() const { return std::get<2>(GetParam()); }
    };
    
    // Checks that inputs[0] is a scalar.
    Status TestScalarShape(AbstractContext* ctx,
                           absl::Span<AbstractTensorHandle* const> inputs,
                           absl::Span<AbstractTensorHandle*> outputs) {
      PartialTensorShape shape;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top