Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for live1 (0.1 sec)

  1. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         */
        interface CrossBuildSession extends Global {}
    
        /**
         * These services are reused across build invocations in a session.
         *
         * A build session can be long-lived in a continuous build (where these services would be reused) or short-lived in a
         * regular, single build.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    }
    
    // reset fills state with the live variables from live.
    func (state *stateAtPC) reset(live abt.T) {
    	slots, registers := state.slots, state.registers
    	for i := range slots {
    		slots[i] = VarLoc{}
    	}
    	for i := range registers {
    		registers[i] = registers[i][:0]
    	}
    	for it := live.Iterator(); !it.Done(); {
    		k, d := it.Next()
    		live := d.(*liveSlot)
    		slots[k] = live.VarLoc
    		if live.VarLoc.Registers == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. subprojects/build-events/build.gradle.kts

        integTestDistributionRuntimeOnly(project(":distributions-basics"))  {
            because("Requires ':toolingApiBuilders': Event handlers are in the wrong place, and should live in this project")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiExecution.groovy

                // This is a real problem on windows due to eager file locking and continuous CI failures.
                // On linux it's a lesser problem - long-lived daemons hung and steal resources but don't lock files.
                // So, for windows we'll only run tests against target gradle that supports ttl
                return false
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/build.gradle.kts

        implementation(libs.guava)
        implementation(libs.slf4jApi)
    
        runtimeOnly(project(":composite-builds"))
        runtimeOnly(project(":resources-http"))
        // TODO - move the isolatable serializer to model-core to live with the isolatable infrastructure
        runtimeOnly(project(":workers"))
    
        runtimeOnly(libs.kotlinReflect)
    
        testImplementation(projects.io)
        testImplementation(testFixtures(project(":core")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. docs/ko/docs/tutorial/body-nested-models.md

        "name": "Foo",
        "description": "The pretender",
        "price": 42.0,
        "tax": 3.2,
        "tags": ["rock", "metal", "bar"],
        "image": {
            "url": "http://example.com/baz.jpg",
            "name": "The Foo live"
        }
    }
    ```
    
    다시 한번, **FastAPI**를 사용하여 해당 선언을 함으로써 얻는 것은:
    
    * 중첩 모델도 편집기 지원(자동완성 등)
    * 데이터 변환
    * 데이터 검증
    * 자동 문서화
    
    ## 특별한 타입과 검증
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 12:49:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.test.preconditions.UnitTestPreconditions
    
    import static org.gradle.test.fixtures.ConcurrentTestUtil.poll
    
    // This test doesn't live in :instrumentation-agent to avoid the latter being implicitly added to
    // the test runtime classpath as part of the main source set's output.
    // It is important to have the agent appended to the classpath of all integration tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

                // Not supported on Java 6
            }
        }
    
        private final Map<Object, Object> userData = new HashMap<Object, Object>();
    
        /**
         * This method can be used to store user data that should live among with this classloader
         *
         * @param consumerId the consumer
         * @param onMiss called to create the initial data, when not found
         * @param <T> the type of data
         * @return user data
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

            outputContains("beanWithSameType.reference = null")
    
            where:
            concreteType                          | baseType                       | reference
            // Live JVM state
            ScriptClassLoader                     | ClassLoader                    | "getClass().classLoader"
            Thread                                | Thread                         | "Thread.currentThread()"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    		return v
    	}
    	v = s.fwdVars[n]
    	if v != nil {
    		return v
    	}
    
    	if s.curBlock == s.f.Entry {
    		// No variable should be live at entry.
    		s.f.Fatalf("value %v (%v) incorrectly live at entry", n, v)
    	}
    	// Make a FwdRef, which records a value that's live on block input.
    	// We'll find the matching definition as part of insertPhis.
    	v = s.newValue0A(ssa.OpFwdRef, t, fwdRefAux{N: n})
    	s.fwdVars[n] = v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top