Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,770 for source (0.05 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilder.java

        /**
         * Builds the effective toolchains for the specified toolchains sources.
         *
         * @param session the {@link Session}, must not be {@code null}
         * @param installationToolchainsFile The {@link Source} pointing to the installation toolchains, must not be {@code null}
         * @param userToolchainsSource The {@link Source} pointing to the user toolchains, must not be {@code null}
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-08-22 14:47
    - 2.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/EndpointPair.java

            return false;
          }
    
          return source().equals(other.source()) && target().equals(other.target());
        }
    
        @Override
        public int hashCode() {
          return Objects.hashCode(source(), target());
        }
    
        @Override
        public String toString() {
          return "<" + source() + " -> " + target() + ">";
        }
      }
    
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-22 03:38
    - 8.1K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java

         * Builds the effective settings of the specified settings sources.
         *
         * @return the result of the settings building, never {@code null}
         * @throws SettingsBuilderException if the effective settings could not be built
         */
        @Nonnull
        default SettingsBuilderResult build(
                @Nonnull Session session, @Nonnull Source installationSettingsSource, @Nonnull Source userSettingsSource) {
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-04-05 11:52
    - 5.1K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/JSpecifyNullabilityChangesTest.kt

                    public class Source {
                        public Source(String @Nullable [] some) {}
                        public String @Nullable [] nonFinalField = null;
                        public String foo(String @Nullable [] bar) { return "some"; }
                    }
                """,
                v2 = """
                    public class Source {
                        public Source(String[] some) {}
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-15 17:05
    - 18K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsWebAuthenticationBhv.java

                result.setParameters(DfTypeUtil.toString(source.get("parameters")));
                result.setPassword(DfTypeUtil.toString(source.get("password")));
                result.setPort(DfTypeUtil.toInteger(source.get("port")));
                result.setProtocolScheme(DfTypeUtil.toString(source.get("protocolScheme")));
                result.setUpdatedBy(DfTypeUtil.toString(source.get("updatedBy")));
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 10.5K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/MultipartReader.kt

        private var closed = false
        private var noMoreParts = false
    
        /** This is only part that's allowed to read from the underlying source. */
        private var currentPart: PartSource? = null
    
        @Throws(IOException::class)
        constructor(response: ResponseBody) : this(
          source = response.source(),
          boundary =
            response.contentType()?.parameter("boundary")
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-28 02:11
    - 7.3K bytes
    - Viewed (0)
  7. internal/lsync/lrwmutex.go

    	lm.lockLoop(context.Background(), lm.id, lm.source, 1<<63-1, isWriteLock)
    }
    
    // GetRLock tries to get a read lock on lm before the timeout occurs.
    func (lm *LRWMutex) GetRLock(ctx context.Context, id string, source string, timeout time.Duration) (locked bool) {
    	const isWriteLock = false
    	return lm.lockLoop(ctx, id, source, timeout, isWriteLock)
    }
    
    func (lm *LRWMutex) lock(id, source string, isWriteLock bool) (locked bool) {
    	lm.mu.Lock()
    Registered: 2025-05-25 19:28
    - Last Modified: 2022-01-02 17:15
    - 4.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsSearchLogBhv.java

                result.setLanguages(DfTypeUtil.toString(source.get("languages")));
                result.setQueryId(DfTypeUtil.toString(source.get("queryId")));
                result.setQueryOffset(DfTypeUtil.toInteger(source.get("queryOffset")));
                result.setQueryPageSize(DfTypeUtil.toInteger(source.get("queryPageSize")));
                result.setQueryTime(DfTypeUtil.toLong(source.get("queryTime")));
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 10.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsLabelTypeBhv.java

                result.setName(DfTypeUtil.toString(source.get("name")));
                result.setPermissions(toStringArray(source.get("permissions")));
                result.setSortOrder(DfTypeUtil.toInteger(source.get("sortOrder")));
                result.setUpdatedBy(DfTypeUtil.toString(source.get("updatedBy")));
                result.setUpdatedTime(DfTypeUtil.toLong(source.get("updatedTime")));
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 9.9K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

            /**
             * Sets the source of the project to build.
             * This is an alternative to specifying a path, allowing the project to be built from
             * a model source such as a string or input stream.
             *
             * @param source the source of the project
             * @return this builder instance
             */
            public ProjectBuilderRequestBuilder source(Source source) {
                this.source = source;
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-04-03 13:33
    - 11.7K bytes
    - Viewed (0)
Back to top