Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 629 for whatev (0.11 sec)

  1. gradle-white-primary.png

    gradle-white-primary.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 24 10:43:55 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. docs/en/docs/img/logo-margin/logo-white-bg.png

    logo-white-bg.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. src/internal/trace/trace_test.go

    				case trace.EventLog:
    					log := ev.Log()
    					match = log.Task == wantEv.task && log.Category == wantEv.args[0] && log.Message == wantEv.args[1]
    				}
    				if match {
    					want[i] = want[len(want)-1]
    					want = want[:len(want)-1]
    					break
    				}
    			}
    		}
    		if len(want) != 0 {
    			for _, ev := range want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            where:
            input                    | className                 | methodName            | match
            ["FooTest"]              | "FooTest"                 | "whatever"            | true
            ["FooTest"]              | "fooTest"                 | "whatever"            | false
    
            ["com.foo.FooTest"]      | "com.foo.FooTest"         | "x"                   | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. src/math/big/natdiv.go

    		// and in long division, because we know that q̂ is wrong by at most one.
    		qhatv := tmp.make(3 * n)
    		clear(qhatv)
    		qhatv = qhatv.mul(qhat, v[:s])
    		for i := 0; i < 2; i++ {
    			e := qhatv.cmp(uu.norm())
    			if e <= 0 {
    				break
    			}
    			subVW(qhat, qhat, 1)
    			c := subVV(qhatv[:s], qhatv[:s], v[:s])
    			if len(qhatv) > s {
    				subVW(qhatv[s:], qhatv[s:], c)
    			}
    			addAt(uu[s:], v[s:], 0)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  6. src/cmd/trace/tasks.go

    			last := t.startTime()
    			for _, ev := range rawEvents {
    				what := describeEvent(ev)
    				if what == "" {
    					continue
    				}
    				sinceStart := ev.Time().Sub(t.startTime())
    				events = append(events, event{
    					WhenString: fmt.Sprintf("%2.9f", sinceStart.Seconds()),
    					Elapsed:    ev.Time().Sub(last),
    					What:       what,
    					Goroutine:  primaryGoroutine(ev),
    				})
    				last = ev.Time()
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. src/net/http/roundtrip_js.go

    // code path.
    var jsFetchDisabled = js.Global().Get("process").Type() == js.TypeObject &&
    	strings.HasPrefix(js.Global().Get("process").Get("argv0").String(), "node")
    
    // RoundTrip implements the [RoundTripper] interface using the WHATWG Fetch API.
    func (t *Transport) RoundTrip(req *Request) (*Response, error) {
    	// The Transport has a documented contract that states that if the DialContext or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. pkg/kube/util_test.go

    					Name:        "bar",
    					Labels:      map[string]string{"a": "b"},
    					Annotations: map[string]string{"c": "d"},
    					ManagedFields: []metav1.ManagedFieldsEntry{
    						{
    							Manager: "whatever",
    						},
    					},
    				},
    			},
    			want: &corev1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace:   "foo",
    					Name:        "bar",
    					Labels:      map[string]string{"a": "b"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/html.go

        ];
    
        // Iterate over the svgParts specifically looking for white and black fill/stroke to be toggled.
        // The verbose conditional is intentional here so that we do not mutate any svg path, ellipse, or polygon that is of any color other than white or black.
        svgParts.forEach(el => {
            if (el.attributes.stroke.value === 'white') {
                el.attributes.stroke.value = 'black';
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        predicate condition, and returns two values matching the type of the data
        predicate.
      }];
    
      let description = [{
        More details can be found in Tensorflow Control Flow white paper:
        https://storage.googleapis.com/download.tensorflow.org/paper/white_paper_tf_control_flow_implementation_2017_11_1.pdf
    
        This is defined in TensorFlow as:
    
        REGISTER_OP("Switch")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
Back to top