Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 316 for place (0.24 sec)

  1. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/codegen/FunctionSinceRepository.kt

                            // This is a hack.
                            //
                            // qdox doesn't understand annotations placed in generic type parameters
                            // The only place we use this is with Nullable, so this hackily removes the annotation when
                            // the source file is processed by qdox.
                            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    	`)))
    )
    
    // NewWaitControlPlanePhase is a hidden phase that runs after the control-plane and etcd phases
    func NewWaitControlPlanePhase() workflow.Phase {
    	phase := workflow.Phase{
    		Name:  "wait-control-plane",
    		Short: "Wait for the control plane to start",
    		// TODO: unhide this phase once WaitForAllControlPlaneComponents goes GA:
    		// https://github.com/kubernetes/kubeadm/issues/2907
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/gotoolchain_issue66175.txt

    env GOTOOLCHAIN=go1.21+path
    ! go version
    stderr 'go: cannot find "go1.21" in PATH'
    
    env GOTOOLCHAIN=go1.22+path
    ! go version
    stderr 'go: cannot find "go1.22" in PATH'
    
    # When a toolchain download takes place, download 1.X.0
    env GOTOOLCHAIN=auto
    rm go.mod
    go mod init m
    go mod edit -go=1.300 -toolchain=none
    ! go version
    stderr 'go: downloading go1.300.0 '
    
    rm go.mod
    go mod init m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 21:32:07 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/request-forms.md

    ## About "Form Fields"
    
    The way HTML forms (`<form></form>`) sends the data to the server normally uses a "special" encoding for that data, it's different from JSON.
    
    **FastAPI** will make sure to read that data from the right place instead of JSON.
    
    !!! note "Technical Details"
        Data from forms is normally encoded using the "media type" `application/x-www-form-urlencoded`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. tests/integration/pilot/revisioned_upgrade_test.go

    func testUpgradeFromVersion(t framework.TestContext, fromVersion string) {
    	configs := make(map[string]string)
    	t.CleanupConditionally(func() {
    		for _, config := range configs {
    			_ = t.ConfigIstio().YAML("istio-system", config).Delete()
    		}
    	})
    
    	// install control plane on the specified version and create namespace pointed to that control plane
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         *
         * <p>
         * This method can also be used to discard the value of the property, by passing it {@code null}. When the
         * value is discarded (or has never been set in the first place), the convention (default value) for this
         * property, if specified, will be used to provide the value instead.
         * </p>
         *
         * @param value The value, can be null.
         */
        void set(@Nullable T value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedInputAccessListener.kt

    private
    val allowedProperties = setOf(
        "os.name",
        "os.version",
        "os.arch",
        // TODO(https://github.com/gradle/gradle/issues/18432) Remove this from the list when a proper support for the modifications is in place.
        "java.awt.headless", // Some popular plugins modify this property at runtime.
        "java.version",
        "java.version.date",
        "java.vendor",
        "java.vendor.url",
        "java.vendor.version",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. internal/config/subnet/config.go

    	}
    	if c.APIKey != "" {
    		os.Setenv("CONSOLE_SUBNET_API_KEY", c.APIKey)
    	}
    	if c.Proxy != "" {
    		os.Setenv("CONSOLE_SUBNET_PROXY", c.Proxy)
    	}
    	os.Setenv("CONSOLE_SUBNET_URL", c.BaseURL)
    }
    
    // Update - in-place update with new license and registration information.
    func (c *Config) Update(ncfg Config, isDevEnv bool) {
    	configLock.Lock()
    	defer configLock.Unlock()
    
    	c.License = ncfg.License
    	c.APIKey = ncfg.APIKey
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/runtime/tracetime.go

    // traceFrequency writes a batch with a single EvFrequency event.
    //
    // freq is the number of trace clock units per second.
    func traceFrequency(gen uintptr) {
    	w := unsafeTraceWriter(gen, nil)
    
    	// Ensure we have a place to write to.
    	w, _ = w.ensure(1 + traceBytesPerNumber /* traceEvFrequency + frequency */)
    
    	// Write out the string.
    	w.byte(byte(traceEvFrequency))
    	w.varint(traceClockUnitsPerSecond())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/copyelim.go

    //	w = phi(v, w, x)
    //
    // and would that be useful?
    func phielim(f *Func) {
    	for {
    		change := false
    		for _, b := range f.Blocks {
    			for _, v := range b.Values {
    				// This is an early place in SSA where all values are examined.
    				// Rewrite all 0-sized Go values to remove accessors, dereferences, loads, etc.
    				if t := v.Type; (t.IsStruct() || t.IsArray()) && t.Size() == 0 {
    					if t.IsStruct() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top