Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for v$1 (0.05 sec)

  1. src/text/template/exec_test.go

    	{"bug16g", "{{\"aaa\" |twoArgs \"bbb\"}}", "twoArgs=bbbaaa", tVal, true},
    	{"bug16h", "{{1|oneArg}}", "", tVal, false},
    	{"bug16i", "{{\"aaa\"|oneArg}}", "oneArg=aaa", tVal, true},
    	{"bug16j", "{{1+2i|printf \"%v\"}}", "(1+2i)", tVal, true},
    	{"bug16k", "{{\"aaa\"|printf }}", "aaa", tVal, true},
    	{"bug17a", "{{.NonEmptyInterface.X}}", "x", tVal, true},
    	{"bug17b", "-{{.NonEmptyInterface.Method1 1234}}-", "-1234-", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers_test.go

    	}
    	drainAllWorkers(podWorkers)
    	if len(processed) != 1 {
    		t.Fatalf("len(processed) expected: %v, actual: %#v", 1, processed)
    	}
    	syncPodRecords := processed[pod.UID]
    	if len(syncPodRecords) != 2 {
    		t.Fatalf("Pod processed expected %v times, got %#v", 1, syncPodRecords)
    	}
    	if syncPodRecords[0].updateType != kubetypes.SyncPodKill {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm/asm5.go

    	// omit trailing 00
    	var i uint32
    	for i = 2; i < 32; i += 2 {
    		if v&(1<<i-1) != 0 {
    			break
    		}
    	}
    	// i must be <= 24, then adjust i just above lower 8 effective bits of v
    	i += 6
    	// let x = {the complement of lower 8 effective bits, trailing 00}, y = x + v
    	x := 1<<i - v&(1<<i-1)
    	y := v + x
    	if y, x = uint32(immrot(y)), uint32(immrot(x)); y != 0 && x != 0 {
    		return y, x
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    	}
    	return -1
    }
    
    // SetPlt sets the PLT offset of symbol i.
    func (l *Loader) SetPlt(i Sym, v int32) {
    	if i >= Sym(len(l.objSyms)) || i == 0 {
    		panic("bad symbol for SetPlt")
    	}
    	if v == -1 {
    		delete(l.plt, i)
    	} else {
    		l.plt[i] = v
    	}
    }
    
    // SymGot returns the GOT offset of symbol s.
    func (l *Loader) SymGot(s Sym) int32 {
    	if v, ok := l.got[s]; ok {
    		return v
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    "tf_saved_model.global_tensor"() { sym_name = "v" ... }
    func @f(%arg0 {tf_saved_model.bound_input = @v}) {
      %1 = "tf.ReadVariableOp"(%arg0)
      ...
    }
    
    to
    
    func @f(%arg0 {tf_saved_model.bound_input = @v}) {
      %0 = "tf.VarHandleOp"(sym_name = "v")
      %1 = "tf.ReadVariableOp"(%0)
      ...
    }
    
    Note that this pass might leave behind unused values
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/js/jquery-3.2.1.slim.min.js

    c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?I(k,a)-I(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?la(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(S,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 68K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                        return new Pair<>(x, x);
                    }
                    if (v.length == 2) {
                        final int x = DfTypeUtil.toInteger(v[0].trim());
                        final int y = DfTypeUtil.toInteger(v[1].trim());
                        return new Pair<>(x, y);
                    }
                    return null;
                }).filter(v -> v != null).collect(Collectors.toMap(Pair::getFirst, Pair::getSecond)));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. tests/query_test.go

    		t.Fatalf("Build OR condition, but got %v", result.Statement.SQL.String())
    	}
    }
    
    type Int64 int64
    
    func (v Int64) Value() (driver.Value, error) {
    	return v - 1, nil
    }
    
    func (f *Int64) Scan(v interface{}) error {
    	y := v.(int64)
    	*f = Int64(y + 1)
    	return nil
    }
    
    func TestPluck(t *testing.T) {
    	users := []*User{
    		GetUser("pluck-user1", Config{}),
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  9. src/net/http/httputil/reverseproxy_test.go

    		Director: func(req *http.Request) {
    			req.Header.Set("From-Director", "1")
    		},
    		Transport: roundTripperFunc(func(req *http.Request) (*http.Response, error) {
    			if v := req.Header.Get("From-Director"); v != "1" {
    				t.Errorf("From-Directory value = %q; want 1", v)
    			}
    			return nil, io.EOF
    		}),
    	}
    	rp.ServeHTTP(httptest.NewRecorder(), req)
    
    	for _, h := range []string{
    		"From-Director",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    // the active profile.
    type mProfCycleHolder struct {
    	value atomic.Uint32
    }
    
    // read returns the current cycle count.
    func (c *mProfCycleHolder) read() (cycle uint32) {
    	v := c.value.Load()
    	cycle = v >> 1
    	return cycle
    }
    
    // setFlushed sets the flushed flag. It returns the current cycle count and the
    // previous value of the flushed flag.
    func (c *mProfCycleHolder) setFlushed() (cycle uint32, alreadyFlushed bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top