Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 71 for pos3 (0.12 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MOVDstorezero {s} [i] ptr x:(MOVDstorezero {s} [i+8] ptr mem)) && x.Uses == 1 && setPos(v, x.Pos) && clobber(x) => (MOVQstorezero {s} [i] ptr mem)
    (MOVDstorezero {s} [i] ptr x:(MOVDstorezero {s} [i-8] ptr mem)) && x.Uses == 1 && setPos(v, x.Pos) && clobber(x) => (MOVQstorezero {s} [i-8] ptr mem)
    
    // strip off fractional word move
    (Move [s] dst src mem) && s%16 != 0 && s%16 <= 8 && s > 16 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    // See issue 55122 for details.
    //
    // Because expand calls runs after prove, constants useful to this pattern may not appear.
    // Both versions need to exist; the memory and register variants.
    //
    // Match post-expansion calls, memory version.
    (SelectN [0] call:(StaticCall {sym} s1:(Store _ (Const(64|32) [sz]) s2:(Store  _ src s3:(Store {t} _ dst mem)))))
    	&& sz >= 0
    	&& isSameCall(sym, "runtime.memmove")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

              </description>
              <type>String</type>
            </field>
            <field>
              <name>post</name>
              <version>3.0.0+</version>
              <description>
                The email address or link that can be used to post to
                the mailing list.  If this is an email address, a
                {@code mailto:} link will automatically be created
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	return randomEnum{
    		count: ord.count,
    		pos:   i % ord.count,
    		inc:   ord.coprimes[i/ord.count%uint32(len(ord.coprimes))],
    	}
    }
    
    func (enum *randomEnum) done() bool {
    	return enum.i == enum.count
    }
    
    func (enum *randomEnum) next() {
    	enum.i++
    	enum.pos = (enum.pos + enum.inc) % enum.count
    }
    
    func (enum *randomEnum) position() uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    kind: VirtualService
    metadata:
      name: default
    spec:
      hosts:
        - {{ .dstSvc }}
      http:
      - corsPolicy:
          allowOrigins:
          - exact: cors.com
          allowMethods:
          - POST
          - GET
          allowCredentials: false
          allowHeaders:
          - X-Foo-Bar
          - X-Foo-Baz
          maxAge: "24h"
        route:
        - destination:
            host: {{ .dstSvc }}
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    pm
    
    // pn : http://www.government.pn/PnRegistry/policies.htm
    pn
    gov.pn
    co.pn
    org.pn
    edu.pn
    net.pn
    
    // post : https://en.wikipedia.org/wiki/.post
    post
    
    // pr : http://www.nic.pr/index.asp?f=1
    pr
    com.pr
    net.pr
    org.pr
    gov.pr
    edu.pr
    isla.pr
    pro.pr
    biz.pr
    info.pr
    name.pr
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    			c.n++
    			x.last = x.last[:i+1]
    			return true
    		}
    	}
    	return false
    }
    
    func (x *exhaustive) Choose(max int) int {
    	if x.pos >= len(x.last) {
    		x.last = append(x.last, choice{x.r.Intn(max), 0, max})
    	}
    	c := &x.last[x.pos]
    	x.pos++
    	if c.max != max {
    		panic("inconsistent use of exhaustive tester")
    	}
    	return (c.n + c.off) % max
    }
    
    func (x *exhaustive) Maybe() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_FACSIMILE_TELEPHONE_NUMBER = "{labels.facsimileTelephoneNumber}";
    
        /** The key of the message: Post Office Box */
        public static final String LABELS_user_postOfficeBox = "{labels.user_postOfficeBox}";
    
        /** The key of the message: Post Office Box */
        public static final String LABELS_POST_OFFICE_BOX = "{labels.postOfficeBox}";
    
        /** The key of the message: Initials */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	// in nodecontroller. There are several constraints:
    	// 1. nodeMonitorGracePeriod must be N times more than nodeStatusUpdateFrequency, where
    	//    N means number of retries allowed for kubelet to post node status. It is pointless
    	//    to make nodeMonitorGracePeriod be less than nodeStatusUpdateFrequency, since there
    	//    will only be fresh values from Kubelet at an interval of nodeStatusUpdateFrequency.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                      - pilot-agent
                      - request
                      - --debug-port={{(annotation .ObjectMeta `status.sidecar.istio.io/port` .Values.global.proxy.statusPort)}}
                      - POST
                      - drain
              {{- end }}
                env:
                {{- if eq (env "PILOT_ENABLE_INBOUND_PASSTHROUGH" "true") "false" }}
                - name: REWRITE_PROBE_LEGACY_LOCALHOST_DESTINATION
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
Back to top