Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 85 for link66 (0.29 sec)

  1. docs/metrics/prometheus/grafana/minio-dashboard.json

        }
      ],
      "description": "MinIO Grafana Dashboard - https://min.io/",
      "editable": true,
      "fiscalYearStartMonth": 0,
      "gnetId": 13502,
      "graphTooltip": 0,
      "id": 292,
      "links": [
        {
          "icon": "external link",
          "includeVars": true,
          "keepTime": true,
          "tags": [
            "minio"
          ],
          "type": "dashboards"
        }
      ],
      "liveNow": false,
      "panels": [
        {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  2. src/net/http/client_test.go

    		{lastReq: "http://******@****.***", newReq: "http://link.com", want: "http://test.com"},
    		{lastReq: "https://******@****.***", newReq: "https://link.com", want: "https://test.com"},
    
    		// don't send a user and password:
    		{lastReq: "http://gopher:******@****.***", newReq: "http://link.com", want: "http://test.com"},
    		{lastReq: "https://gopher:******@****.***", newReq: "https://link.com", want: "https://test.com"},
    
    		// nothing to do:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    if (!newConstraints && !edgesToRecompute) {
                        // Was previously traversed, and no change to the set of modules that are linked by outgoing edges.
                        // Don't need to traverse again, but hang on to the new filter since it may change the set of excluded artifacts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	{26, "ETXTBSY", "text file busy"},
    	{27, "EFBIG", "file too large"},
    	{28, "ENOSPC", "no space left on device"},
    	{29, "ESPIPE", "illegal seek"},
    	{30, "EROFS", "read-only file system"},
    	{31, "EMLINK", "too many links"},
    	{32, "EPIPE", "broken pipe"},
    	{33, "EDOM", "numerical argument out of domain"},
    	{34, "ERANGE", "result too large"},
    	{35, "EAGAIN", "resource temporarily unavailable"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go

    	{26, "ETXTBSY", "text file busy"},
    	{27, "EFBIG", "file too large"},
    	{28, "ENOSPC", "no space left on device"},
    	{29, "ESPIPE", "illegal seek"},
    	{30, "EROFS", "read-only file system"},
    	{31, "EMLINK", "too many links"},
    	{32, "EPIPE", "broken pipe"},
    	{33, "EDOM", "numerical argument out of domain"},
    	{34, "ERANGE", "result too large"},
    	{35, "EAGAIN", "resource temporarily unavailable"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    func writePtr(ctxt *obj.Link, buf []byte, word uint64) {
    	switch ctxt.Arch.PtrSize {
    	case 4:
    		ctxt.Arch.ByteOrder.PutUint32(buf, uint32(word))
    	case 8:
    		ctxt.Arch.ByteOrder.PutUint64(buf, word)
    	default:
    		panic("unexpected pointer size")
    	}
    
    }
    
    // Read a pointer-sized uint from the beginning of buf.
    func readPtr(ctxt *obj.Link, buf []byte) uint64 {
    	switch ctxt.Arch.PtrSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. src/runtime/map.go

    		racereadpc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(reflect_maplen))
    	}
    	return h.count
    }
    
    // mapinitnoop is a no-op function known the Go linker; if a given global
    // map (of the right size) is determined to be dead, the linker will
    // rewrite the relocation (from the package init func) from the outlined
    // map init function to this symbol. Defined in assembly so as to avoid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    a|
    [horizontal]
    link:{gradle-issues}13457[[.green]#✓#]:: <<java_plugin.adoc#java_plugin,Java>>
    link:{gradle-issues}13458[[.green]#✓#]:: <<java_library_plugin.adoc#java_library_plugin,Java Library>>
    link:{gradle-issues}13459[[.green]#✓#]:: <<java_platform_plugin.adoc#java_platform_plugin,Java Platform>>
    link:{gradle-issues}13460[[.green]#✓#]:: <<groovy_plugin.adoc#groovy_plugin,Groovy>>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	if err != nil {
    		return false
    	}
    	return outLen == uint32(unsafe.Sizeof(isElevated)) && isElevated != 0
    }
    
    // GetLinkedToken returns the linked token, which may be an elevated UAC token.
    func (token Token) GetLinkedToken() (Token, error) {
    	var linkedToken Token
    	var outLen uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

    import static org.gradle.api.internal.artifacts.configurations.ConfigurationInternal.InternalState.UNRESOLVED;
    import static org.gradle.util.internal.ConfigureUtil.configure;
    
    /**
     * The default {@link Configuration} implementation.
     */
    @SuppressWarnings("rawtypes")
    public abstract class DefaultConfiguration extends AbstractFileCollection implements ConfigurationInternal, MutationValidator, ResettableConfiguration {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
Back to top