Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,431 for uniqueId (0.16 sec)

  1. pkg/config/schema/resource/schema.go

    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/validation"
    )
    
    // Schema for a resource.
    type Schema interface {
    	fmt.Stringer
    
    	// GroupVersionKind of the resource. This is the only way to uniquely identify a resource.
    	GroupVersionKind() config.GroupVersionKind
    
    	// GroupVersionResource of the resource.
    	GroupVersionResource() schema.GroupVersionResource
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. docs/fr/docs/advanced/path-operation-advanced-configuration.md

    Vous devez vous assurer qu'il est unique pour chaque opération.
    
    ```Python hl_lines="6"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. schema/index_test.go

    }
    
    func TestParseIndexWithUniqueIndexAndUnique(t *testing.T) {
    	type IndexTest struct {
    		FieldA string `gorm:"unique;index"` // unique and index
    		FieldB string `gorm:"unique"`       // unique
    
    		FieldC string `gorm:"index:,unique"`     // uniqueIndex
    		FieldD string `gorm:"uniqueIndex;index"` // uniqueIndex and index
    
    		FieldE1 string `gorm:"uniqueIndex:uniq_field_e1_e2"` // mul uniqueIndex
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	GetCompiledMatcher(compiler cel.FilterCompiler) matchconditions.Matcher
    
    	// GetName gets the webhook Name field. Note that the name is scoped to the webhook
    	// configuration and does not provide a globally unique identity, if a unique identity is
    	// needed, use GetUID.
    	GetName() string
    	// GetClientConfig gets the webhook ClientConfig field.
    	GetClientConfig() v1.WebhookClientConfig
    	// GetRules gets the webhook Rules field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DefaultDependencyLockingProviderTest.groovy

            1 * listener.fileObserved(_)
            if (!unique) {
                1 * listener.fileObserved(_)
            }
    
            where:
            unique << [true, false]
        }
    
        def 'can load lockfile as prefer constraints in update mode (Unique: #unique)'() {
            given:
            startParameter = Mock()
            startParameter.isWriteDependencyLocks() >> true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalOperationDescriptor.java

     */
    public interface InternalOperationDescriptor extends InternalProtocolInterface {
    
        /**
         * Returns an id that uniquely identifies the operation.
         */
        Object getId();
    
        /**
         * Returns the name of the operation, relative to its parent. This name should generally uniquely identify to
         * a human each child operation of a given operation.
         */
        String getName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authentication/v1beta1/types.go

    }
    
    // UserInfo holds the information about the user needed to implement the
    // user.Info interface.
    type UserInfo struct {
    	// The name that uniquely identifies this user among all active users.
    	// +optional
    	Username string `json:"username,omitempty" protobuf:"bytes,1,opt,name=username"`
    	// A unique value that identifies this user across time. If this user is
    	// deleted and another user by the same name is added, they will have
    	// different UIDs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/AbstractLockingIntegrationTest.groovy

        }
    
        def 'updates part of the lockfile (initial unique: #unique)'() {
            mavenRepo.module('org', 'foo', '1.0').publish()
            mavenRepo.module('org', 'foo', '1.1').publish()
            mavenRepo.module('org', 'bar', '1.0').publish()
            mavenRepo.module('org', 'bar', '1.1').publish()
    
            lockfileFixture.createLockfile('lockedConf', ['org:foo:1.0', 'org:bar:1.0'], unique)
    
            buildFile << """
    dependencyLocking {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/AbstractValidatingLockingIntegrationTest.groovy

    }
    """
    
            lockfileFixture.createLockfile('lockedConf',['org:bar:1.0', 'org:foo:1.0'], unique)
    
            expect:
            succeeds 'checkDeps'
    
            where:
            unique << [true, false]
        }
    
        def 'does not fail when resolution result contains ignored dependency (unique: #unique)'() {
            mavenRepo.module('org', 'foo', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

    }
    
    
    def TF_IfrtCallOp : TF_Op<"IfrtCall", []> {
      let summary = "Invokes a program via IFRT on a device";
    
      let description = [{
        This op calls an IFRT program uniquely identified by the given program id.
    
        During lowering from a `tf_device.cluster_func` op to a `tf.IfrtCall` op,
        the region owned by the former will be outlined to a function with a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top