Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 461 for Requires (0.16 sec)

  1. src/go/types/api_test.go

    		wantErr     string // expected substring of concatenation of all errors
    	}{
    		{"go1.98", "", "package requires newer Go version go1.98"},
    		{"", "go1.99", "p:2:9: file requires newer Go version go1.99"},
    		{"go1.98", "go1.99", "package requires newer Go version go1.98"}, // (two
    		{"go1.98", "go1.99", "file requires newer Go version go1.99"},    // errors)
    	} {
    		var src string
    		if test.fileVersion != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  include <tuple>
    
    # elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40000)
    // GCC 4.0+ implements tr1/tuple in the <tr1/tuple> header.  This does
    // not conform to the TR1 spec, which requires the header to be <tuple>.
    
    #  if !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302
    // Until version 4.3.2, gcc has a bug that causes <tr1/functional>,
    // which is #included by <tr1/tuple>, to not compile when RTTI is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  include <tuple>
    
    # elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40000)
    // GCC 4.0+ implements tr1/tuple in the <tr1/tuple> header.  This does
    // not conform to the TR1 spec, which requires the header to be <tuple>.
    
    #  if !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302
    // Until version 4.3.2, gcc has a bug that causes <tr1/functional>,
    // which is #included by <tr1/tuple>, to not compile when RTTI is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Futures.java

      // For a (long) discussion about this specific issue and the general futility of life.
      //
      // For the time being we are OK with the problem discussed above since it requires a caller to
      // introduce a very specific kind of data-race. And given the other operations performed by these
      // methods that involve volatile read/write operations, in practice there is no issue. Also, the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                        null,
                        "of '" + string + "' is newer than the versions supported by this version of Maven: "
                                + validVersions + ". Building this project requires a newer version of Maven.",
                        tracker);
    
            } else if (olderThanAll) {
                // note this will not be hit for Maven 1.x project.xml as it is an incompatible schema
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableSortedMap.java

          comparator = (Comparator<? super K>) NATURAL_ORDER;
        }
        if (map instanceof ImmutableSortedMap) {
          // TODO(kevinb): Prove that this cast is safe, even though
          // Collections.unmodifiableSortedMap requires the same key type.
          @SuppressWarnings("unchecked")
          ImmutableSortedMap<K, V> kvMap = (ImmutableSortedMap<K, V>) map;
          if (!kvMap.isPartialView()) {
            return kvMap;
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    	verb := "lists"
    	if wf == nil || wf.Go == nil {
    		// A go.work file implicitly requires go1.18
    		// even when it doesn't list any version.
    		verb = "implicitly requires"
    	}
    	return fmt.Errorf("module %s listed in go.work file requires go >= %s, but go.work %s go %s; to update it:\n\tgo work use",
    		base.ShortPath(filepath.Dir(gomod)), goVers, verb, gover.FromGoWork(wf))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    		return AFSW
    	case AMOVD:
    		return AFSD
    	default:
    		panic(fmt.Sprintf("%+v is not a MOV", mnemonic))
    	}
    }
    
    // markRelocs marks an obj.Prog that specifies a MOV pseudo-instruction and
    // requires relocation.
    func markRelocs(p *obj.Prog) {
    	switch p.As {
    	case AMOV, AMOVB, AMOVH, AMOVW, AMOVBU, AMOVHU, AMOVWU, AMOVF, AMOVD:
    		switch {
    		case p.From.Type == obj.TYPE_ADDR && p.To.Type == obj.TYPE_REG:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            and: "creates a new instance of rule each time"
            !output.contains('Metadata rule call count: 2')
        }
    
        @ToBeFixedForConfigurationCache
        def "re-executing in subsequent build requires no GET request"() {
            given:
            def supplierInteractions = withPerVersionStatusSupplier()
    
            when:
            repositoryInteractions {
                'group:projectA' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                }
            }
            fails 'checkDeps'
    
            then:
            failure.assertHasCause("""Inconsistency between attributes of a constraint and a dependency, on attribute 'custom' : dependency requires 'c1' while constraint required 'c2'""")
        }
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
        @Unroll("Selects variant #expectedVariant using typed attribute value #attributeValue")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top