Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 9,406 for greats (0.14 sec)

  1. pilot/pkg/networking/grpcgen/grpcecho_test.go

    	*testing.T
    	endpoints []endpoint.Instance
    	ds        *xds.FakeDiscoveryServer
    	xdsPort   int
    }
    
    // newConfigGenTest creates a FakeDiscoveryServer that listens for gRPC on grpcXdsAddr
    // For each of the given servers, we serve echo (only supporting Echo, no ForwardEcho) and
    // create a corresponding WorkloadEntry. The WorkloadEntry will have the given format:
    //
    //	meta:
    //	  name: echo-{generated portnum}-{server.version}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskContainer.java

         */
        Task create(Map<String, ?> options) throws InvalidUserDataException;
    
        /**
         * <p>Creates a {@link Task} adds it to this container. A map of creation options can be passed to this method to
         * control how the task is created. See {@link #create(java.util.Map)} for the list of options available. The given
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 17.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_save_op.cc

                                /*elementType=*/builder.getType<TF::StringType>());
    
      return builder.create<TF::ConstOp>(
          loc, DenseStringElementsAttr::get(
                   tensor_type,
                   SmallVector<StringRef>(str_values.begin(), str_values.end())));
    }
    
    // Creates a 1D string array constant for "tensor_names" input of `RestoreV2`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValueFactory.java

     */
    @ServiceScope(Scope.BuildSession.class)
    public interface CalculatedValueFactory {
        /**
         * Creates a calculated value that has no dependencies and that does not access any mutable model state.
         */
        <T> CalculatedValue<T> create(DisplayName displayName, Supplier<? extends T> supplier);
    
        /**
         * A convenience to create a calculated value that has already been produced.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_passes.h

    namespace mlir {
    namespace tf_saved_model {
    
    // Creates a pass that optimizes tf_saved_model.global_tensor ops.
    std::unique_ptr<OperationPass<ModuleOp>> CreateOptimizeGlobalTensorsPass();
    
    // Creates a pass that freezes tf_saved_model.global_tensor ops.
    std::unique_ptr<OperationPass<ModuleOp>> CreateFreezeGlobalTensorsPass(
        bool allow_mutable_tensors = false);
    
    // Creates a pass that freezes tf_saved_model.asset ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/skipnonapplied.go

    var _ Manager = &skipNonAppliedManager{}
    
    // NewSkipNonAppliedManager creates a new wrapped FieldManager that only starts tracking managers after the first apply.
    func NewSkipNonAppliedManager(fieldManager Manager, objectCreater runtime.ObjectCreater) Manager {
    	return NewProbabilisticSkipNonAppliedManager(fieldManager, objectCreater, 0.0)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. cmd/benchmark-utils_test.go

    	"github.com/dustin/go-humanize"
    )
    
    // Benchmark utility functions for ObjectLayer.PutObject().
    // Creates Object layer setup ( MakeBucket ) and then runs the PutObject benchmark.
    func runPutObjectBenchmark(b *testing.B, obj ObjectLayer, objSize int) {
    	var err error
    	// obtains random bucket name.
    	bucket := getRandomBucketName()
    	// create bucket.
    	err = obj.MakeBucket(context.Background(), bucket, MakeBucketOptions{})
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 23 15:46:00 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PolymorphicDomainObjectContainerExtensions.kt

     * type
     */
    inline fun <reified U : Any> PolymorphicDomainObjectContainer<in U>.create(
        name: String,
        noinline configuration: U.() -> Unit
    ) =
    
        this.create(name, U::class.java, configuration)
    
    
    /**
     * Creates a domain object with the specified name and type, and adds it to the container.
     *
     * @param name the name of the domain object to be created
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. cmd/xl-storage_unix_test.go

    	}
    
    	// Attempt to create a volume to verify the permissions later.
    	// MakeVol creates directory with 0777 perms.
    	if err = disk.MakeVol(context.Background(), testCase.volName); err != nil {
    		t.Fatalf("Creating a volume failed with %s expected to pass.", err)
    	}
    
    	// Attempt to create a file to verify the permissions later.
    	// AppendFile creates file with 0666 perms.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 25 19:37:26 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. pkg/controlplane/reconcilers/helpers_test.go

    	}
    	for i := 0; i < len(creates) || i < len(expectedCreates); i++ {
    		var expected, actual runtime.Object
    		if i < len(creates) {
    			actual = creates[i].GetObject()
    		}
    		if i < len(expectedCreates) {
    			expected = expectedCreates[i]
    		}
    		if !apiequality.Semantic.DeepEqual(expected, actual) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:23 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top