Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 560 for Usages (0.03 sec)

  1. docs/pt/docs/tutorial/body-nested-models.md

    1. "metal",
    2. "bar"
    3. ],
    4. "images": [
    5. {
    6. "url": "http://example.com/baz.jpg",
    7. "name": "The Foo live"
    8. },
    9. {
    10. "url": "http://example.com/dave.jpg",
    11. "name": "The Baz"
    12. }
    13. ]
    14. }
    15. ```
    16.  
    17. /// info | "informação"
    18.  
    19. Note como o campo `images` agora tem uma lista de objetos de image.
    20.  
    21. ///
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. internal/event/config_test.go

    1. rulesMapCase2 := NewRulesMap([]Name{ObjectCreatedPut}, "images/*jpg", TargetID{"1", "webhook"})
    2.  
    3. rulesMapCase3 := NewRulesMap([]Name{ObjectAccessedAll, ObjectCreatedAll, ObjectRemovedAll}, "*", TargetID{"1", "webhook"})
    4. rulesMapCase3.add([]Name{ObjectCreatedPut}, "images/*jpg", TargetID{"2", "amqp"})
    5.  
    6. testCases := []struct {
    7. config *Config
    8. expectedResult RulesMap
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Dec 05 10:16:33 UTC 2023
    - 29K bytes
    - Viewed (0)
  3. docs/distributed/iam-import-with-missing-entities.sh

    1. cp docs/distributed/samples/bootstrap-complete.ldif minio-iam-testing/ldap/50-bootstrap.ldif || exit 1
    2. cd ./minio-iam-testing
    3. make docker-images
    4. make docker-run
    5. cd -
    6.  
    7. export MC_HOST_myminio="http://minioadmin:minioadmin@localhost:22000"
    8. export MC_HOST_myminio1="http://minioadmin:minioadmin@localhost:24000"
    9.  
    10. # Start MinIO instance
    11. export CI=true
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 15:59:00 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/graal/OkHttpFeature.kt

    1. import org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
    2. import org.graalvm.nativeimage.hosted.Feature
    3. import org.graalvm.nativeimage.hosted.RuntimeResourceAccess
    4.  
    5. /**
    6. * Automatic configuration of OkHttp for native images.
    7. *
    8. * Currently, includes all necessary resources.
    9. */
    10. class OkHttpFeature : Feature {
    11. @IgnoreJRERequirement
    12. override fun beforeAnalysis(access: Feature.BeforeAnalysisAccess?) {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. .teamcity/src/test/kotlin/BuildScanTagUtilsTest.kt

    1. model.stages[0].getBuildScanCustomValueParam()
    2. )
    3. assertEquals(
    4. "-DbuildScan.PartOf=QuickFeedback,PullRequestFeedback,ReadyforNightly,ReadyforRelease",
    5. model.stages[1].getBuildScanCustomValueParam()
    6. )
    7. assertEquals(
    8. "-DbuildScan.PartOf=ReadyforRelease",
    9. model.stages[4].getBuildScanCustomValueParam()
    10. )
    11. }
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon Sep 30 07:24:00 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/PACTest.java

    1. */
    2. private static void verifyAESMAC ( int usage, String expect, String data, String key ) throws GeneralSecurityException {
    3. verifyAESHMAC(usage, expect, key, Hex.decode(data));
    4. }
    5.  
    6.  
    7. private static void verifyArcfourHMAC ( int usage, String expect, String data, String key ) throws GeneralSecurityException {
    8. verifyArcfourHMAC(usage, expect, key, Hex.decode(data));
    9. }
    10.  
    11.  
    12. /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

    1. * when making decisions, they may crawl pages marked "hourly" less
    2. * frequently than that, and they may crawl pages marked "yearly" more
    3. * frequently than that. Crawlers may periodically crawl pages marked
    4. * "never" so that they can handle unexpected changes to those pages.
    5. */
    6. private String changefreq;
    7.  
    8. /**
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

    1. assertEquals(model.stages.size, stagePassConfigs.size)
    2. stagePassConfigs.forEach {
    3. val stageNumber = stagePassConfigs.indexOf(it) + 1
    4. val stage = model.stages[stageNumber - 1]
    5. val prevStage = if (stageNumber > 1) model.stages[stageNumber - 2] else null
    6.  
    7. if (stage.runsIndependent) {
    8. return@forEach
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Jul 18 07:02:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/cmd/buildid/buildid.go

    1. "cmd/internal/buildid"
    2. "cmd/internal/telemetry/counter"
    3. )
    4.  
    5. func usage() {
    6. fmt.Fprintf(os.Stderr, "usage: go tool buildid [-w] file\n")
    7. flag.PrintDefaults()
    8. os.Exit(2)
    9. }
    10.  
    11. var wflag = flag.Bool("w", false, "write build ID")
    12.  
    13. func main() {
    14. log.SetPrefix("buildid: ")
    15. log.SetFlags(0)
    16. counter.Open()
    17. flag.Usage = usage
    18. flag.Parse()
    19. counter.Inc("buildid/invocations")
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Jun 21 19:58:04 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. cmd/fmt-gen.go

    1. )
    2.  
    3. var fmtGenFlags = []cli.Flag{
    4. cli.IntFlag{
    5. Name: "parity",
    6. Usage: "specify erasure code parity",
    7. },
    8. cli.StringFlag{
    9. Name: "deployment-id",
    10. Usage: "deployment-id of the MinIO cluster for which format.json is needed",
    11. },
    12. cli.StringFlag{
    13. Name: "address",
    14. Value: ":" + GlobalMinioDefaultPort,
    15. Usage: "bind to a specific ADDRESS:PORT, ADDRESS can be an IP or hostname",
    16. EnvVar: "MINIO_ADDRESS",
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 13 22:22:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top