Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 130 for CUSTOM (0.16 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                    if (type.equals(Object.class)) {
                        continue;
                    }
                    if (type.equals(ServiceRegistry.class)) {
                        // Disallow custom services of type ServiceRegistry, as these are automatically provided
                        throw new IllegalArgumentException("Cannot define a service of type ServiceRegistry: " + serviceProvider);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

    """
    
            when:
            def metaData = parseMetaData()
    
            then:
            metaData.packaging == 'war'
        }
    
        @Issue("GRADLE-3074")
        def "pom with packaging defined by custom property in active profile of parent pom"() {
            given:
            def parent = tmpDir.file("parent.xml") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Sets.java

       * description of the returned view's behavior.
       *
       * <p><b>Warning:</b> {@code Range}s always represent a range of values using the values' natural
       * ordering. {@code NavigableSet} on the other hand can specify a custom ordering via a {@link
       * Comparator}, which can violate the natural ordering. Using this method (or in general using
       * {@code Range}) with unnaturally-ordered sets can lead to unexpected and undefined behavior.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      }
      // TODO(******@****.***): Remove this after making sure no clients use it.
      // Deprecated; please use message() instead.
      const char* failure_message() const { return message(); }
    
      // Streams a custom failure message into this object.
      template <typename T> AssertionResult& operator<<(const T& value) {
        AppendMessage(Message() << value);
        return *this;
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    	// "-unsafeptr",
    	// "-unusedresult",
    }
    
    func runTest(ctx context.Context, cmd *base.Command, args []string) {
    	pkgArgs, testArgs = testFlags(args)
    	modload.InitWorkfile() // The test command does custom flag processing; initialize workspaces after that.
    
    	if cfg.DebugTrace != "" {
    		var close func() error
    		var err error
    		ctx, close, err = trace.Start(ctx, cfg.DebugTrace)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      }
      // TODO(******@****.***): Remove this after making sure no clients use it.
      // Deprecated; please use message() instead.
      const char* failure_message() const { return message(); }
    
      // Streams a custom failure message into this object.
      template <typename T> AssertionResult& operator<<(const T& value) {
        AppendMessage(Message() << value);
        return *this;
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                                prefix, "version", problems, errOn30, Version.V20, d.getVersion(), d.getManagementKey(), d);
    
                        /*
                         * TODO Extensions like Flex Mojos use custom scopes like "merged", "internal", "external", etc. In
                         * order to don't break backward-compat with those, only warn but don't error out.
                         */
                        validateEnum(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            then:
            conf.attributes.getAttribute(targetPlatform) == Platform.JAVA6
            conf.attributes.getAttribute(runtimePlatform) == Platform.JAVA7
        }
    
        def "wraps attribute container to throw a custom exception"() {
            given:
            def conf = conf()
            def a1 = Attribute.of('a1', String)
    
            when:
            conf.markAsObserved()
            conf.getAttributes().attribute(a1, "a1")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     *
     * ```java
     * // The singleton HTTP client.
     * public final OkHttpClient client = new OkHttpClient();
     * ```
     *
     * Or use `new OkHttpClient.Builder()` to create a shared instance with custom settings:
     *
     * ```java
     * // The singleton HTTP client.
     * public final OkHttpClient client = new OkHttpClient.Builder()
     *     .addInterceptor(new HttpLoggingInterceptor())
     *     .cache(new Cache(cacheDir, cacheSize))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                prefix, "version", problems, errOn30, Version.V20, d.getVersion(), d.getManagementKey(), d);
    
                        /*
                         * TODO Extensions like Flex Mojos use custom scopes like "merged", "internal", "external", etc. In
                         * order to don't break backward-compat with those, only warn but don't error out.
                         */
                        validateEnum(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
Back to top