Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for useCase (0.23 sec)

  1. releasenotes/notes/workload-entry-service-select.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
     - |
       **Added** `PILOT_ENABLE_K8S_SELECT_WORKLOAD_ENTRIES` feature back to Istio which was removed in 1.14.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 01 14:32:40 UTC 2022
    - 265 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsKotlinDSLIntegrationTest.groovy

            succeeds('greet', 'greet2')
    
            then:
            outputContains 'Hello from first plugin!'
            outputContains 'Hello from second plugin!'
        }
    
        def "emits deprecation warning when #useCase from plugins block"() {
    
            String taskName = 'greet'
            String message = 'Hello from plugin!'
            String pluginId = 'com.acme.greeter'
            String pluginVersion = '1.5'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/permissions.kt

     * one [analyze][org.jetbrains.kotlin.analysis.api.analyze] session.
     * Example:
     * ```
     * // code to be analyzed
     * fun foo(): Int = 0
     *
     * // use case code
     * fun useCase() {
     *   analyse(function) {
     *    // 'getConstantFromExpressionBody' is an imaginary function
     *    val valueBefore = function.getConstantFromExpressionBody() // valueBefore is 0
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            file("output").assertHasDescendants("file1.txt", "file3.txt")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/17542")
        def "can map task generated FC to a filtered List of Directory (#useCase)"() {
            given:
            buildFile """
                import static org.gradle.util.internal.TextUtil.normaliseFileSeparators
    
                abstract class Producer extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/util.cc

      } else if (index_vector_dim != indices_type.getRank() - 1) {
        // If index_vector_dim isn't the last dimension in indices then it isn't
        // supported yet.
        // TODO(tberghammer): Transpose indices to support this usecase.
        return rewriter.notifyMatchFailure(
            parent_op,
            "index vector dim isn't the last dimension in start indices");
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. cmd/api-router.go

    					host = r.Host
    				}
    				// Make sure to skip matching minio.<domain>` this is
    				// specifically meant for operator/k8s deployment
    				// The reason we need to skip this is for a special
    				// usecase where we need to make sure that
    				// minio.<namespace>.svc.<cluster_domain> is ignored
    				// by the bucketDNS style to ensure that path style
    				// is available and honored at this domain.
    				//
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        This pass sets the device ordinal attribute of the ops using the replica id
        attribute. This is run immediately after the replica_to_island pass which
        sets the replica id attribute of these ops. Note for single chip usecase,
        the pass will check if there is one op and sets the device ordinal attribute
        to be zero.
      }];
    }
    
    def ConvertReadonlyReferenceVariablesToResourceVariablesPass :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    This pass sets the device ordinal attribute of the ops using the replica id
    attribute. This is run immediately after the replica_to_island pass which
    sets the replica id attribute of these ops. Note for single chip usecase,
    the pass will check if there is one op and sets the device ordinal attribute
    to be zero.
    ### `-tf-replicate-invariant-op-hoisting`
    
    _Hoists replicate invariant operations out of replicate_
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  9. docs_src/extra_models/tutorial002.py

    from fastapi import FastAPI
    from pydantic import BaseModel, EmailStr
    
    app = FastAPI()
    
    
    class UserBase(BaseModel):
        username: str
        email: EmailStr
        full_name: Union[str, None] = None
    
    
    class UserIn(UserBase):
        password: str
    
    
    class UserOut(UserBase):
        pass
    
    
    class UserInDB(UserBase):
        hashed_password: str
    
    
    def fake_password_hasher(raw_password: str):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 824 bytes
    - Viewed (0)
  10. docs_src/sql_databases/sql_app/schemas.py

        pass
    
    
    class Item(ItemBase):
        id: int
        owner_id: int
    
        class Config:
            orm_mode = True
    
    
    class UserBase(BaseModel):
        email: str
    
    
    class UserCreate(UserBase):
        password: str
    
    
    class User(UserBase):
        id: int
        is_active: bool
        items: List[Item] = []
    
        class Config:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 502 bytes
    - Viewed (0)
Back to top