Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 466 for composed (0.12 sec)

  1. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerAdapter.kt

       * a default value.
       *
       * If this does read a value, it starts with the tag and length, and reads an entire value,
       * including any potential composed values.
       *
       * If there's nothing to read and no default value, this will throw an exception.
       */
      fun fromDer(reader: DerReader): T
    
      fun fromDer(byteString: ByteString): T {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

    == Using composite builds in a hierarchical multirepo project
    
    This sample demonstrates how composite builds can be used to develop a hierarchical project that is composed from different Git repositories. Instead of Gradle subprojects in a multiproject build, this example uses separate Gradle builds included into a composite.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. pilot/pkg/server/instance.go

    // limitations under the License.
    
    package server
    
    import (
    	"sync"
    	"time"
    
    	"istio.io/istio/pkg/log"
    )
    
    type Component func(stop <-chan struct{}) error
    
    // Instance is a server that is composed a number of Component tasks.
    type Instance interface {
    	// Start this Server. Any components that were already added
    	// will be run immediately. If any error is returned,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/GeneratedSingletonFileTree.java

    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Arrays;
    
    /**
     * A generated file tree which is composed using a mapping from relative path to file source.
     */
    public class GeneratedSingletonFileTree implements FileSystemMirroringFileTree, GeneratedFiles {
        private final Factory<File> tmpDirSource;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. cluster/images/etcd/migrate/versions.go

    	case storageEtcd2:
    		return "etcd2"
    	case storageEtcd3:
    		return "etcd3"
    	default:
    		panic(fmt.Sprintf("enum value %d missing from EtcdStorageVersion String() function", v))
    	}
    }
    
    // EtcdVersionPair is composed of an etcd version and storage version.
    type EtcdVersionPair struct {
    	version        *EtcdVersion
    	storageVersion EtcdStorageVersion
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[plugin_basics]]
    = Plugin Basics
    
    Gradle is built on a plugin system.
    Gradle itself is primarily composed of infrastructure, such as a sophisticated dependency resolution engine.
    The rest of its functionality comes from plugins.
    
    A plugin is a piece of software that *provides additional functionality to the Gradle build system*.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/README.md

    following benefits:
    
    *   *Automatic backend support*: As long as it is composed of ops supported by
        the backend, the new op is automatically supported (as a `tf.function`
        alternative);
    *   *Reduced tracing overhead*: Unlike `tf.function`, the composition function
        is compiled at build time, hence TF only needs to trace a single op to build
        the `graph`;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  8. test/typeparam/metrics.go

    // run
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package metrics provides tracking arbitrary metrics composed of
    // values of comparable types.
    package main
    
    import (
    	"fmt"
    	"sort"
    	"sync"
    )
    
    // _Metric1 tracks metrics of values of some type.
    type _Metric1[T comparable] struct {
    	mu sync.Mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        This op loads a restored variable tensor as a tensor future. It is a
        replacement of `tf.ReadVariableOp`.
    
        This op returns a scalar string tensor containing the restored variable name, which 
        is composed from `container_name` and `shared_name` from a `var_handle` and can be
        used as a key within the runtime, as well as a future for the tensor.
    
        The `tf.IfrtCall` kernel uses the output $array_key.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http2/Huffman.kt

     */
    package okhttp3.internal.http2
    
    import java.io.IOException
    import okhttp3.internal.and
    import okio.BufferedSink
    import okio.BufferedSource
    import okio.ByteString
    
    /**
     * This class was originally composed from the following classes in
     * [Twitter Hpack][twitter_hpack].
     *
     *  * `com.twitter.hpack.HuffmanEncoder`
     *  * `com.twitter.hpack.HuffmanDecoder`
     *  * `com.twitter.hpack.HpackUtil`
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top