Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for computation (0.21 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    							Message: "size of scoped field should be equal to 10",
    						},
    					},
    				},
    			},
    			expectedResults: []validationMatcher{
    				invalidError("compilation failed"),
    			},
    		},
    		{
    			name: "compilation failure",
    			input: schema.Structural{
    				Generic: schema.Generic{
    					Type: "integer",
    				},
    				ValidationExtensions: schema.ValidationExtensions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    		cmdline = append(cmdline, long)
    		out, err := runcmd(cmdline...)
    		if wantError {
    			if err == nil {
    				return fmt.Errorf("compilation succeeded unexpectedly\n%s", out)
    			}
    			if err == errTimeout {
    				return fmt.Errorf("compilation timed out")
    			}
    		} else {
    			if err != nil {
    				return err
    			}
    		}
    		if *updateErrors {
    			t.updateErrors(string(out), long)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    All you need to do in most cases is configure the appropriate compilation and runtime dependencies and add any necessary configuration to the `test` task. The following example shows a simple setup that uses JUnit Platform and changes the maximum heap size for the tests' JVM to 1 gigabyte:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Consider the process of compilation.
    Once your source files have been compiled, there should be no need to recompile them unless something has changed that affects the output, such as the modification of a source file or the removal of an output file.
    And compilation can take a significant amount of time, so skipping the step when it’s not needed saves a lot of time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    * Support for several source languages.
    * Support for building different variants of the same software, for different architectures, operating systems, or for any purpose.
    * Incremental parallel compilation, precompiled headers.
    * Dependency management between native software components.
    * Unit test execution.
    * Generate Visual studio solution and project files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    // even though that is unfair.
    // Expects fairness when there is no competition, unfairness when there is competition.
    func TestNoRestraint(t *testing.T) {
    	metrics.Register()
    	testCases := []struct {
    		concurrency int
    		margin      float64
    		fair        bool
    		name        string
    	}{
    		{concurrency: 10, margin: 0.001, fair: true, name: "no-competition"},
    		{concurrency: 2, margin: 0.25, fair: false, name: "with-competition"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  7. configure.py

      )
    
      if get_var(
          environ_cp, 'TF_OVERRIDE_EIGEN_STRONG_INLINE', 'Eigen strong inline',
          True, ('Would you like to override eigen strong inline for some C++ '
                 'compilation to reduce the compilation time?'),
          'Eigen strong inline overridden.', 'Not overriding eigen strong inline, '
          'some compilations could take more than 20 mins.'):
        # Due to a known MSVC compiler issue
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Similarly, tasks from the Groovy and Scala plugins also rely on toolchains to determine on which JVM they are executed.
    
    ==== Scala compilation target
    
    With the toolchain changes described above, Scala compilation tasks are now always provided with a `target` or `release` parameter.
    The exact parameter and value depend on toolchain usage, or not, and Scala version.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Note that there is a known issue with Kotlin compilation avoidance that can cause `OutOfMemory` exceptions in `compileKotlin` tasks if the compilation classpath contains very large JAR files.
    This applies to builds applying the Kotlin plugin v1.8.20 or the `kotlin-dsl` plugin.
    
    You can work around it by disabling Kotlin compilation avoidance in your `gradle.properties` file:
    
    [source,properties]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    The main reason for this is the slower script compilation for Kotlin DSL.
    * In IntelliJ IDEA, you must link:https://www.jetbrains.com/help/idea/gradle.html#gradle_import[import your project from the Gradle model] in order to get content assist and refactoring support for your Kotlin DSL build scripts.
    * Kotlin DSL script compilation avoidance has known issues.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top