Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for extr6 (0.49 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                    configurations {
                        foo.attributes { $freeDebug; attribute(extra, 'extra') }
                        foo2.attributes { $freeDebug; attribute(extra, 'extra 2') }
                        bar.attributes { $freeRelease; attribute(extra, 'extra') }
                        bar2.attributes { $freeRelease; attribute(extra, 'extra 2') }
                    }
                    task fooJar(type: Jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  2. src/runtime/map.go

    	h.nevacuate = 0
    	h.noverflow = 0
    
    	if h.extra != nil && h.extra.overflow != nil {
    		// Promote current overflow buckets to the old generation.
    		if h.extra.oldoverflow != nil {
    			throw("oldoverflow is not nil")
    		}
    		h.extra.oldoverflow = h.extra.overflow
    		h.extra.overflow = nil
    	}
    	if nextOverflow != nil {
    		if h.extra == nil {
    			h.extra = new(mapextra)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    		pState.status = go122.ProcSyscallAbandoned
    		newCtx.P = NoProc
    
    		// Queue an extra self-ProcSteal event.
    		extra := makeEvent(evt, curCtx, go122.EvProcSteal, ev.time, uint64(curCtx.P))
    		extra.base.extra(version.Go122)[0] = uint64(go122.ProcSyscall)
    		o.queue.push(extra)
    	}
    	o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    	return newCtx, true, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * of the corresponding getter or setter method.</li>
     *
     * <li>The extra properties of the project.  Each project maintains a map of extra properties, which
     * can contain any arbitrary name -&gt; value pair.  Once defined, the properties of this scope are readable and writable.
     * See <a href="#extraproperties">extra properties</a> for more details.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. src/testing/testing.go

    		m.after()
    		debug.SetTraceback("all")
    		extra := ""
    
    		if list := runningList(); len(list) > 0 {
    			var b strings.Builder
    			b.WriteString("\nrunning tests:")
    			for _, name := range list {
    				b.WriteString("\n\t")
    				b.WriteString(name)
    			}
    			extra = b.String()
    		}
    		panic(fmt.Sprintf("test timed out after %v%s", *timeout, extra))
    	})
    	return deadline
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. cmd/erasure-object.go

    		// Make sure to return object info to provide extra information.
    		return objInfo, wquorum, toObjectErr(errMethodNotAllowed, bucket, object)
    	}
    
    	if fi.Deleted {
    		if opts.VersionID == "" || opts.DeleteMarker {
    			return objInfo, wquorum, toObjectErr(errFileNotFound, bucket, object)
    		}
    		// Make sure to return object info to provide extra information.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    		return fixedURL, nil
    	}
    }
    
    // transportRequest is a wrapper around a *Request that adds
    // optional extra headers to write and stores any error to return
    // from roundTrip.
    type transportRequest struct {
    	*Request                        // original request, not to be mutated
    	extra    Header                 // extra headers to write, or nil
    	trace    *httptrace.ClientTrace // optional
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/time/format.go

    	stdNeedDate       = 1 << 8             // need month, day, year
    	stdNeedClock      = 2 << 8             // need hour, minute, second
    	stdArgShift       = 16                 // extra argument in high bits, above low stdArgShift
    	stdSeparatorShift = 28                 // extra argument in high 4 bits for fractional second separators
    	stdMask           = 1<<stdArgShift - 1 // mask out argument
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    				// changed. Start over to pick up the changes. (Preloading roots is much
    				// cheaper than loading the full import graph, so we would rather pay
    				// for an extra iteration of preloading than potentially end up
    				// discarding the result of a full iteration of loading.)
    				continue
    			}
    		}
    
    		inRoots := map[*loadPkg]bool{}
    		for _, path := range rootPkgs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    			}
    			c.CryptBlocks(payload, payload)
    
    			// In a limited attempt to protect against CBC padding oracles like
    			// Lucky13, the data past paddingLen (which is secret) is passed to
    			// the MAC function as extra data, to be fed into the HMAC after
    			// computing the digest. This makes the MAC roughly constant time as
    			// long as the digest computation is constant time and does not
    			// affect the subsequent write, modulo cache effects.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top