Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for pubs (0.05 sec)

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

    (FNEG (F(ABS|NABS) x)) => (F(NABS|ABS) x)
    
    // floating-point fused multiply-add/sub
    (F(ADD|SUB) (FMUL x y) z) && x.Block.Func.useFMA(v) => (FM(ADD|SUB) x y z)
    (F(ADDS|SUBS) (FMULS x y) z) && x.Block.Func.useFMA(v) => (FM(ADDS|SUBS) x y z)
    
    // Arch-specific inlining for small or disjoint runtime.memmove
    (SelectN [0] call:(CALLstatic {sym} s1:(MOVDstore _ (MOVDconst [sz]) s2:(MOVDstore  _ src s3:(MOVDstore {t} _ dst mem)))))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. src/crypto/x509/name_constraints_test.go

    			rootPool := NewCertPool()
    			rootKey := privateKeys.Get().(*ecdsa.PrivateKey)
    			rootName := "Root " + strconv.Itoa(i)
    
    			// keys keeps track of all the private keys used in a given
    			// test and puts them back in the privateKeys pool at the end.
    			keys := []*ecdsa.PrivateKey{rootKey}
    
    			// At each level (root, intermediate(s), leaf), parent points to
    			// an example parent certificate and parentKey the key for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. src/net/url/url.go

    				// that are valid host name bytes in their unescaped form.
    				// That is, you can use escaping in the zone identifier but not
    				// to introduce bytes you couldn't just write directly.
    				// But Windows puts spaces here! Yay.
    				v := unhex(s[i+1])<<4 | unhex(s[i+2])
    				if s[i:i+3] != "%25" && v != ' ' && shouldEscape(v, encodeHost) {
    					return "", EscapeError(s[i : i+3])
    				}
    			}
    			i += 3
    		case '+':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            when:
            config.resolve()
    
            then:
            parent.observedState == ConfigurationInternal.InternalState.GRAPH_RESOLVED
        }
    
        def "resolving configuration puts it into the right state and broadcasts events"() {
            def listenerBroadcaster = Mock(AnonymousListenerBroadcast)
            def listener = Mock(DependencyResolutionListener)
            def config
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	reflector.WatchListPageSize = storageWatchListPageSize
    	// When etcd loses leader for 3 cycles, it returns error "no leader".
    	// We don't want to terminate all watchers as recreating all watchers puts high load on api-server.
    	// In most of the cases, leader is reelected within few cycles.
    	reflector.MaxInternalErrorRetryDuration = time.Second * 30
    	// since the watch-list is provided by the watch cache instruct
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    // and deletes requirements on paths not in req. Existing duplicate requirements
    // are deleted.
    //
    // As its name suggests, SetRequireSeparateIndirect puts direct and indirect
    // requirements into two separate blocks, one containing only direct
    // requirements, and the other containing only indirect requirements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  7. src/net/http/request.go

    //
    // For all requests, ParseForm parses the raw query from the URL and updates
    // r.Form.
    //
    // For POST, PUT, and PATCH requests, it also reads the request body, parses it
    // as a form and puts the results into both r.PostForm and r.Form. Request body
    // parameters take precedence over URL query string values in r.Form.
    //
    // If the request Body's size has not already been limited by [MaxBytesReader],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    func gcWakeAllAssists() {
    	lock(&work.assistQueue.lock)
    	list := work.assistQueue.q.popList()
    	injectglist(&list)
    	unlock(&work.assistQueue.lock)
    }
    
    // gcParkAssist puts the current goroutine on the assist queue and parks.
    //
    // gcParkAssist reports whether the assist is now satisfied. If it
    // returns false, the caller must retry the assist.
    func gcParkAssist() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "SBCSflags", argLength: 3, reg: gp2flags1flags, typ: "(UInt64,Flags)", asm: "SBCS"},                    // arg0-(arg1+borrowing), set flags.
    		{name: "SUBSflags", argLength: 2, reg: gp21flags, typ: "(UInt64,Flags)", asm: "SUBS"},                         // arg0 - arg1, set flags.
    		{name: "MUL", argLength: 2, reg: gp21, asm: "MUL", commutative: true},                                         // arg0 * arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set_test.go

    			if replicas != 0 {
    				// This is the number of pods currently "in flight". They were created by the
    				// ReplicaSet controller above, which then puts the ReplicaSet to sleep till
    				// all of them have been observed.
    				expectedPods = replicas - activePods
    				if expectedPods > int32(burstReplicas) {
    					expectedPods = int32(burstReplicas)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top