Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 810 for timings (0.11 sec)

  1. src/go/doc/testdata/testing.2.golden

    	func (b *B) ResetTimer()
    
    	// SetBytes records the number of bytes processed in a single ...
    	func (b *B) SetBytes(n int64)
    
    	// StartTimer starts timing a test. This function is called ...
    	func (b *B) StartTimer()
    
    	// StopTimer stops timing a test. This can be used to pause the ...
    	func (b *B) StopTimer()
    
    	// The results of a benchmark run. 
    	type BenchmarkResult struct {
    		N	int		// The number of iterations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue50918.go

    // Copyright 2022 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.
    
    package p
    
    type thing1 struct {
    	things []string
    }
    
    type thing2 struct {
    	things []thing1
    }
    
    func _() {
    	var a1, b1 thing1
    	_ = a1 /* ERROR "struct containing []string cannot be compared" */ == b1
    
    	var a2, b2 thing2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 453 bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

     * appropriate.
     *
     * #### Timing Guarantees
     *
     * All modification events are guaranteed to be published in the write action in which the modification happens. Beyond that, the exact
     * timing is not strictly defined for most modification events.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. src/go/doc/testdata/testing.0.golden

    	func (b *B) ResetTimer()
    
    	// SetBytes records the number of bytes processed in a single ...
    	func (b *B) SetBytes(n int64)
    
    	// StartTimer starts timing a test. This function is called ...
    	func (b *B) StartTimer()
    
    	// StopTimer stops timing a test. This can be used to pause the ...
    	func (b *B) StopTimer()
    
    	// The results of a benchmark run. 
    	type BenchmarkResult struct {
    		N	int		// The number of iterations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  5. ci/official/code_check_full.sh

    # limitations under the License.
    # ==============================================================================
    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 06 17:29:44 UTC 2024
    - 840 bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskActionBuildOperationType.java

        // Info about the owning task can be inferred, and we don't provide any further info at this point.
        // This is largely to expose timing information about executed tasks
    
        public interface Details {
        }
    
        public interface Result {
        }
    
        static final Details DETAILS_INSTANCE = new Details() {};
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. src/go/doc/comment_test.go

    		wantHTML        = `<p><a href="#T">T</a> and <a href="#U">U</a> are types, and <a href="#T.M">T.M</a> is a method, but [V] is a broken link. <a href="/math/rand#Int">rand.Int</a> and <a href="/crypto/rand#Reader">crand.Reader</a> are things. <a href="#G.M1">G.M1</a> and <a href="#G.M2">G.M2</a> are generic methods.` + "\n"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 06:33:18 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/dialects.md

    ## Overview
    
    
    To separate different hardware and software targets, MLIR has “dialects”,
    including:
    
    * TensorFlow IR, which represents all things possible in TensorFlow graphs.
    * XLA HLO IR, which is designed to take advantage of XLA’s compilation
      abilities (with output to, among other things, TPUs).
    * An experimental affine dialect, which focuses on
      [polyhedral representations](https://en.wikipedia.org/wiki/Polytope_model)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 21 01:37:38 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                }
                extensions.add('things', SomeThing)
                things {
                    letter = 'a'
                    withLetter('b')
                }
                assert things.letter == Letter.B
                things.other('ABC')
                assert things.letter == Letter.A
                things.other(Letter.C)
                assert things.letter == Letter.C
                things.other('A', 'ignore')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/projection/ModelSetModelProjectionTest.groovy

            when:
            registry.registerInstance("things", []).mutate {
                it.path("things").action(reference.path, reference.type, { things, set ->
                    set."$method" {
    
                    }
                })
            }
    
            registry.get("things")
    
            then:
            def e = thrown ModelRuleExecutionException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top