Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for fixArg (0.39 sec)

  1. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                            }
                            if (relocation.getVersion() != null) {
                                // note: see MNG-3454. This causes a problem, but fixing it may break more.
                                artifact.setVersionRange(VersionRange.createFromVersion(relocation.getVersion()));
                                relocatedArtifact = artifact;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/test/groovy/org/gradle/model/internal/core/ModelTypeTest.groovy

            !extendsTypeVar.isAssignableFrom(number)
            extendsTypeVar.isAssignableFrom(extendsTypeVar)
    //        extendsTypeVar.isAssignableFrom(extendsNumber) TODO - needs fixing
    
            !anything.isAssignableFrom(number)
            !anything.isAssignableFrom(extendsNumber)
            !anything.isAssignableFrom(extendsTypeVar)
        }
    
        def "asSubtype"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 22.3K bytes
    - Viewed (0)
  3. src/cmd/cover/cover.go

    	payload := sws.BytesWritten()
    	for k, b := range payload {
    		fmt.Fprintf(w, " 0x%x,", b)
    		if k != 0 && k%8 == 0 {
    			fmt.Fprintf(w, "\n")
    		}
    	}
    	fmt.Fprintf(w, "}\n")
    
    	fixcfg := covcmd.CoverFixupConfig{
    		Strategy:           "normal",
    		MetaVar:            mkMetaVar(),
    		MetaLen:            len(payload),
    		MetaHash:           fmt.Sprintf("%x", digest),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[sec:component_metadata_rules]]
    = Fixing metadata with component metadata rules
    
    Each module that is pulled from a repository has metadata associated with it, such as its group, name, version as well as the different variants it provides with their artifacts and dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. pkg/registry/core/service/storage/alloc.go

    	if err := al.initIPFamilyFields(After{service}, Before{nil}); err != nil {
    		return nil, err
    	}
    
    	// Allocate ClusterIPs
    	//TODO(thockin): validation should not pass with empty clusterIP, but it
    	//does (and is tested!).  Fixing that all is a big PR and will have to
    	//happen later.
    	if txn, err := al.txnAllocClusterIPs(service, dryRun); err != nil {
    		return nil, err
    	} else {
    		result = append(result, txn)
    	}
    
    	// Allocate ports
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  6. doc/godebug.md

    Go's emphasis on backwards compatibility is one of its key strengths.
    There are, however, times when we cannot maintain complete compatibility.
    If code depends on buggy (including insecure) behavior,
    then fixing the bug will break that code.
    New features can also have similar impacts:
    enabling the HTTP/2 use by the HTTP client broke programs
    connecting to servers with buggy HTTP/2 implementations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. CONTRIBUTING.md

        to the core.
    *   As every PR requires several CPU/GPU hours of CI testing, we discourage
        submitting PRs to fix one typo, one warning,etc. We recommend fixing the
        same issue at the file level at least (e.g.: fix all typos in a file, fix
        all compiler warnings in a file, etc.)
    *   Tests should follow the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/base/PredicatesTest.java

      public void testIsEqualToNull_serialization() {
        checkSerialization(Predicates.equalTo(null));
      }
    
      /**
       * Tests for Predicates.instanceOf(x). TODO: Fix the comment style after fixing annotation
       * stripper to remove comments properly. Currently, all tests before the comments are removed as
       * well.
       */
      @GwtIncompatible // Predicates.instanceOf
      public void testIsInstanceOf_apply() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. src/debug/gosym/pclntab.go

    }
    
    // NOTE(rsc): This is wrong for GOARCH=arm, which uses a quantum of 4,
    // but we have no idea whether we're using arm or not. This only
    // matters in the old (pre-Go 1.2) symbol table format, so it's not worth
    // fixing.
    const oldQuantum = 1
    
    func (t *LineTable) parse(targetPC uint64, targetLine int) (b []byte, pc uint64, line int) {
    	// The PC/line table can be thought of as a sequence of
    	//  <pc update>* <line update>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    Other issues with the build won't cause it to produce incorrect results, but will lead to unnecessary cache misses.
    In this chapter you will learn about some typical problems and ways to avoid them.
    Fixing these issues will have the added benefit that your build will stop "acting up," and developers can forget about running builds with `clean` altogether.
    
    == System file encoding
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
Back to top