Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 473 for place (0.05 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

    import java.nio.file.Path;
    import java.util.Optional;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * The option of a command-line tool where to place the paths to some dependencies.
     * A {@code PathType} can identify the Java class-path, the Java module-path,
     * or another kind of path for another programming language for example.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/internal/types/testdata/spec/range.go

    func f8(func(MyInt, MyString) MyBool) {}
    
    func test() {
    	// TODO: Would be nice to 'for range T.M' and 'for range (*T).PM' directly,
    	// but there is no gofmt-friendly way to write the error pattern in the right place.
    	m1 := T.M
    	for range m1 /* ERROR "cannot range over m1 (variable of type func(T)): func must be func(yield func(...) bool): argument is not func" */ {
    	}
    	m2 := (*T).PM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 04:31:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/fixtures/PluginUnderTest.groovy

            this
        }
    
        PluginUnderTest noImplClasspath() {
            implClasspath = null
            this
        }
    
        List<File> getImplClasspath() {
            // TODO: This should come from a common place
            [projectDir.file("build/classes/java/main"),
             projectDir.file("build/classes/groovy/main"),
             projectDir.file('build/resources/main')]
        }
    
        PluginUnderTest build() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbol.kt

     */
    public inline fun <reified PSI : PsiElement> KaSymbol.sourcePsiSafe(): PSI? {
        if (origin != KaSymbolOrigin.SOURCE && origin != KaSymbolOrigin.JAVA_SOURCE) return null
    
        return psi as? PSI
    }
    
    /**
     * A place where [KaSymbol] came from
     */
    public enum class KaSymbolOrigin {
        /**
         * Declaration from Kotlin sources
         */
        SOURCE,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

                // currently only testing the IDE mode and (2) the test results between different modes should not differ for session
                // invalidation in the first place.
                testPrefix = resultFileSuffix,
            )
        }
    
        private fun checkSessionValidityBeforeModification(
            sessions: List<SESSION>,
            testServices: TestServices,
        ) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLoggingContainer.java

     *         // by assigning only 'failed' and 'skipped' events
     *         info.events = ["failed", "skipped"]
     *     }
     * }
     * </pre>
     *
     * The defaults that are in place show progressively more information
     * on log levels WARN, LIFECYCLE, INFO, and DEBUG, respectively.
     */
    public interface TestLoggingContainer extends TestLogging {
        /**
         * Returns logging options for debug level.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/fuse.go

    		// try to move it to a value in the next block,
    		// or to the next block's end, if possible.
    		b_next = bx.Succs[0].b
    		if bx.Pos.IsStmt() == src.PosIsStmt {
    			l := bx.Pos.Line() // looking for another place to mark for line l
    			outOfOrder := false
    			for _, v := range b_next.Values {
    				if v.Pos.IsStmt() == src.PosNotStmt {
    					continue
    				}
    				if l == v.Pos.Line() { // Found a Value with same line, therefore done.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. pilot/pkg/xds/adstest.go

    // limitations under the License.
    
    package xds
    
    import (
    	"context"
    	"sync"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	sds "github.com/envoyproxy/go-control-plane/envoy/service/secret/v3"
    	"google.golang.org/genproto/googleapis/rpc/status"
    	"google.golang.org/grpc"
    
    	"istio.io/istio/pilot/pkg/model"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/types.go

    	// Allocate configures and assigns devices to a container in a pod. From
    	// the requested device resources, Allocate will communicate with the
    	// owning device plugin to allow setup procedures to take place, and for
    	// the device plugin to provide runtime settings to use the device
    	// (environment variables, mount points and device files).
    	Allocate(pod *v1.Pod, container *v1.Container) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/cse_test.go

    	c := testConfig(t)
    	arg1Aux := &tstAux{"arg1-aux"}
    	arg2Aux := &tstAux{"arg2-aux"}
    	arg3Aux := &tstAux{"arg3-aux"}
    	a := c.Temp(c.config.Types.Int8.PtrTo())
    
    	// construct lots of values with args that have aux values and place
    	// them in an order that triggers the bug
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("start", OpInitMem, types.TypeMem, 0, nil),
    			Valu("sp", OpSP, c.config.Types.Uintptr, 0, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top