Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,056 for previousN (0.17 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. pkg/volume/util/nestedpendingoperations/nestedpendingoperations.go

    	}
    
    	opIndex := -1
    	for previousOpIndex, previousOp := range grm.operations {
    		volumeNameMatch := previousOp.key.volumeName == key.volumeName
    
    		podNameMatch := previousOp.key.podName == EmptyUniquePodName ||
    			key.podName == EmptyUniquePodName ||
    			previousOp.key.podName == key.podName
    
    		podNameExactMatch := previousOp.key.podName == key.podName
    
    		nodeNameMatch := previousOp.key.nodeName == EmptyNodeName ||
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  4. releasenotes/notes/route-collapse.yaml

        Previously, each domain name had its own virtual host. As an optimization, multiple domains may use a single virtual host.
        This means that a Envoy Filter previously matching a specific virtual host may now apply to more domains than in previous releases.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 02 16:10:04 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. test/fixedbugs/bug342.go

    // Issue 1871.
    
    package p
    
    type a interface {
    	foo(x int) (x int) // ERROR "duplicate argument|redefinition|redeclared"
    }
    
    /*
    Previously:
    
    bug.go:1 x redclared in this block
        previous declaration at bug.go:1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 21:28:48 UTC 2020
    - 389 bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/TypeToInstanceMap.java

       *
       * <p>{@code putInstance(Foo.class, foo)} is equivalent to {@code
       * putInstance(TypeToken.of(Foo.class), foo)}.
       *
       * @return the value previously associated with this class (possibly {@code null}), or {@code
       *     null} if there was no previous entry.
       */
      @CanIgnoreReturnValue
      @CheckForNull
      <T extends B> T putInstance(Class<@NonNull T> type, @ParametricNullness T value);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Apr 22 01:15:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/TypeToInstanceMap.java

       *
       * <p>{@code putInstance(Foo.class, foo)} is equivalent to {@code
       * putInstance(TypeToken.of(Foo.class), foo)}.
       *
       * @return the value previously associated with this class (possibly {@code null}), or {@code
       *     null} if there was no previous entry.
       */
      @CanIgnoreReturnValue
      @CheckForNull
      <T extends B> T putInstance(Class<@NonNull T> type, @ParametricNullness T value);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Apr 22 01:15:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top