Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 912 for regular (0.19 sec)

  1. test/typeparam/mdempsky/13.go

    // run
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // Interface which will be used as a regular interface type and as a type bound.
    type Mer interface{
    	M()
    }
    
    // Interface that is a superset of Mer.
    type Mer2 interface {
    	M()
    	String() string
    }
    
    func F[T Mer](t T) {
    	T.M(t)
    	t.M()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 14 17:55:47 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. pkg/volume/util/volumepathhandler/volume_path_handler_linux_test.go

    	testCases := []struct {
    		name          string
    		input         string
    		expectedOuput string
    	}{
    		{
    			name:          "regular path",
    			input:         defaultPath,
    			expectedOuput: defaultPath,
    		},
    		{
    			name:          "path is suffixed with whitespaces",
    			input:         fmt.Sprintf("%s\r\t\n ", defaultPath),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 13:53:00 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

         * <p>
         * This method does not access the file system.
         * It is agnostic to whether a given file object represents a regular file, directory or does not exist.
         * That is, the term “file” is used in the java.io.File sense, not the regular file sense.
         *
         * @param files the site of files to find the encompassing roots of
         * @return the encompassing roots
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/decls2/decls2b.go

    func (Foo /* ERROR "undefined" */ ) _(undefined /* ERROR "undefined" */ ) {}
    func (Foo /* ERROR "undefined" */ ) _() int { return "foo" /* ERRORx "cannot use .* in return statement" */ }
    
    // Receiver declarations are regular parameter lists;
    // receiver types may use parentheses, and the list
    // may have a trailing comma.
    type T7 struct {}
    
    func (T7) m1() {}
    func ((T7)) m2() {}
    func ((*T7)) m3() {}
    func (x *(T7),) m4() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemUtils.java

     * assist those clients that employ the repository system outside of an IoC container, Maven plugins should instead
     * always use regular dependency injection to acquire the repository system.
     *
     * @deprecated See {@link MavenSessionBuilderSupplier}
     */
    @Deprecated
    public final class MavenRepositorySystemUtils {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 09:51:56 UTC 2024
    - 2.4K bytes
    - Viewed (1)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/archives/TestReproducibleArchives.groovy

     * A Spock extension to run tests with reproducible archives enabled.
     *
     * We currently do not have reproducible archives enabled by default.
     * We still want to test if switching them on supports all the use cases we have with the regular archive tasks.
     * Placing this annotation on a Spock spec or feature will run the features twice, with and without reproducible archives enabled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

     *    // ... plugin implementation ...
     *    ```
     * ## Applying plugins
     * Precompiled script plugins can apply plugins much in the same way as regular scripts can, using one
     * of the many `apply` method overloads or, in the case of [Project] scripts, via the `plugins` block.
     *
     * And just as regular [Project] scripts can take advantage of
     * [type-safe model accessors](https://docs.gradle.org/current/userguide/kotlin_dsl.html#type-safe-accessors)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/alg.go

    const (
    	AUNK   AlgKind = iota
    	ANOEQ          // Types cannot be compared
    	ANOALG         // implies ANOEQ, and in addition has a part that is marked Noalg
    	AMEM           // Type can be compared/hashed as regular memory.
    	AMEM0          // Specific subvariants of AMEM (TODO: move to ../reflectdata?)
    	AMEM8
    	AMEM16
    	AMEM32
    	AMEM64
    	AMEM128
    	ASTRING
    	AINTER
    	ANILINTER
    	AFLOAT32
    	AFLOAT64
    	ACPLX64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/goversion.go

    	}
    	return lang{major: major, minor: minor}, nil
    }
    
    // currentLang returns the current language version.
    func currentLang() string {
    	return fmt.Sprintf("go1.%d", goversion.Version)
    }
    
    // goVersionRE is a regular expression that matches the valid
    // arguments to the -lang flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 21:36:02 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/session/CrossBuildSessionState.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.Closeable;
    import java.util.List;
    
    /**
     * Services to be shared across build sessions.
     * <p>
     * Generally, one regular Gradle invocation is conceptually a session.
     * However, the GradleBuild task is currently implemented in such a way that it uses a discrete session.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top