Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for name (0.19 sec)

  1. tests/query_test.go

    	if result.ID != 0 {
    		t.Errorf("Should not have ID because only selected name, %+v", result.ID)
    	}
    
    	if user.Name != result.Name {
    		t.Errorf("Should have user Name when selected it")
    	}
    
    	var result2 User
    	DB.Where("name = ?", user.Name).Select("name as name").Find(&result2)
    	if result2.ID != 0 {
    		t.Errorf("Should not have ID because only selected name, %+v", result2.ID)
    	}
    
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Thu Apr 25 12:22:53 GMT 2024
    - 49.8K bytes
    - Viewed (0)
  2. index.yaml

        icon: https://min.io/resources/img/logo/MINIO_wordmark.png
        keywords:
        - minio
        - storage
        - object-storage
        - s3
        - cluster
        maintainers:
        - email: ******@****.***
          name: MinIO, Inc
        name: minio
        sources:
        - https://github.com/minio/minio
        urls:
        - https://charts.min.io/helm-releases/minio-5.2.0.tgz
        version: 5.2.0
      - apiVersion: v1
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 10:14:37 GMT 2024
    - 53.9K bytes
    - Viewed (0)
  3. cmd/admin-handlers-users.go

    				versionsHist = dataUsageInfo.BucketsUsage[bucket.Name].ObjectVersionsHistogram
    			}
    			// Fetch the prefix usage of the current bucket
    			var prefixUsage map[string]uint64
    			if enablePrefixUsage {
    				prefixUsage, _ = loadPrefixUsageFromBackend(ctx, objectAPI, bucket.Name)
    			}
    
    			lcfg, _ := globalBucketObjectLockSys.Get(bucket.Name)
    			quota, _ := globalBucketQuotaSys.Get(ctx, bucket.Name)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 77.3K bytes
    - Viewed (0)
  4. cmd/iam-store.go

    }
    
    func getPolicyDocPath(name string) string {
    	return pathJoin(iamConfigPoliciesPrefix, name, iamPolicyFile)
    }
    
    func getMappedPolicyPath(name string, userType IAMUserType, isGroup bool) string {
    	if isGroup {
    		return pathJoin(iamConfigPolicyDBGroupsPrefix, name+".json")
    	}
    	switch userType {
    	case svcUser:
    		return pathJoin(iamConfigPolicyDBServiceAccountsPrefix, name+".json")
    	case stsUser:
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                    scope.getFunctions(name).mapTo(this) { AvailableSymbol(it, importKind) }
                }
            }
        }
    
        fun findPropertiesInScopes(scopes: List<FirScope>, name: Name): List<AvailableSymbol<FirVariableSymbol<*>>> {
            return scopes.flatMap { scope ->
                val importKind = ImportKind.fromScope(scope)
                scope.getProperties(name).map {
                    AvailableSymbol(it, importKind)
                }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  6. cmd/bucket-handlers.go

    	// This means that domain is updated, we should update
    	// all bucket entries with new domain name.
    	domainMissing := err == dns.ErrDomainMissing
    	if dnsBuckets != nil {
    		for _, bucket := range buckets {
    			bucketsSet.Add(bucket.Name)
    			r, ok := dnsBuckets[bucket.Name]
    			if !ok {
    				bucketsToBeUpdated.Add(bucket.Name)
    				continue
    			}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 16:27:27 GMT 2024
    - 61.6K bytes
    - Viewed (0)
  7. cmd/erasure-server-pool.go

    							}
    							if opts.Filter != nil {
    								if opts.Filter(fi) {
    									if !send(fi.ToObjectInfo(bucket, fi.Name, vcfg != nil && vcfg.Versioned(fi.Name))) {
    										return
    									}
    								}
    							} else {
    								if !send(fi.ToObjectInfo(bucket, fi.Name, vcfg != nil && vcfg.Versioned(fi.Name))) {
    									return
    								}
    							}
    
    						} else {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 80.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCallResolver.kt

            val paramSignatureByName = signatureOfCallee.valueParameters.associateBy {
                // We intentionally use `symbol.name` instead of `name` here, since
                // `FirValueParameter.name` is not affected by the `@ParameterName`
                it.symbol.name
            }
            val ktArgumentMapping = LinkedHashMap<KtExpression, KtVariableLikeSignature<KtValueParameterSymbol>>()
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 70.8K bytes
    - Viewed (1)
  9. cmd/iam.go

    // has the same name as the value of this field.
    //
    // - from special JWT claim from STS request for AssumeRoleWithOIDC API (when
    // not using RoleARN). The claim value can be a string or a list and refers to
    // the names of access policies.
    //
    // For all except the RoleARN case, the implementation is the same - the policy
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 71.1K bytes
    - Viewed (1)
  10. cmd/xl-storage.go

    					return stat, convertAccessError(verr, errVolumeAccessDenied)
    				}
    			}
    			return stat, errPathNotFound
    		}
    		name, err := filepath.Rel(volumeDir, filePath)
    		if err != nil {
    			name = filePath
    		}
    		stat = append(stat, StatInfo{
    			Name:    filepath.ToSlash(name),
    			Size:    st.Size(),
    			Dir:     st.IsDir(),
    			Mode:    uint32(st.Mode()),
    			ModTime: st.ModTime(),
    		})
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
Back to top