Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 162 for tings (0.1 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/internal/IncludeType.java

        /**
         * A single character that is not an identifier. These appear as the arguments to a {@link #MACRO_FUNCTION} eg {@code #include ABC((a b, c))}.
         */
        TOKEN,
        /**
         * All other expressions. These things cannot be resolved to an include path.
         */
        OTHER
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ResourceFilterMatcher.java

    import javax.annotation.Nullable;
    import java.util.Set;
    /**
     * The model of an Eclipse resource filter matcher.
     * <p>
     * The matcher decides when the containing filter (or containing matcher) applies.  The
     * matcher configures things like whether this ResourceFilter matches resources by
     * name, project relative path, location, last modified, etc.  Eclipse has many types
     * of built-in matchers and it is possible to specify the id and arguments for custom
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3ConnectorFactory.java

                // We get only the first element here, nothing else. But Collection
                // forces us to use an iterator.
                if (authentication instanceof AllSchemesAuthentication) {
                    // First things first, retro compatibility
                    AwsCredentials awsCredentials = connectionDetails.getCredentials(AwsCredentials.class);
                    if (awsCredentials == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/AbstractMinimalProviderTest.groovy

            then:
            def e = thrown(IllegalStateException)
            e.message == 'Cannot query the value of this provider because it has no value available.'
        }
    
        def "toString() displays nice things"() {
            expect:
            new TestProvider().toString() == "provider(java.lang.String)"
        }
    
        static class TestProvider extends AbstractMinimalProvider {
            @Nullable
            String value
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/CompositeStoppable.java

    import java.io.Closeable;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * A {@link org.gradle.internal.concurrent.Stoppable} that stops a collection of things. If an element implements
     * {@link java.io.Closeable} or {@link org.gradle.internal.concurrent.Stoppable} then the appropriate close/stop
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/encoding/Identifier.java

        public static Identifier getNonAscii() {
            if (OperatingSystem.current().isMacOsX()) {
                // The hfs+ file system stores file names in decomposed form. Don't use precomposed characters on macOS, as way too few things normalise text correctly
                return new Identifier(NON_PRECOMPOSED_NON_ASCII, "non-ascii");
            }
            return new Identifier(NON_ASCII_CHARS, "non-ascii");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/runlit.site.cfg.py

    # limitations under the License.
    """Lit runner site configuration."""
    
    import os
    import platform
    import lit.llvm
    
    # Handle the test srcdir for platforms. On windows, things are weird with bazel.
    if platform.system() == 'Windows':
      srcdir = os.environ['TEST_SRCDIR']
      real_test_srcdir = srcdir[:srcdir.find('tensorflow/compiler/mlir')]
      external_srcdir = os.path.join(real_test_srcdir, 'external')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentResolveMetadata.java

         * module versions to the more general component instances. Currently, the module version and component identifiers are used interchangeably. However, over
         * time more things will use the component identifier. At some point, the module version identifier will become optional for a component.
         */
        ModuleVersionIdentifier getModuleVersionId();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ReportContainer.java

    import java.util.List;
    import java.util.Map;
    import java.util.SortedMap;
    import java.util.SortedSet;
    
    /**
     * A container of {@link Report} objects, that represent potential reports.
     * <p>
     * Things that produce reports (typically tasks) expose a report container that contains {@link Report} objects for each
     * possible report that they can produce. Each report object can be configured individually, including whether or not it should
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/apiextensions.go

    	masterCount int,
    	serviceResolver webhook.ServiceResolver,
    	authResolverWrapper webhook.AuthenticationInfoResolverWrapper,
    ) (*apiextensionsapiserver.Config, error) {
    	// make a shallow copy to let us twiddle a few things
    	// most of the config actually remains the same.  We only need to mess with a couple items related to the particulars of the apiextensions
    	genericConfig := kubeAPIServerConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top