Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,403 for repeats (0.22 sec)

  1. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // of the changes enabled, the target is known to succeed (exit with exit
    // code zero). With all the changes enabled, the target is known to fail
    // (exit any other way). Bisect repeats the target with different sets of
    // changes enabled, using binary search to find (non-overlapping) minimal
    // change sets that provoke the failure.
    //
    // The target must cooperate with bisect by accepting a change pattern
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

    namespace quant {
    namespace {
    
    constexpr double kSmallestHalfRange = kNearZeroTolerance / 2;
    using QType = quant::QuantizedType;
    
    // Repeats the content of `data` multiple times to resize to `target_size`.
    // Note that this only broadcast across one dimension.
    template <typename T>
    bool BroadcastVector(int target_size, SmallVectorImpl<T>& data) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/list/list.go

    others may be omitted to save work in computing the JSON struct.
    
    The -compiled flag causes list to set CompiledGoFiles to the Go source
    files presented to the compiler. Typically this means that it repeats
    the files listed in GoFiles and then also adds the Go code generated
    by processing CgoFiles and SwigFiles. The Imports list contains the
    union of all imports from both GoFiles and CompiledGoFiles.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	}()
    
    	ctx := testContext(t)
    
    	// Creates compound/prefix transformers with different ordering of available transformers.
    	// Transforms data using one of them, and tries to untransform using the others.
    	// Repeats this for all possible combinations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  5. src/time/time.go

    	if t.wall&hasMonotonic == 0 {
    		return 0
    	}
    	return t.ext
    }
    
    // After reports whether the time instant t is after u.
    func (t Time) After(u Time) bool {
    	if t.wall&u.wall&hasMonotonic != 0 {
    		return t.ext > u.ext
    	}
    	ts := t.sec()
    	us := u.sec()
    	return ts > us || ts == us && t.nsec() > u.nsec()
    }
    
    // Before reports whether the time instant t is before u.
    func (t Time) Before(u Time) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	"golang.org/x/telemetry/internal/counter"
    	"golang.org/x/telemetry/internal/telemetry"
    )
    
    // reports generates reports from inactive count files
    func (u *uploader) reports(todo *work) ([]string, error) {
    	if mode, _ := u.dir.Mode(); mode == "off" {
    		return nil, nil // no reports
    	}
    	thisInstant := u.startTime
    	today := thisInstant.Format("2006-01-02")
    	lastWeek := latestReport(todo.uploaded)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    	req, _ := NewRequest("GET", ts.URL, nil)
    	defer tr.CancelRequest(req)
    
    	res, err := c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	const repeats = 3
    	buf := make([]byte, len(msg)*repeats)
    	want := bytes.Repeat(msg, repeats)
    
    	_, err = io.ReadFull(res.Body, buf)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(buf, want) {
    		t.Fatalf("read %q; want %q", buf, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. src/reflect/type.go

    	String() string
    
    	// Kind returns the specific kind of this type.
    	Kind() Kind
    
    	// Implements reports whether the type implements the interface type u.
    	Implements(u Type) bool
    
    	// AssignableTo reports whether a value of the type is assignable to type u.
    	AssignableTo(u Type) bool
    
    	// ConvertibleTo reports whether a value of the type is convertible to type u.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. src/runtime/libfuzzer_arm64.s

    #include "textflag.h"
    
    // Based on race_arm64.s; see commentary there.
    
    #define RARG0 R0
    #define RARG1 R1
    #define RARG2 R2
    #define RARG3 R3
    
    #define REPEAT_2(a) a a
    #define REPEAT_8(a) REPEAT_2(REPEAT_2(REPEAT_2(a)))
    #define REPEAT_128(a) REPEAT_2(REPEAT_8(REPEAT_8(a)))
    
    // void runtime·libfuzzerCallTraceIntCmp(fn, arg0, arg1, fakePC uintptr)
    // Calls C function fn from libFuzzer and passes 2 arguments to it after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 07 14:47:46 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/tests/aggregate-reports.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 95 bytes
    - Viewed (0)
Back to top