Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 190 for too (0.04 sec)

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

            buildscriptDestination << """
                buildscript {
                    // Build script classpath is resolved via ${INSTRUMENTED_ATTRIBUTE.name} attribute,
                    // so we have to set that attribute too to make transform run
                    def artifactType = Attribute.of('artifactType', String)
                    def instrumented = Attribute.of('${INSTRUMENTED_ATTRIBUTE.name}', String.class)
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

      - Value: 'extra' selects variant: 'foo'"""
        }
    
        /**
         * If a configuration defines attributes, and that the target project declares configurations
         * with attributes too, should the attributes of parent configurations in the target project
         * be used?
         *
         * This test implements option 2, "no", which basically means that attributes of a configuration
         * are never inherited.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_test.go

    	// can't take "0" as an argument here so we have to pick a number and
    	// hope that it's not in use on the machine. Since this only occurs
    	// when -update is given and thus when there's a human watching the
    	// test, this isn't too bad.
    	const serverPort = 24323
    	command = append(command, "-accept", strconv.Itoa(serverPort))
    
    	if len(test.extensions) > 0 {
    		var serverInfo bytes.Buffer
    		for _, ext := range test.extensions {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/SetsTest.java

        assertFalse(i.hasNext());
        try {
          i.next();
          fail();
        } catch (NoSuchElementException expected) {
        }
      }
    
      @GwtIncompatible // too slow for GWT
      public void testPowerSetIteration_iteratorTester() {
        ImmutableSet<Integer> elements = ImmutableSet.of(1, 2);
    
        Set<Set<Integer>> expected = newLinkedHashSet();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    doFirst {
                        params.initial = 15 // should have an effect
                        provider.get().reset()
                        params.initial = 1234 // should be ignored. Ideally should fail too
                    }
                }
    
                task second {
                    dependsOn first
                    doFirst {
                        provider.get().increment()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    On the other hand, the names and paths of the directories and jar files on the classpath itself are ignored.
    Timestamps and the order of class files and resources inside jar files on a classpath are ignored, too, thus recreating a jar file with different file dates will not make the task out of date.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      bool success_;
      // Stores the message describing the condition in case the expectation
      // construct is not satisfied with the predicate's outcome.
      // Referenced via a pointer to avoid taking too much stack frame space
      // with test assertions.
      internal::scoped_ptr< ::std::string> message_;
    
      GTEST_DISALLOW_ASSIGN_(AssertionResult);
    };
    
    // Makes a successful assertion result.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      bool success_;
      // Stores the message describing the condition in case the expectation
      // construct is not satisfied with the predicate's outcome.
      // Referenced via a pointer to avoid taking too much stack frame space
      // with test assertions.
      internal::scoped_ptr< ::std::string> message_;
    
      GTEST_DISALLOW_ASSIGN_(AssertionResult);
    };
    
    // Makes a successful assertion result.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        /**
         * Finds constructors with a given [targetClassName] available within the [scope], including SAM constructors
         * (which are not explicitly declared in the class).
         *
         * Includes type-aliased constructors too if typealias confirms to the [targetClassName].
         *
         * Do not confuse with constructors **declared** in the scope (see [FirScope.processDeclaredConstructors]).
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTransportImpl.java

                            ie.initCause(e);
                            throw ie;
                        }
                    }
                    else {
                        // not enough credits available or too big, split
                        if ( log.isDebugEnabled() ) {
                            log.debug("Not enough credits, split at " + last);
                        }
                        synchronized ( last ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
Back to top