Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,461 for previousN (0.34 sec)

  1. src/testing/benchmark.go

    type B struct {
    	common
    	importPath       string // import path of the package containing the benchmark
    	context          *benchContext
    	N                int
    	previousN        int           // number of iterations in the previous run
    	previousDuration time.Duration // total duration of the previous run
    	benchFunc        func(b *B)
    	benchTime        durationOrCountFlag
    	bytes            int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/build-cache/previous-next-scan.svg

    previous-next-scan.svg...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/c/tf_status.h

    // Return a new status object.
    TF_CAPI_EXPORT extern TF_Status* TF_NewStatus(void);
    
    // Delete a previously created status object.
    TF_CAPI_EXPORT extern void TF_DeleteStatus(TF_Status*);
    
    // Record <code, msg> in *s.  Any previous information is lost.
    // A common use is to clear a status: TF_SetStatus(s, TF_OK, "");
    TF_CAPI_EXPORT extern void TF_SetStatus(TF_Status* s, TF_Code code,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. releasenotes/notes/drop-default-tracing.yaml

        content: |
          In previous versions of Istio, tracing was automatically configured to send traces to `zipkin.istio-system.svc`.
          This default setting has been removed; users will need to explicitly configure where to send traces moving forward.
    
          `istioctl x precheck --from-version=1.21` can automatically detect if you may be impacted by this change.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 934 bytes
    - Viewed (0)
  5. src/hash/hash.go

    // later, without having to re-write the data previously written to the hash.
    // The hash state may contain portions of the input in its original form,
    // which users are expected to handle for any possible security implications.
    //
    // Compatibility: Any future changes to hash or crypto packages will endeavor
    // to maintain compatibility with state encoded using previous versions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

    :a
    \\--- :c
         \\--- :b
              \\--- :a (*)
    
    (*) - details omitted (listed previously)
    """)
        }
    
        def "cannot add a task with must run after induced circular reference that was previously in graph but not required"() {
            Task a = createTask("a")
            Task b = task("b", mustRunAfter: [a])
            Task c = task("c", dependsOn: [b])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

         */
        enum ExecutionOutcome {
            /**
             * The outputs haven't been changed, because the work is already up-to-date
             * (i.e. its inputs and outputs match that of the previous execution in the
             * same workspace).
             */
            UP_TO_DATE,
    
            /**
             * The outputs of the work have been loaded from the build cache.
             */
            FROM_CACHE,
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. src/sync/map.go

    		if e.unexpungeLocked() {
    			// The entry was previously expunged, which implies that there is a
    			// non-nil dirty map and this entry is not in it.
    			m.dirty[key] = e
    		}
    		if v := e.swapLocked(&value); v != nil {
    			loaded = true
    			previous = *v
    		}
    	} else if e, ok := m.dirty[key]; ok {
    		if v := e.swapLocked(&value); v != nil {
    			loaded = true
    			previous = *v
    		}
    	} else {
    		if !read.amended {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    ```kotlin
    includeBuild("some-other-build") {
        name = "another-name"
    }
    ```
    
    The previous behavior was problematic as it caused different names to be used at different times during the build.
    
    ==== buildSrc is now reserved as a project and subproject build name
    
    Previously, Gradle did not prevent using the name “buildSrc” for a subproject of a multi-project build or as the name of an included build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    As such, each minor Gradle release causes the previous minor releases in the same major version to become end-of-life (EOL). EOL releases do not receive bug fixes or feature backports.
    
    For major versions, Gradle will backport critical fixes and security fixes to the last minor in the previous major version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top