Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 105 for descriptor (0.16 sec)

  1. cmd/iam-store.go

    			return updatedAt, auth.ErrInvalidSecretKeyLength
    		}
    		cr.SecretKey = opts.secretKey
    	}
    
    	if opts.name != "" {
    		cr.Name = opts.name
    	}
    
    	if opts.description != "" {
    		cr.Description = opts.description
    	}
    
    	if opts.expiration != nil {
    		expirationInUTC := opts.expiration.UTC()
    		if err := validateSvcExpirationInUTC(expirationInUTC); err != nil {
    			return updatedAt, err
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      module->setAttr("tfl.schema_version",
                      builder.getI32IntegerAttr(model->version));
      if (!model->description.empty()) {
        module->setAttr("tfl.description",
                        builder.getStringAttr(model->description));
      }
    
      if (!metadata_attrs.empty()) {
        module->setAttr("tfl.metadata", builder.getDictionaryAttr(metadata_attrs));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	}
    
    	for description, csiDriver := range map[string]*storagev1.CSIDriver{
    		"no CSIDriver":                        nil,
    		"CSIDriver with capacity tracking":    makeCSIDriver(provisioner, true),
    		"CSIDriver without capacity tracking": makeCSIDriver(provisioner, false),
    	} {
    		t.Run(description, func(t *testing.T) {
    			for name, scenario := range scenarios {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional string status = 2;
    
      // A human-readable description of the status of this operation.
      // +optional
      optional string message = 3;
    
      // A machine-readable description of why this operation is in the
      // "Failure" status. If this value is empty there
      // is no information available. A Reason clarifies an HTTP status
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional string status = 2;
    
      // A human-readable description of the status of this operation.
      // +optional
      optional string message = 3;
    
      // A machine-readable description of why this operation is in the
      // "Failure" status. If this value is empty there
      // is no information available. A Reason clarifies an HTTP status
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func AddKey(keyType string, description string, payload []byte, ringid int) (id int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(keyType)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(description)
    	if err != nil {
    		return
    	}
    	var _p2 unsafe.Pointer
    	if len(payload) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        }
    
        public DistributionManagement getDistributionManagement() {
            return getModel().getDistributionManagement();
        }
    
        public void setDescription(String description) {
            getModel().setDescription(description);
        }
    
        public String getDescription() {
            return getModel().getDescription();
        }
    
        public void setOrganization(Organization organization) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

     * <table border="1" cellpadding="3" cellspacing="0" width="100%" summary="URL examples">
     * <tr bgcolor="#ccccff">
     * <td colspan="2"><b>SMB URL Examples</b></td>
     * <tr>
     * <td width="20%"><b>URL</b></td>
     * <td><b>Description</b></td>
     * </tr>
     * 
     * <tr>
     * <td width="20%"><code>smb://users-nyc;miallen:mypass@angus/tmp/</code></td>
     * <td>
     * This URL references a share called <code>tmp</code> on the server
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    // Go JSON behavior for omitting a field) become query parameters. The name of the query parameter is
    // the JSON field name. If a description struct tag is set on the field, that description is used on the
    // query parameter. In essence, it converts a standard JSON top level object into a query param schema.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            0 * _
    
            where:
            getter      | _
            "get"       | _
            "getOrNull" | _
            "getOrElse" | _
        }
    
        def "runs side effect when getting #description"() {
            def valueSideEffect = Mock(ValueSupplier.SideEffect)
    
            when:
            property.put("some key", Providers.of("some value").withSideEffect(valueSideEffect))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
Back to top