Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 629 for whatev (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

                to.attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_API))
                to.attribute(artifactType, 'final')
    
                if (hasExtraAttribute) {
                    from.attribute(extraAttribute, 'whatever')
                    to.attribute(extraAttribute, 'value1')
                }
            }
            registerTransform(TestTransform) { // B
                from.attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_API))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/BaseDirFileResolverTest.groovy

            assertEquals(new File(baseDir, 'with white%20space').toURI(), baseDirConverter.resolveUri('with white%20space'))
            assertEquals('with white%20space', baseDirConverter.resolve(baseDirConverter.resolveUri('with white%20space')).name)
        }
    
        @Test public void testResolveUriStringWithEncodedCharsToUri() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 17:15:52 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. src/go/types/object.go

    type color uint32
    
    // An object may be painted in one of three colors.
    // Color values other than white or black are considered grey.
    const (
    	white color = iota
    	black
    	grey // must be > white and black
    )
    
    func (c color) String() string {
    	switch c {
    	case white:
    		return "white"
    	case black:
    		return "black"
    	default:
    		return "grey"
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. src/text/scanner/scanner.go

    // in the source is a UTF-8 encoded byte order mark (BOM), it is discarded.
    //
    // By default, a [Scanner] skips white space and Go comments and recognizes all
    // literals as defined by the Go language specification. It may be
    // customized to recognize only a subset of those literals and to recognize
    // different identifier and white space characters.
    package scanner
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"os"
    	"unicode"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/dependencies/index.md

    ## What is "Dependency Injection"
    
    **"Dependency Injection"** means, in programming, that there is a way for your code (in this case, your *path operation functions*) to declare things that it requires to work and use: "dependencies".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // Test.
    //
    // Example:
    //
    // This will instantiate tests in test case AnimalTest each one with
    // the parameter values tuple("cat", BLACK), tuple("cat", WHITE),
    // tuple("dog", BLACK), and tuple("dog", WHITE):
    //
    // enum Color { BLACK, GRAY, WHITE };
    // class AnimalTest
    //     : public testing::TestWithParam<tuple<const char*, Color> > {...};
    //
    // TEST_P(AnimalTest, AnimalLooksNice) {...}
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataProcessorTest.groovy

            ModuleVersionResolveException e = thrown()
            e.message == /Unexpected status 'green' specified for group:module:version. Expected one of: [alpha, beta]/
        }
    
        def "process different type rules whatever addition order"() {
            given:
            context.injectingInstantiator >> instantiator
            String notation = "${GROUP}:${MODULE}"
            for (Object rule : rules) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

    -----------
    * Where:
    $LOCATION line: 42
    
    * What went wrong:
    Execution failed for null.
    {info}> {normal}org.gradle.internal.buildevents.TestCompilationFailureException (no error message)
    
    * Try:
    $INFO
    $SCAN
    ==============================================================================
    
    {failure}3: {normal}{failure}Task failed with an exception.{normal}
    -----------
    * What went wrong:
    <error>
    
    * Try:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. src/runtime/netpoll_solaris.go

    		}
    		if (ev.portev_events & (_POLLOUT | _POLLHUP | _POLLERR)) != 0 {
    			mode += 'w'
    			clear |= _POLLOUT
    		}
    		// To effect edge-triggered events, we need to be sure to
    		// update our association with whatever events were not
    		// set with the event. For example if we are registered
    		// for POLLIN|POLLOUT, and we get POLLIN, besides waking
    		// the goroutine interested in POLLIN we have to not forget
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    Gradle uses the declared type of each constructor parameter to determine the services that the object requires.
    The order of the constructor parameters and their names are not significant and can be whatever you like.
    
    Here is an example that shows a task type that receives an `ObjectFactory` via its constructor:
    
    ====
    [source.multi-language-sample,java]
    .Download.java
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top