Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for flavor (0.16 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * Captures an object to be closed when a {@link ClosingFuture} pipeline is done.
         *
         * <p>For users of the {@code -jre} flavor of Guava, the object can be any {@code
         * AutoCloseable}. For users of the {@code -android} flavor, the object must be a {@code
         * Closeable}. (For more about the flavors, see <a
         * href="https://github.com/google/guava#adding-guava-to-your-build">Adding Guava to your
         * build</a>.)
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * Captures an object to be closed when a {@link ClosingFuture} pipeline is done.
         *
         * <p>For users of the {@code -jre} flavor of Guava, the object can be any {@code
         * AutoCloseable}. For users of the {@code -android} flavor, the object must be a {@code
         * Closeable}. (For more about the flavors, see <a
         * href="https://github.com/google/guava#adding-guava-to-your-build">Adding Guava to your
         * build</a>.)
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

        "curl --fail --silent -H 'Metadata-Flavor: Google' \
          'http://metadata/computeMetadata/v1/instance/attributes/kube-env'" 2>/dev/null
      gcloud compute --project "${PROJECT}" ssh --zone "${ZONE}" "${KUBE_MASTER}" --command \
        "curl --fail --silent -H 'Metadata-Flavor: Google' \
          'http://metadata/computeMetadata/v1/instance/attributes/kube-master-certs'" 2>/dev/null
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    // past the end of dodata().
    type dodataState struct {
    	// Link context
    	ctxt *Link
    	// Data symbols bucketed by type.
    	data [sym.SXREF][]loader.Sym
    	// Max alignment for each flavor of data symbol.
    	dataMaxAlign [sym.SXREF]int32
    	// Overridden sym type
    	symGroupType []sym.SymKind
    	// Current data size so far.
    	datsize int64
    }
    
    // A note on symType/setSymType below:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

    # duplicated there as well.
    function get-metadata-value {
      local default="${2:-}"
    
      local status
      # shellcheck disable=SC2086
      curl ${CURL_FLAGS} \
        -H 'Metadata-Flavor: Google' \
        "http://metadata/computeMetadata/v1/${1}" \
      || status="$?"
      status="${status:-0}"
    
      if [[ "${status}" -eq 0 || -z "${default}" ]]; then
        return "${status}"
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. src/reflect/value.go

    	flagIndir       flag = 1 << 7
    	flagAddr        flag = 1 << 8
    	flagMethod      flag = 1 << 9
    	flagMethodShift      = 10
    	flagRO          flag = flagStickyRO | flagEmbedRO
    )
    
    func (f flag) kind() Kind {
    	return Kind(f & flagKindMask)
    }
    
    func (f flag) ro() flag {
    	if f&flagRO != 0 {
    		return flagStickyRO
    	}
    	return 0
    }
    
    func (v Value) typ() *abi.Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. fastapi/applications.py

                    """
                    A URL prefix for the OpenAPI URL.
                    """
                ),
                deprecated(
                    """
                    "openapi_prefix" has been deprecated in favor of "root_path", which
                    follows more closely the ASGI standard, is simpler, and more
                    automatic.
                    """
                ),
            ] = "",
            root_path: Annotated[
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    set custom affinity for the DaemonSet affinity: {} # Custom annotations on pod level, if you need them podAnnotations: {} # Deploy the config files as plugin chain (value "true") or as standalone files in the conf dir (value "false")? # Some k8s flavors (e.g. OpenShift) do not support the chain approach, set to false if this is the case chained: true # Allow the istio-cni container to run in privileged mode, needed for some platforms (e.g. OpenShift) privileged: false # Custom configuration happens...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top