Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for resolveDfs (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The link:{javadocPath}/org/gradle/api/tasks/TaskInputs.html#dir-java.lang.Object-[TaskInputs.dir(Object)] method can no longer be called with an argument that resolves to anything other than a single directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	UnsafePointer: "unsafe.Pointer",
    }
    
    // resolveNameOff resolves a name offset from a base pointer.
    // The (*rtype).nameOff method is a convenience wrapper for this function.
    // Implemented in the runtime package.
    //
    //go:noescape
    func resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer
    
    // resolveTypeOff resolves an *rtype offset from a base type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

        }
    
        // Platforms cannot be published with plain Ivy
        @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "maven")
        def "belonging to both a virtual and a published platforms resolves with alignment"() {
            given:
            repository {
                // In this setup, the "Groovy" platform is going to be virtual
                ['2.4', '2.5'].each { groovyVersion ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            where:
            serviceType << [
                ProjectLayout, // not isolated
                Instantiator, // internal
            ]
        }
    
        def "injected FileSystemOperations resolves paths relative to build root directory"() {
            serviceCopiesFiles()
            buildFile << """
                def provider = gradle.sharedServices.registerIfAbsent("copier", CopyingService) {
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    		// that would result in add being non-empty returns an error before it
    		// reaches this point: The set of modules to add comes from
    		// resolveMissingImports, which in turn resolves each package by calling
    		// queryImport. But queryImport explicitly checks for -mod=readonly, and
    		// return an error.
    		panic("add is not empty")
    	}
    	return newRequirements(workspace, rs.rootModules, direct), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFile.java

         * representation of their URLs, minus authentication parameters, are
         * case insensitively and lexographically equal.
         * <br>
         * For example, assuming the server <code>angus</code> resolves to the
         * <code>192.168.1.15</code> IP address, the below URLs would result in
         * <code>SmbFile</code>s that are equal.
         *
         * <p>
         * <blockquote>
         * 
         * <pre>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  7. src/cmd/go/internal/modload/init.go

    	if !empty {
    		fmt.Fprintf(os.Stderr, "go: to add module requirements and sums:\n\tgo mod tidy\n")
    	}
    }
    
    // fixVersion returns a modfile.VersionFixer implemented using the Query function.
    //
    // It resolves commit hashes and branch names to versions,
    // canonicalizes versions that appeared in early vgo drafts,
    // and does nothing for versions that already appear to be canonical.
    //
    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/vendor/golang.org/x/sys/windows/syscall_windows.go

    	slice := unsafe.Slice(s.Buffer, s.MaximumLength)
    	return slice[:s.Length]
    }
    
    func (s *NTString) String() string {
    	return ByteSliceToString(s.Slice())
    }
    
    // FindResource resolves a resource of the given name and resource type.
    func FindResource(module Handle, name, resType ResourceIDOrString) (Handle, error) {
    	var namePtr, resTypePtr uintptr
    	var name16, resType16 *uint16
    	var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/obj.go

    	case obj.NAME_PARAM:
    		// Adjust to the bottom of PARAMs.
    		a.Offset += stacksize + 8
    	}
    }
    
    // preprocess generates prologue and epilogue code, computes PC-relative branch
    // and jump offsets, and resolves pseudo-registers.
    //
    // preprocess is called once per linker symbol.
    //
    // When preprocess finishes, all instructions in the symbol are either
    // concrete, real RISC-V instructions or directive pseudo-ops like TEXT,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    			}
    			m.AddError(fmt.Errorf("directory prefix %s does not contain %s", base.ShortPath(absDir), scope))
    			return
    		}
    	}
    
    	m.MatchDirs(modRoots)
    }
    
    // resolveLocalPackage resolves a filesystem path to a package path.
    func resolveLocalPackage(ctx context.Context, dir string, rs *Requirements) (string, error) {
    	var absDir string
    	if filepath.IsAbs(dir) {
    		absDir = filepath.Clean(dir)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top