Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,072 for incremented (0.18 sec)

  1. guava-testlib/src/com/google/common/testing/FakeTicker.java

        checkArgument(autoIncrementStep >= 0, "May not auto-increment by a negative amount");
        this.autoIncrementStepNanos = timeUnit.toNanos(autoIncrementStep);
        return this;
      }
    
      /**
       * Sets the increment applied to the ticker whenever it is queried.
       *
       * <p>The default behavior is to auto increment by zero. i.e: The ticker is left unchanged when
       * queried.
       *
       * @since 28.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 14:40:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_compilation_cache.h

      };
    
      // Returns std::nullopt if value for the supplied key is not found. If a value
      // is found, `request_count` is incremented before returning the value.
      std::optional<Value> Lookup(const Key& key) const;
    
      // Inserts an empty value if value is not found and returns it. If a value is
      // found, `request_count` is incremented before returning the value.
      Value LookupOrCreate(const Key& key);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. docs/sts/wso2.md

      - By default, `<IS_HTTPS_PORT>` has been set to 9443. However, if the port offset has been incremented by n, the default port value needs to be incremented by n.
    
    Request
    
    ```
    curl -u <CLIENT_ID>:<CLIENT_SECRET> -k -d "grant_type=client_credentials" -H "Content-Type:application/x-www-form-urlencoded" https://<IS_HOST>:<IS_HTTPS_PORT>/oauth2/token
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise/counting.go

    )
    
    // countingPromise implements the WriteOnce interface.
    // This implementation is based on a condition variable.
    // This implementation tracks active goroutines:
    // the given counter is decremented for a goroutine waiting for this
    // varible to be set and incremented when such a goroutine is
    // unblocked.
    type countingPromise struct {
    	lock          sync.Locker
    	cond          sync.Cond
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact_test.go

    	putResp, err := client.Put(ctx, "/somekey", "data")
    	if err != nil {
    		t.Fatalf("Put failed: %v", err)
    	}
    
    	// Compact first. It would do the compaction and return compact time which is incremented by 1.
    	curTime, _, err := compact(ctx, client, 0, putResp.Header.Revision)
    	if err != nil {
    		t.Fatalf("compact failed: %v", err)
    	}
    	if curTime != 1 {
    		t.Errorf("Expect current logical time = 1, get = %v", curTime)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 23 14:22:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/test_matchers.h

      return testing::ExplainMatchResult(
          testing::IsTrue(), is_ok || graph_analysis_failure, result_listener);
    }
    
    MATCHER_P2(IncrementedOrFiltered, metric, value,
               "Metric was incremented by value or Status equal to the Graph "
               "Analysis failure") {
      auto graph_analysis_failure = WasGraphAnalysisFailure(arg);
      if (graph_analysis_failure) {
        return testing::ExplainMatchResult(testing::IsTrue(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 19 22:54:26 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/FakeTicker.java

        checkArgument(autoIncrementStep >= 0, "May not auto-increment by a negative amount");
        this.autoIncrementStepNanos = timeUnit.toNanos(autoIncrementStep);
        return this;
      }
    
      /**
       * Sets the increment applied to the ticker whenever it is queried.
       *
       * <p>The default behavior is to auto increment by zero. i.e: The ticker is left unchanged when
       * queried.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/counter/doc.go

    // totally public telemetry data.
    //
    // There are two kinds of counters, basic counters and stack counters.
    // Basic counters are created by [New].
    // Stack counters are created by [NewStack].
    // Both are incremented by calling Inc().
    //
    // Basic counters are very cheap. Stack counters are more expensive, as they
    // require parsing the stack. (Stack counters are implemented as basic counters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.go

    		if gotI != oneI {
    			panic(fmt.Sprintf("one not called once per iteration; got i %d want %d", gotI, oneI))
    		}
    		oneI++
    
    		// The function value must be evaluated before arguments, so
    		// selectI must have been incremented already.
    		if selectI != oneI {
    			panic(fmt.Sprintf("selectA not called before not called before one; got i %d want %d", selectI, oneI))
    		}
    
    		return 1
    	}
    
    	val := 0
    	for i := 0; i < iter; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/sym/segment.go

    	Length  uint64
    	Seg     *Segment
    	Elfsect interface{} // an *ld.ElfShdr
    	Reloff  uint64
    	Rellen  uint64
    	// Relcount is the number of *host* relocations applied to this section
    	// (when external linking).
    	// Incremented atomically on multiple goroutines.
    	// Note: this may differ from number of Go relocations, as one Go relocation
    	// may turn into multiple host relocations.
    	Relcount uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 05:32:52 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top