Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 76 for setOp (0.08 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    // Response is ClassName -> Controller type
    func getGatewayClasses(r GatewayResources, supportedFeatures []k8s.SupportedFeature) map[string]k8s.GatewayController {
    	res := map[string]k8s.GatewayController{}
    	// Setup builtin ones - these can be overridden possibly
    	for name, controller := range builtinClasses {
    		res[string(name)] = controller
    	}
    	for _, obj := range r.GatewayClass {
    		gwc := obj.Spec.(*k8s.GatewayClassSpec)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    			startRead <- struct{}{}
    		} else {
    			startRead <- struct{}{}
    			startWrite <- struct{}{}
    		}
    		<-readDone
    	}
    }
    
    var getClientCertificateTests = []struct {
    	setup               func(*Config, *Config)
    	expectedClientError string
    	verify              func(*testing.T, int, *ConnectionState)
    }{
    	{
    		func(clientConfig, serverConfig *Config) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            container.add(element)
        }
    
        Class<? extends DomainObjectCollection<T>> getContainerPublicType() {
            return new DslObject(container).publicType.concreteClass
        }
    
        def setup() {
            // Verify some assumptions
            assert !type.isAssignableFrom(otherType) && !otherType.isAssignableFrom(type)
            assert type.isInstance(a)
            assert otherType.isInstance(d)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_test.cc

      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      TF_Operation* plusB = Add(plus2, b, graph, s, "plusB");
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      // Setup a session and a partial run handle.  The partial run will allow
      // computation of A + 2 + B in two phases (calls to TF_SessionPRun):
      // 1. Feed A and get (A+2)
      // 2. Feed B and get (A+2)+B
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  5. configure.py

    
    def get_python_major_version(python_bin_path):
      """Get the python major version."""
      return run_shell([python_bin_path, '-c', 'import sys; print(sys.version[0])'])
    
    
    def setup_python(environ_cp):
      """Setup python related env variables."""
      # Get PYTHON_BIN_PATH, default is the current running python.
      default_python_bin_path = sys.executable
      ask_python_bin_path = ('Please specify the location of python. [Default is '
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  6. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

       * there is for the connect, write, and read actions within a call.
       *
       * For WebSockets and duplex calls the timeout only applies to the initial setup.
       */
      @get:JvmName("callTimeoutMillis")
      val callTimeoutMillis: Int = builder.callTimeout
    
      /** Default connect timeout (in milliseconds). The default is 10 seconds. */
      @get:JvmName("connectTimeoutMillis")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // In the following example all tests in the test case FlagDependentTest
    // will be instantiated twice with parameters false and true.
    //
    // class FlagDependentTest : public testing::TestWithParam<bool> {
    //   virtual void SetUp() {
    //     external_flag = GetParam();
    //   }
    // }
    // INSTANTIATE_TEST_CASE_P(BoolSequence, FlagDependentTest, Bool());
    //
    inline internal::ParamGenerator<bool> Bool() {
      return Values(false, true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

    import spock.lang.Issue
    
    class VersionCatalogExtensionIntegrationTest extends AbstractVersionCatalogIntegrationTest implements PluginDslSupport, VersionCatalogErrorMessages {
    
        def setup() {
            enableProblemsApiCheck()
        }
    
        def "dependencies declared in settings trigger the creation of an extension (notation=#notation)"() {
            settingsFile << """
                dependencyResolutionManagement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // In the following example all tests in the test case FlagDependentTest
    // will be instantiated twice with parameters false and true.
    //
    // class FlagDependentTest : public testing::TestWithParam<bool> {
    //   virtual void SetUp() {
    //     external_flag = GetParam();
    //   }
    // }
    // INSTANTIATE_TEST_CASE_P(BoolSequence, FlagDependentTest, Bool());
    //
    inline internal::ParamGenerator<bool> Bool() {
      return Values(false, true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/math_grad.cc

      grad_outputs->push_back(Mul(scope, Neg(scope, y), grad_inv));
      return scope.status();
    }
    REGISTER_GRADIENT_OP("Atan2", Atan2Grad);
    
    // BinaryGradCommon handles the setup for binary ops that broadcast
    // their inputs.
    Status BinaryGradCommon(const Scope& scope, const Operation& op,
                            std::vector<Output>* grad_outputs, const Output& gx_1,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
Back to top