Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 350 for regular (0.67 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractPluginValidatingSmokeTest.groovy

            }
            result
        }
    
        @UnsupportedWithConfigurationCache(
            because = "some plugins are not compatible with the configuration cache but it doesn't really matter because we get the results with the regular test suite"
        )
        def "performs static analysis of plugin #id version #version"() {
            def extraPluginsBlock = getExtraPluginsRequiredForValidation(id, version).collect { pluginId, pluginVersion ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/plugin-exec-order-and-default-exec/pom.xml

      <description>
        Verify that default plugin executions contributed by the packaging are executed before user-defined
        executions from the POM's build section, regardless whether the executions are defined in the regular
        plugins section or the plugin management section.
      </description>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <artifactId>maven-resources-plugin</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/ProjectLibraryBinaryLocator.java

            this.projectModelResolver = projectModelResolver;
            this.domainObjectCollectionFactory = domainObjectCollectionFactory;
        }
    
        // Converts the binaries of a project library into regular binary instances
        @Nullable
        @Override
        public DomainObjectSet<NativeLibraryBinary> getBinaries(LibraryIdentifier libraryIdentifier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_netbsd.c

    	stack_t ss;
    
    	ts = *(ThreadStart*)v;
    	free(v);
    
    	// On NetBSD, a new thread inherits the signal stack of the
    	// creating thread. That confuses minit, so we remove that
    	// signal stack here before calling the regular mstart. It's
    	// a bit baroque to remove a signal stack here only to add one
    	// in minit, but it's a simple change that keeps NetBSD
    	// working like other OS's. At this point all signals are
    	// blocked, so there is no race.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 03:55:51 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top