Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2801 - 2810 of 6,120 for stringy (0.05 sec)

  1. cmd/xl-storage-format-v1_gen.go

    	if zb0001Len == 0 {
    		return
    	}
    	// string "e"
    	o = append(o, 0xa1, 0x65)
    	o = msgp.AppendString(o, z.ETag)
    	// string "n"
    	o = append(o, 0xa1, 0x6e)
    	o = msgp.AppendInt(o, z.Number)
    	// string "s"
    	o = append(o, 0xa1, 0x73)
    	o = msgp.AppendInt64(o, z.Size)
    	// string "as"
    	o = append(o, 0xa2, 0x61, 0x73)
    	o = msgp.AppendInt64(o, z.ActualSize)
    	// string "mt"
    	o = append(o, 0xa2, 0x6d, 0x74)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. cmd/format-erasure_test.go

    				formatMetaV1: formatMetaV1{
    					Version: "2",
    					Format:  "Erasure",
    				},
    				Erasure: struct {
    					Version          string     `json:"version"`
    					This             string     `json:"this"`
    					Sets             [][]string `json:"sets"`
    					DistributionAlgo string     `json:"distributionAlgo"`
    				}{
    					Version: "2",
    				},
    			},
    			false,
    		},
    		// Invalid Erasure format "Unknown".
    		{
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Apr 15 08:25:46 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. cmd/prepare-storage.go

    	var mutex sync.Mutex
    	printOnce := make(map[Endpoint]map[string]int)
    
    	return func(endpoint Endpoint, err error, once bool) {
    		reqInfo := (&logger.ReqInfo{}).AppendTags("endpoint", endpoint.String())
    		ctx := logger.SetReqInfo(GlobalContext, reqInfo)
    		mutex.Lock()
    		defer mutex.Unlock()
    
    		m, ok := printOnce[endpoint]
    		if !ok {
    			m = make(map[string]int)
    			printOnce[endpoint] = m
    			if once {
    				m[err.Error()]++
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jul 12 20:51:54 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. internal/event/target/nats.go

    type NATSArgs struct {
    	Enable          bool      `json:"enable"`
    	Address         xnet.Host `json:"address"`
    	Subject         string    `json:"subject"`
    	Username        string    `json:"username"`
    	UserCredentials string    `json:"userCredentials"`
    	Password        string    `json:"password"`
    	Token           string    `json:"token"`
    	TLS             bool      `json:"tls"`
    	TLSSkipVerify   bool      `json:"tlsSkipVerify"`
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/certificates/v1/generated.proto

      //
      // Only one condition of a given type is allowed.
      optional string type = 1;
    
      // status of the condition, one of True, False, Unknown.
      // Approved, Denied, and Failed conditions may not be "False" or "Unknown".
      optional string status = 6;
    
      // reason indicates a brief reason for the request state
      // +optional
      optional string reason = 2;
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. internal/s3select/jstream/decoder_test.go

    		counter int
    		mv      *MetaValue
    		body    = `[
      "1st test string",
      "Roberto*Maestro", "Charles",
      0, null, false,
      1, 2.5
    ]`
    		expected = []struct {
    			Value     interface{}
    			ValueType ValueType
    		}{
    			{
    				"1st test string",
    				String,
    			},
    			{
    				"Roberto*Maestro",
    				String,
    			},
    			{
    				"Charles",
    				String,
    			},
    			{
    				0.0,
    				Number,
    			},
    			{
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 23 19:35:41 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

      // +optional
      optional string group = 1;
    
      // Resource is the resource of the object being referenced.
      // +required
      optional string resource = 2;
    
      // Namespace is the namespace of the object being referenced.
      // +optional
      optional string namespace = 3;
    
      // Name is the name of the object being referenced.
      // +required
      optional string name = 4;
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/query/PrefixQueryCommand.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String field = getSearchField(context.getDefaultField(), prefixQuery.getField());
            final String text = prefixQuery.getPrefix().text();
    
            if (Constants.DEFAULT_FIELD.equals(field)) {
                context.addFieldLog(field, text + "*");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_request_files/test_tutorial001_02_py310.py

                                "items": {
                                    "anyOf": [{"type": "string"}, {"type": "integer"}]
                                },
                            },
                            "msg": {"title": "Message", "type": "string"},
                            "type": {"title": "Error Type", "type": "string"},
                        },
                    },
                }
            },
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java

     */
    @Deprecated
    public class ExpressionDocumenter {
    
        private static final String[] EXPRESSION_ROOTS = {"project", "settings", "session", "plugin", "rootless"};
    
        private static final String EXPRESSION_DOCO_ROOTPATH = "META-INF/maven/plugin-expressions/";
    
        private static Map<String, Expression> expressionDocumentation;
    
        public static Map<String, Expression> load() throws ExpressionDocumentationException {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top