Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 963 for REAL (0.04 sec)

  1. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompilerDaemonFailureIntegrationTest.groovy

            buildFile << """
                apply plugin: "java"
    
                tasks.compileJava {
                    options.fork = true
                    options.forkOptions.jvmArgs = ['--not-a-real-argument']
                }
            """
    
            file('src/main/java/ClassToCompile.java') << """
                class ClassToCompile {
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/CommitDistribution.groovy

            this.commitDistributionsDir = commitDistributionsDir;
        }
    
        /**
         * `super.gradleHome` is not the real Gradle home but the directory which the commit distribution is unzipped into.
         * The real Gradle home is `gradle-7.5-commit-1a2b3c4/gradle-7.5-20220618071843+0000`.
         * @return
         */
        @Override
        TestFile getGradleHomeDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/bitmap.go

    type dryRunRange struct {
    	real *Range
    }
    
    func (dry dryRunRange) Allocate(ip net.IP) error {
    	return dry.real.allocate(ip, dryRunTrue)
    }
    
    func (dry dryRunRange) AllocateNext() (net.IP, error) {
    	return dry.real.allocateNext(dryRunTrue)
    }
    
    func (dry dryRunRange) Release(ip net.IP) error {
    	return dry.real.release(ip, dryRunTrue)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonFailureLoggingIntegrationTest.groovy

            buildFile << """
                task runInWorker(type: WorkerTask) {
                    isolationMode = 'processIsolation'
                    additionalForkOptions = { jvmArgs('--not-a-real-argument') }
                    workActionClass = ${workAction.name}.class
                }
            """
        }
    
        def "worker startup failure messages are associated with the task that starts it"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/gradient_checker_test.cc

      EXPECT_LT(max_error, 1e-4);
    }
    
    TEST(GradientCheckerTest, Complex64ToFloat) {
      // Test an op whose inputs are complex and outputs are real
      Scope scope = Scope::NewRootScope();
      TensorShape shape({2, 4, 3});
      auto x = Placeholder(scope, DT_COMPLEX64, Placeholder::Shape(shape));
      auto y = Real(scope, x);
      float max_error;
      TF_ASSERT_OK((ComputeGradientError<complex64, float, float>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 06 15:54:08 UTC 2018
    - 6.7K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentModuleMetadataDetails.java

     *
     * @since 2.2
     */
    public interface ComponentModuleMetadataDetails extends ComponentModuleMetadata {
    
        /**
         * Configures a replacement module for this module.
         * A real world example: 'com.google.collections:google-collections' is replaced by 'com.google.guava:guava'.
         *
         * Subsequent invocations of this method replace the previous 'replacedBy' value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  7. test/typeparam/absdiff2.go

    	switch z := x.(type) {
    	case complex64:
    		re = float64(real(z))
    		im = float64(imag(z))
    	case complex128:
    		re = real(z)
    		im = imag(z)
    	default:
    		panic("unknown complex type")
    	}
    	return
    }
    
    func (a complexAbs[T]) Abs() T {
    	// TODO use direct conversion instead of realimag once #50937 is fixed
    	r, i := realimag(a.Value_)
    	// r := float64(real(a.Value))
    	// i := float64(imag(a.Value))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/addresses_test.go

    			ExpectedMap: publicAddressCIDRMap,
    		},
    		{
    			Request: http.Request{
    				Header: map[string][]string{
    					"X-Real-Ip": {internalIP},
    				},
    			},
    			ExpectedMap: internalAddressCIDRMap,
    		},
    		{
    			Request: http.Request{
    				Header: map[string][]string{
    					"X-Real-Ip": {publicIP},
    				},
    			},
    			ExpectedMap: publicAddressCIDRMap,
    		},
    		{
    			Request: http.Request{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  9. cluster/kubemark/iks/config-default.sh

    CLUSTER_LOCATION="${CLUSTER_LOCATION:-wdc06}"
    REGISTRY_LOGIN_URL="${REGISTRY_LOGIN_URL:-https://api.ng.bluemix.net}"
    
    # User defined
    # number of real workers in spawnTester cluster
    NUM_NODES="${NUM_NODES:-2}"
    # spec of real workers in spawnTester cluster
    NODE_SIZE=${NODE_SIZE:-u2c.2x4}
    DESIRED_NODES="${DESIRED_NODES:-10}"
    # number of hollow nodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 17:15:29 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  10. pkg/hbone/README.md

    ```go
    d := hbone.NewDialer(hbone.Config{
        ProxyAddress: "1.2.3.4:15008",
        Headers: map[string][]string{
            "some-addition-metadata": {"test-value"},
        },
        TLS:          nil, // TLS is strongly recommended in real world
    })
    client, _ := d.Dial("tcp", testAddr)
    client.Write([]byte("hello world"))
    ```
    
    ### Server
    
    #### Server CLI
    
    A CLI client is available using the `server` binary.
    
    Usage examples:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top