Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for GetBase (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/M2ResourcePattern.java

            Map<String, String> attributes = toAttributes(module, artifact);
            return getBase().getRoot().resolve(substituteTokens(getBase().getPath(), attributes));
        }
    
        @Override
        public ExternalResourceName toModulePath(ModuleIdentifier module) {
            String pattern = getBase().getPath();
            if (!pattern.endsWith(MavenPattern.M2_PATTERN)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/IvyResourcePattern.java

            return getBase().getRoot().resolve(substituteTokens(getBase().getPath(), attributes));
        }
    
        @Override
        public ExternalResourceName toVersionListPattern(ModuleIdentifier module, IvyArtifactName artifact) {
            Map<String, String> attributes = toAttributes(module, artifact);
            return getBase().getRoot().resolve(substituteTokens(getBase().getPath(), attributes));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AdditionalVariant.java

            this.name = name;
            this.base = base;
            this.lenient = lenient;
        }
    
        public String getName() {
            return name;
        }
    
        public String getBase() {
            return base;
        }
    
        public boolean isLenient() {
            return lenient;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/AbstractResourcePattern.java

            // Replace encoded [] with plain variants, since we are using them with a special meaning here.
            return pattern.getDisplayable().replace("%5B", "[").replace("%5D", "]");
        }
    
        protected ExternalResourceName getBase() {
            return pattern;
        }
    
        protected String substituteTokens(String pattern, Map<String, String> attributes) {
            return PatternHelper.substituteTokens(pattern, attributes);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/LazyToRealisedModuleComponentResolveMetadataHelper.java

            for (AdditionalVariant additionalVariant : additionalVariants) {
                String baseName = additionalVariant.getBase();
                ImmutableAttributes attributes;
                ImmutableCapabilities capabilities;
                ImmutableList<? extends ComponentVariant.Dependency> dependencies;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_arguments.cc

              op.getOperation()->getOperand(to));
        }
        BitVector operands_to_erase(op->getNumOperands());
        int args_start = op->getNumOperands()
                             ? op.getArgOperands().getBase()->getOperandNumber()
                             : 0;
        operands_to_erase |= args_to_erase.lookup(func);
        operands_to_erase <<= args_start;
        op->eraseOperands(operands_to_erase);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. cluster/gce/gci/mounter/Dockerfile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    FROM ubuntu:xenial
    
    RUN apt-get update && apt-get install -y netbase nfs-common=1:1.2.8-9ubuntu12
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 13 14:41:50 UTC 2022
    - 713 bytes
    - Viewed (0)
  8. src/cmd/asm/internal/lex/lex.go

    	Text() string
    	// File reports the source file name of the token.
    	File() string
    	// Base reports the position base of the token.
    	Base() *src.PosBase
    	// SetBase sets the position base.
    	SetBase(*src.PosBase)
    	// Line reports the source line number of the token.
    	Line() int
    	// Col reports the source column number of the token.
    	Col() int
    	// Close does any teardown required.
    	Close()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/lex/slice.go

    func (s *Slice) Text() string {
    	return s.tokens[s.pos].text
    }
    
    func (s *Slice) File() string {
    	return s.base.Filename()
    }
    
    func (s *Slice) Base() *src.PosBase {
    	return s.base
    }
    
    func (s *Slice) SetBase(base *src.PosBase) {
    	// Cannot happen because we only have slices of already-scanned text,
    	// but be prepared.
    	s.base = base
    }
    
    func (s *Slice) Line() int {
    	return s.line
    }
    
    func (s *Slice) Col() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 29 22:49:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/lex/tokenizer.go

    		return "@>"
    	}
    	return t.s.TokenText()
    }
    
    func (t *Tokenizer) File() string {
    	return t.base.Filename()
    }
    
    func (t *Tokenizer) Base() *src.PosBase {
    	return t.base
    }
    
    func (t *Tokenizer) SetBase(base *src.PosBase) {
    	t.base = base
    }
    
    func (t *Tokenizer) Line() int {
    	return t.line
    }
    
    func (t *Tokenizer) Col() int {
    	return t.s.Pos().Column
    }
    
    func (t *Tokenizer) Next() ScanToken {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 04 20:35:21 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top