Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for __typeof (0.66 sec)

  1. cmd/postpolicyform.go

    				return parsedPolicy, fmt.Errorf("Unknown type %s of conditional field value %s found in POST policy form",
    					reflect.TypeOf(condt).String(), condt)
    			}
    		default:
    			return parsedPolicy, fmt.Errorf("Unknown field %s of type %s found in POST policy form",
    				condt, reflect.TypeOf(condt).String())
    		}
    	}
    	return parsedPolicy, nil
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 19 16:45:54 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  2. .cm/plugins/filters/byCodeowner/index.js

                console.log("Resolving owners for: " + f);
                const owners = resolveCodeowners(mapping, f);
                console.log("Owners for: " + f + " are: " + owners);
                owners.filter(i => typeof i === 'string')
                    .map(u => u.replace(/^@gradle\//, ""))
                    .forEach(owner => {
                        if (!result.has(owner)) {
                            result.set(owner, []);
                        }
    JavaScript
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon Apr 22 19:12:32 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  3. helm/minio/templates/statefulset.yaml

              securityContext:
                readOnlyRootFilesystem: {{ .Values.securityContext.readOnlyRootFilesystem | default false }}
              {{- end }}
            {{- with .Values.extraContainers }}
              {{- if eq (typeOf .) "string" }}
                {{- tpl . $ | nindent 8 }}
              {{- else }}
                {{- toYaml . | nindent 8 }}
              {{- end }}
            {{- end }}
          {{- with .Values.nodeSelector }}
    Others
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 26 07:50:24 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  4. internal/logger/logger.go

    			return
    		}
    	}
    	logIf(ctx, subsystem, err)
    }
    
    func errToEntry(ctx context.Context, subsystem string, err error, errKind ...interface{}) log.Entry {
    	var l string
    	if anonFlag {
    		l = reflect.TypeOf(err).String()
    	} else {
    		l = fmt.Sprintf("%v (%T)", err, err)
    	}
    	return buildLogEntry(ctx, subsystem, l, getTrace(3), errKind...)
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat May 04 00:17:57 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    	r = r*1664525 + 1013904223
    	randN = r
    	randmu.Unlock()
    	return strconv.Itoa(int(1e9 + r%1e9))[1:]
    }
    
    // isSameType - compares two object types via reflect.TypeOf
    func isSameType(obj1, obj2 interface{}) bool {
    	return reflect.TypeOf(obj1) == reflect.TypeOf(obj2)
    }
    
    // TestServer encapsulates an instantiation of a MinIO instance with a temporary backend.
    // Example usage:
    //
    //	s := StartTestServer(t,"Erasure")
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
  6. doc/go_spec.html

    	<br>
    	<code>typeof(v) ≡<sub>A</sub> typeof(f)</code>.
    	</p>
    </li>
    <li>
    	<p>
    	For a return statement <code>return …, f, … </code> where <code>f</code> is a
    	generic function returned as a result to a (non-generic) result variable
    	<code>r</code> of function type:
    	<br>
    	<code>typeof(r) ≡<sub>A</sub> typeof(f)</code>.
    	</p>
    </li>
    </ul>
    
    <p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  7. helm-releases/minio-5.2.0.tgz

    athPrefix }} {{- end }} {{- end }} {{- range $key, $val := .Values.environment }} - name: {{ $key }} value: {{ tpl $val $ | quote }} {{- end }} resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.extraContainers }} {{- if eq (typeOf .) "string" }} {{- tpl . $ | nindent 8 }} {{- else }} {{- toYaml . | nindent 8 }} {{- end }} {{- end }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- include "minio.imagePullSecrets" . | indent 6 }} {{-...
    Others
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 10:14:37 GMT 2024
    - 21.7K bytes
    - Viewed (0)
Back to top