Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,596 for This (0.16 sec)

  1. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java

     * Licensed to the Apache Software Foundation (ASF) under one
     * or more contributor license agreements.  See the NOTICE file
     * distributed with this work for additional information
     * regarding copyright ownership.  The ASF licenses this file
     * to you under the Apache License, Version 2.0 (the
     * "License"); you may not use this file except in compliance
     * with the License.  You may obtain a copy of the License at
     *
     *   http://www.apache.org/licenses/LICENSE-2.0
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 7K bytes
    - Viewed (0)
  2. docs/en/docs/js/termynal.js

            this.originalLineDelay = this.lineDelay = options.lineDelay
                || parseFloat(this.container.getAttribute(`${this.pfx}-lineDelay`)) || 1500;
            this.progressLength = options.progressLength
                || parseFloat(this.container.getAttribute(`${this.pfx}-progressLength`)) || 40;
            this.progressChar = options.progressChar
    JavaScript
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 9.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/context/BaseContext.java

         * 
         */
        public BaseContext ( Configuration config ) {
            this.config = config;
            this.dfs = new DfsImpl(this);
            this.sidResolver = new SIDCacheImpl(this);
            this.urlHandler = new Handler(this);
            this.nameServiceClient = new NameServiceClientImpl(this);
            this.bufferCache = new BufferCacheImpl(this.config);
            this.transportPool = new SmbTransportPoolImpl();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 27 18:25:00 GMT 2022
    - 5.3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinateFactoryRequest.java

                        String coordinateString) {
                    super(session);
                    this.groupId = groupId;
                    this.artifactId = artifactId;
                    this.version = version;
                    this.classifier = classifier;
                    this.extension = extension;
                    this.type = type;
                    this.coordinateString = coordinateString;
                }
    
                @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 18 10:30:20 GMT 2023
    - 7.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtFirAnalysisSession.kt

        override val psiTypeProviderImpl = KtFirPsiTypeProvider(this, token)
    
        override val jvmTypeMapperImpl = KtFirJvmTypeMapper(this, token)
    
        override val typeProviderImpl = KtFirTypeProvider(this, token)
    
        override val typeInfoProviderImpl = KtFirTypeInfoProvider(this, token)
    
        override val subtypingComponentImpl = KtFirSubtypingComponent(this, token)
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 18 10:43:08 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java

                final boolean addedToClasspath) {
            this.type = requireNonNull(type);
            this.extension = extension;
            this.classifier = classifier;
            this.directory = directory;
            this.packaging = packaging;
            this.includesDependencies = includesDependencies;
            this.language = language;
            this.addedToClasspath = addedToClasspath;
        }
    
        public String getType() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      //   endpoint is located. This should match the corresponding node label.
      // This field is deprecated and will be removed in future api versions.
      // +optional
      map<string, string> topology = 5;
    
      // nodeName represents the name of the Node hosting this endpoint. This can
      // be used to determine endpoints local to a Node.
      // +optional
      optional string nodeName = 6;
    
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
  8. mockwebserver/src/main/kotlin/mockwebserver3/RecordedRequest.kt

      /**
       * The sizes of the chunks of this request's body, or an empty list if the request's body
       * was empty or unchunked.
       */
      val chunkSizes: List<Int>,
      /** The total size of the body of this POST request (before truncation).*/
      val bodySize: Long,
      /** The body of this POST request. This may be truncated. */
      val body: Buffer,
      /**
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 23 14:31:42 GMT 2024
    - 3.8K bytes
    - Viewed (1)
  9. android/guava/src/com/google/common/collect/RegularImmutableBiMap.java

      private RegularImmutableBiMap() {
        this.keyHashTable = null;
        this.alternatingKeysAndValues = new Object[0];
        this.keyOffset = 0;
        this.size = 0;
        this.inverse = (RegularImmutableBiMap<V, K>) this;
      }
    
      /** K-to-V constructor. */
      RegularImmutableBiMap(@Nullable Object[] alternatingKeysAndValues, int size) {
        this.alternatingKeysAndValues = alternatingKeysAndValues;
        this.size = size;
        this.keyOffset = 0;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Nov 30 21:54:06 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/MetadataResolutionRequest.java

            this.mad = md;
            this.localRepository = localRepository;
            this.remoteRepositories = remoteRepositories;
        }
    
        public MavenArtifactMetadata getArtifactMetadata() {
            return mad;
        }
    
        public MetadataResolutionRequest setArtifactMetadata(MavenArtifactMetadata md) {
            this.mad = md;
    
            return this;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.3K bytes
    - Viewed (0)
Back to top