Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 395 for subTable (0.33 sec)

  1. src/cmd/link/internal/ld/macho_update_uuid.go

    import (
    	"cmd/internal/notsha256"
    	"debug/macho"
    	"io"
    	"os"
    	"unsafe"
    )
    
    // uuidFromGoBuildId hashes the Go build ID and returns a slice of 16
    // bytes suitable for use as the payload in a Macho LC_UUID load
    // command.
    func uuidFromGoBuildId(buildID string) []byte {
    	if buildID == "" {
    		return make([]byte, 16)
    	}
    	hashedBuildID := notsha256.Sum256([]byte(buildID))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/versionmapping/DefaultVersionMappingStrategy.java

                        action.execute(strategy);
                    }
                } else if (matches.size() > 1) {
                    throw new InvalidUserCodeException("Unable to find a suitable version mapping strategy for " + variantAttributes);
                }
            }
            return strategy;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. src/sync/pool.go

    //
    // Pool's purpose is to cache allocated but unused items for later reuse,
    // relieving pressure on the garbage collector. That is, it makes it easy to
    // build efficient, thread-safe free lists. However, it is not suitable for all
    // free lists.
    //
    // An appropriate use of a Pool is to manage a group of temporary items
    // silently shared among and potentially reused by concurrent independent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__internal.apiserver.k8s.io_openapi.json

                "type": "string"
              },
              "serverAddress": {
                "default": "",
                "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.",
                "type": "string"
              }
            },
            "required": [
              "clientCIDR",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__node.k8s.io_openapi.json

                "type": "string"
              },
              "serverAddress": {
                "default": "",
                "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.",
                "type": "string"
              }
            },
            "required": [
              "clientCIDR",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__rbac.authorization.k8s.io_openapi.json

                "type": "string"
              },
              "serverAddress": {
                "default": "",
                "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.",
                "type": "string"
              }
            },
            "required": [
              "clientCIDR",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. src/crypto/tls/prf.go

    	}
    
    	return finishedHash{sha1.New(), sha1.New(), md5.New(), md5.New(), buffer, version, prf}
    }
    
    // A finishedHash calculates the hash of a set of handshake messages suitable
    // for including in a Finished message.
    type finishedHash struct {
    	client hash.Hash
    	server hash.Hash
    
    	// Prior to TLS 1.2, an additional MD5 hash is required.
    	clientMD5 hash.Hash
    	serverMD5 hash.Hash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. misc/ios/README

    id and a provisioned bundle id to use. They're specified with the environment variables
    GOIOS_DEV_ID, GOIOS_TEAM_ID and GOIOS_APP_ID. The detect.go program in this directory will
    attempt to auto-detect suitable values. Run it as
    
    	go run detect.go
    
    which will output something similar to
    
    	export GOIOS_DEV_ID="iPhone Developer: ******@****.*** (XXXXXXXX)"
    	export GOIOS_APP_ID=YYYYYYYY.some.bundle.id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 21:49:26 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

         Any settings from values.gateways should be here - these are options specific to the gateway.
         Global settings, like the image, various env vars and volumes, etc will be injected.
         The normal Deployment is not suitable for this, as the original pod spec will override the injection template. */}}
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $gateway.name | default "istio-egressgateway" }}
      namespace: {{ .Release.Namespace }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

         Any settings from values.gateways should be here - these are options specific to the gateway.
         Global settings, like the image, various env vars and volumes, etc will be injected.
         The normal Deployment is not suitable for this, as the original pod spec will override the injection template. */}}
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $gateway.name | default "istio-ingressgateway" }}
      namespace: {{ .Release.Namespace }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top