Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 119 for instantiation (0.2 sec)

  1. cmd/kube-scheduler/app/server.go

    		scheduler.WithParallelism(cc.ComponentConfig.Parallelism),
    		scheduler.WithBuildFrameworkCapturer(func(profile kubeschedulerconfig.KubeSchedulerProfile) {
    			// Profiles are processed during Framework instantiation to set default plugins and configurations. Capturing them for logging
    			completedProfiles = append(completedProfiles, profile)
    		}),
    	)
    	if err != nil {
    		return nil, nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      // Keeps pairs of <Instantiation name, Sequence generator creation function>
      // received from INSTANTIATE_TEST_CASE_P macros.
      typedef ::std::vector<std::pair<string, GeneratorCreationFunc*> >
          InstantiationContainer;
    
      const string test_case_name_;
      TestInfoContainer tests_;
      InstantiationContainer instantiations_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseInfo);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. src/go/types/instantiate.go

    // 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.
    
    // This file implements instantiation of generic types
    // through substitution of type parameters by type arguments.
    
    package types
    
    import (
    	"errors"
    	"fmt"
    	"go/token"
    	. "internal/types/errors"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/go/types/api.go

    	return tv.mode == commaok || tv.mode == mapindex
    }
    
    // Instance reports the type arguments and instantiated type for type and
    // function instantiations. For type instantiations, [Type] will be of dynamic
    // type *[Named]. For function instantiations, [Type] will be of dynamic type
    // *Signature.
    type Instance struct {
    	TypeArgs *TypeList
    	Type     Type
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api.go

    	return tv.mode == commaok || tv.mode == mapindex
    }
    
    // Instance reports the type arguments and instantiated type for type and
    // function instantiations. For type instantiations, Type will be of dynamic
    // type *Named. For function instantiations, Type will be of dynamic type
    // *Signature.
    type Instance struct {
    	TypeArgs *TypeList
    	Type     Type
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            then:
            def ex3 = thrown(GradleException)
            ex3.is(ex)
            0 * _
        }
    
        void "fails later creation upon realizing through register provider when task instantiation is unsuccessful"() {
    
            given:
            def action = Mock(Action)
            1 * taskFactory.create(_ as TaskIdentity) >> { throw new RuntimeException("Failing constructor") }
            0 * action.execute(_)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

        ProcessOperations processOperationsMock = Stub(ProcessOperations)
        LoggingManagerInternal loggingManagerMock = Stub(LoggingManagerInternal)
        Instantiator instantiatorMock = Stub(Instantiator)
        SoftwareComponentContainer softwareComponentsMock = Stub(SoftwareComponentContainer)
        InputNormalizationHandlerInternal inputNormalizationHandler = Stub(InputNormalizationHandlerInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_distributed_test.cc

                             std::vector<std::string>* control_ret_node_names,
                             bool* control_rets_updated) override {
        // Inject failure to function instantiation if finding a node that contains
        // the given node name (error_node_) and requested device (error_device_).
        for (const auto node : graph->get()->nodes()) {
          if (node->name().find(error_node_) != string::npos &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

        }
    
        @Override
        public <S extends Task> TaskCollection<S> withType(Class<S> type) {
            Instantiator instantiator = getInstantiator();
            return Cast.uncheckedCast(instantiator.newInstance(DefaultRealizableTaskCollection.class, type, super.withType(type), modelNode, instantiator));
        }
    
        @Deprecated
        @Override
        public boolean remove(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. src/go/types/predicates.go

    func identicalOrigin(x, y *Named) bool {
    	// TODO(gri) is this correct?
    	return x.Origin().obj == y.Origin().obj
    }
    
    // identicalInstance reports if two type instantiations are identical.
    // Instantiations are identical if their origin and type arguments are
    // identical.
    func identicalInstance(xorig Type, xargs []Type, yorig Type, yargs []Type) bool {
    	if len(xargs) != len(yargs) {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top