Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for expose (0.24 sec)

  1. cmd/metrics-v2.go

    				return
    			}
    		}
    	}
    }
    
    // Collect is called by the Prometheus registry when collecting metrics.
    func (c *minioNodeCollector) Collect(ch chan<- prometheus.Metric) {
    	// Expose MinIO's version information
    	minioVersionInfo.WithLabelValues(Version, CommitID).Set(1.0)
    
    	populateAndPublish(c.metricsGroups, func(metric MetricV2) bool {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.4.md

          * all docker labels were exported as `container_label_*=*`
        * New behavior:
          * Only `container_name`, `pod_name`, `namespace`, `id`, `image`, and `name` labels are exposed
          * no environment variables will be exposed ever via /metrics, even if whitelisted
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
  3. cmd/server_test.go

    	expectedMap := http.Header{}
    	expectedMap.Set("Access-Control-Allow-Credentials", "true")
    	expectedMap.Set("Access-Control-Allow-Origin", "http://foobar.com")
    	expectedMap["Access-Control-Expose-Headers"] = []string{
    		"Date",
    		"Etag",
    		"Server",
    		"Connection",
    		"Accept-Ranges",
    		"Content-Range",
    		"Content-Encoding",
    		"Content-Length",
    		"Content-Type",
    		"Content-Disposition",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.5.md

          * all docker labels were exported as `container_label_*=*`
        * New behavior:
          * Only `container_name`, `pod_name`, `namespace`, `id`, `image`, and `name` labels are exposed
          * no environment variables will be exposed ever via /metrics, even if whitelisted
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

            )
        }
        add(FirErrors.EXPOSED_TYPEALIAS_EXPANDED_TYPE) { firDiagnostic ->
            ExposedTypealiasExpandedTypeImpl(
                firDiagnostic.a,
                firSymbolBuilder.buildSymbol(firDiagnostic.b),
                firDiagnostic.c,
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.EXPOSED_FUNCTION_RETURN_TYPE) { firDiagnostic ->
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    DEFAULT - IPTABLES - NONE type: string hosts: description: One or more service hosts exposed by the listener in `namespace/dnsName` format. items: type: string type: array port: description: The port associated with the listener. properties: name: description: Label assigned to the port. type: string number: description: A valid non-negative integer port number. type: integer protocol: description: The protocol exposed on the port. type: string targetPort: type: integer type: object required: - hosts...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  7. src/cmd/cgo/internal/test/callback.go

    	}
    }
    
    var stringFromGo string
    
    //export goWithString
    func goWithString(s string) {
    	stringFromGo = s
    }
    
    func testCallbackStack(t *testing.T) {
    	// Make cgo call and callback with different amount of stack available.
    	// We do not do any explicit checks, just ensure that it does not crash.
    	for _, f := range splitTests {
    		f()
    	}
    }
    
    //export goStackCheck
    func goStackCheck() {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 111.5K bytes
    - Viewed (0)
  8. api/go1.3.txt

    pkg syscall (openbsd-386), type FdSet struct, Bits [32]uint32
    pkg syscall (openbsd-386), type Kevent_t struct, Data int64
    pkg syscall (openbsd-386), type Mclpool struct, Grown int32
    pkg syscall (openbsd-386), type RtMetrics struct, Expire int64
    pkg syscall (openbsd-386), type RtMetrics struct, Pad uint32
    pkg syscall (openbsd-386), type Stat_t struct, Ino uint64
    pkg syscall (openbsd-386), type Statfs_t struct, F_ctime uint64
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.cc

        DCHECK_EQ(nullptr, session);
        return nullptr;
      }
    }
    
    TF_Session* TF_LoadSessionFromSavedModel(
        const TF_SessionOptions* session_options, const TF_Buffer* run_options,
        const char* export_dir, const char* const* tags, int tags_len,
        TF_Graph* graph, TF_Buffer* meta_graph_def, TF_Status* status) {
    // TODO(sjr): Remove the IS_MOBILE_PLATFORM guard. This will require ensuring
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  10. fastapi/applications.py

                ),
            ] = None,
            contact: Annotated[
                Optional[Dict[str, Union[str, Any]]],
                Doc(
                    """
                    A dictionary with the contact information for the exposed API.
    
                    It can contain several fields.
    
                    * `name`: (`str`) The name of the contact person/organization.
                    * `url`: (`str`) A URL pointing to the contact information. MUST be in
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
Back to top