Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for fanout (0.14 sec)

  1. docs/bucket/notifications/README.md

    ```sh
    mc admin config set myminio/ notify_amqp:1 exchange="bucketevents" exchange_type="fanout" mandatory="off" no_wait="off"  url="amqp://myuser:mypassword@localhost:5672" auto_deleted="off" delivery_mode="0" durable="off" internal="off" routing_key="bucketlogs"
    ```
    
    MinIO supports all the exchanges available in [RabbitMQ](https://www.rabbitmq.com/). For this setup, we are using `fanout` exchange.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    			writeErrorResponse(ctx, w, apiErr, r.URL)
    			return
    		}
    
    		var b bytes.Buffer
    		if name != "file" {
    			if http.CanonicalHeaderKey(name) == http.CanonicalHeaderKey("x-minio-fanout-list") {
    				dec := json.NewDecoder(part)
    
    				// while the array contains values
    				for dec.More() {
    					var m minio.PutObjectFanOutEntry
    					if err := dec.Decode(&m); err != nil {
    						part.Close()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. src/time/format.go

    			if len(layout) >= i+2 && '1' <= layout[i+1] && layout[i+1] <= '6' {
    				return layout[0:i], std0x[layout[i+1]-'1'], layout[i+2:]
    			}
    			if len(layout) >= i+3 && layout[i+1] == '0' && layout[i+2] == '2' {
    				return layout[0:i], stdZeroYearDay, layout[i+3:]
    			}
    
    		case '1': // 15, 1
    			if len(layout) >= i+2 && layout[i+1] == '5' {
    				return layout[0:i], stdHour, layout[i+2:]
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    === Example: C++ source set
    
    [source.multi-language-sample,groovy,indent=0]
    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/custom-layout/groovy/build.gradle[tag=cpp-sources]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

        archivesName.set("gradle")
        distsDirectory.set(layout.buildDirectory.dir("custom-dist"))
        libsDirectory.set(layout.buildDirectory.dir("custom-libs"))
    }
    ----
    =====
    [.multi-language-sample]
    =====
    .build.gradle
    [source,groovy]
    ----
    plugins {
        id 'base'
    }
    
    base {
        archivesName = "gradle"
        distsDirectory = layout.buildDirectory.dir('custom-dist')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    configurations { create("default") }
                    task producer(type: FileProducer) {
                        content = providers.systemProperty("\${project.name}Content").orElse("content")
                        output = layout.buildDirectory.file("\${project.name}.out")
                    }
                    configurations.default.outgoing.artifact(producer.output)
                }
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/javadoc.css

        margin: auto 5px;
    }
    .skip-nav {
        position:absolute;
        top:auto;
        left:-9999px;
        overflow:hidden;
    }
    /*
     * Hide navigation links and search box in print layout
     */
    @media print {
        ul.nav-list, div.sub-nav  {
            display:none;
        }
    }
    /*
     * Styles for page header.
     */
    .title {
        color:var(--title-color);
        margin:10px 0;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  8. fastapi/param_functions.py

                OpenAPI-specific examples than the JSON Schema `examples`, that's the main
                use case for this.
    
                Read more about it in the
                [FastAPI docs for Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#using-the-openapi_examples-parameter).
                """
            ),
        ] = None,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    			})
    		}
    	}
    	return imports
    }
    
    func dynimport(obj string) {
    	stdout := os.Stdout
    	if *dynout != "" {
    		f, err := os.Create(*dynout)
    		if err != nil {
    			fatalf("%s", err)
    		}
    		defer func() {
    			if err = f.Close(); err != nil {
    				fatalf("error closing %s: %v", *dynout, err)
    			}
    		}()
    
    		stdout = f
    	}
    
    	fmt.Fprintf(stdout, "package %s\n", *dynpackage)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    			// Special C name for Go string type.
    			// Knows string layout used by compilers: pointer plus length,
    			// which rounds up to 2 pointers after alignment.
    			t.Go = c.string
    			t.Size = c.ptrSize * 2
    			t.Align = c.ptrSize
    			break
    		}
    		if dt.Name == "_GoBytes_" {
    			// Special C name for Go []byte type.
    			// Knows slice layout used by compilers: pointer, length, cap.
    			t.Go = c.Ident("[]byte")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top