Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 272 for forPath (0.21 sec)

  1. src/time/format.go

    // when used with time.Parse they do not accept all the time formats
    // permitted by the RFCs and they do accept time formats not formally defined.
    // The [RFC3339Nano] format removes trailing zeros from the seconds field
    // and thus may not sort correctly once formatted.
    //
    // Most programs can use one of the defined constants as the layout passed to
    // Format or Parse. The rest of this comment can be ignored unless you are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2.go

    	"github.com/tinylib/msgp/msgp"
    )
    
    var (
    	// XL header specifies the format
    	xlHeader = [4]byte{'X', 'L', '2', ' '}
    
    	// Current version being written.
    	xlVersionCurrent [4]byte
    )
    
    //go:generate msgp -file=$GOFILE -unexported
    //go:generate stringer -type VersionType,ErasureAlgo -output=xl-storage-format-v2_string.go $GOFILE
    
    const (
    	// Breaking changes.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2_gen.go

    Klaus Post <******@****.***> 1717010049 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

          format /^(?<time>.+) (?<stream>stdout|stderr) [^ ]* (?<log>.*)$/
          time_format %Y-%m-%dT%H:%M:%S.%N%:z
        </pattern>
      </parse>
    </source>
    # Example:
    # I0204 07:32:30.020537    3368 server.go:1048] POST /stats/container/: (13.972191ms) 200 [[Go-http-client/1.1] 10.244.1.3:40537]
    <source>
      @type tail
      format multiline
      multiline_flush_interval 5s
      format_firstline /^\w\d{4}/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            final List<String> list = new ArrayList<>(fields.length + 10);
            stream(fields).of(stream -> stream.forEach(list::add));
            split(getQueryAdditionalResponseFields(), ",")
                    .of(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim).forEach(list::add));
            return list.toArray(new String[list.size()]);
        }
    
        String getQueryAdditionalScrollResponseFields();
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                            stream(user.getGroupNames()).of(stream -> stream.forEach(name -> {
                                if (oldGroupList.contains(name)) {
                                    oldGroupList.remove(name);
                                    newGroupList.remove(name);
                                }
                            }));
                            oldGroupList.stream().forEach(name -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. src/fmt/fmt_test.go

    			"[%07.2f]",
    			"[% 07.2f]",
    			"[%+07.2f]",
    			"[% +07.2f]"
    		};
    
    		int main(void) {
    			int i;
    			for(i = 0; i < 11; i++) {
    				printf("%s: ", format[i]);
    				printf(format[i], 1.0);
    				printf(" ");
    				printf(format[i], -1.0);
    				printf("\n");
    			}
    		}
    
    		Output:
    			[%.2f]: [1.00] [-1.00]
    			[% .2f]: [ 1.00] [-1.00]
    			[%+.2f]: [+1.00] [-1.00]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

            },
            "maxItems": { "type": "integer", "format": "int64" },
            "maxLength": { "type": "integer", "format": "int64" },
            "maxProperties": { "type": "integer", "format": "int64" },
            "maximum": { "type": "number", "format": "double" },
            "minItems": { "type": "integer", "format": "int64" },
            "minLength": { "type": "integer", "format": "int64" },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  9. docs/bucket/notifications/README.md

    ## Publish MinIO events via Redis
    
    Install [Redis](http://redis.io/download) server. For illustrative purposes, we have set the database password as "yoursecret".
    
    This notification target supports two formats: _namespace_ and _access_.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsScheduledJobCA.java

                opLambda.callback(builder);
            }
            if (aggsLambda != null) {
                ScheduledJobCA ca = new ScheduledJobCA();
                aggsLambda.callback(ca);
                ca.getAggregationBuilderList().forEach(builder::subAggregation);
            }
        }
    
        public void global(String name, ConditionOptionCall<GlobalAggregationBuilder> opLambda, OperatorCall<BsScheduledJobCA> aggsLambda) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 89.1K bytes
    - Viewed (0)
Back to top