Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 506 for thrice (1.36 sec)

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

            public ArtifactFactoryRequestBuilder session(Session session) {
                this.session = session;
                return this;
            }
    
            public ArtifactFactoryRequestBuilder trace(RequestTrace trace) {
                this.trace = trace;
                return this;
            }
    
            public ArtifactFactoryRequestBuilder groupId(String groupId) {
                this.groupId = groupId;
                return this;
            }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  2. tests/lru_test.go

    	l := lru.NewLRU[int64, int64](8192, nil, 0)
    
    	trace := make([]int64, b.N*2)
    	for i := 0; i < b.N*2; i++ {
    		if i%2 == 0 {
    			trace[i] = getRand(b) % 16384
    		} else {
    			trace[i] = getRand(b) % 32768
    		}
    	}
    
    	b.ResetTimer()
    
    	for i := 0; i < b.N; i++ {
    		l.Add(trace[i], trace[i])
    	}
    	var hit, miss int
    	for i := 0; i < b.N; i++ {
    		if _, ok := l.Get(trace[i]); ok {
    			hit++
    		} else {
    			miss++
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sun May 25 07:40:40 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstallerRequest.java

                this.session = session;
                return this;
            }
    
            @Nonnull
            public ArtifactInstallerRequestBuilder trace(RequestTrace trace) {
                this.trace = trace;
                return this;
            }
    
            @Nonnull
            public ArtifactInstallerRequestBuilder artifacts(@Nullable Collection<ProducedArtifact> artifacts) {
                this.artifacts = artifacts != null ? artifacts : Collections.emptyList();
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactoryRequest.java

            public ArtifactFactoryRequestBuilder session(Session session) {
                this.session = session;
                return this;
            }
    
            public ArtifactFactoryRequestBuilder trace(RequestTrace trace) {
                this.trace = trace;
                return this;
            }
    
            public ArtifactFactoryRequestBuilder groupId(String groupId) {
                this.groupId = groupId;
                return this;
            }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

        attributeTypeAndValue.asSetOf().asSequenceOf()
    
      /**
       * ```
       * Name ::= CHOICE {
       *   -- only one possibility for now --
       *   rdnSequence  RDNSequence
       * }
       * ```
       */
      internal val name: DerAdapter<Pair<DerAdapter<*>, Any?>> =
        Adapters.choice(
          rdnSequence,
        )
    
      /**
       * ```
       * SubjectPublicKeyInfo ::= SEQUENCE  {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/RequestTrace.java

     *   <li>Supports both internal session operations and client-provided trace information</li>
     * </ul>
     *
     * <p>For internal session operations, the trace typically contains {@code *Request} objects
     * that represent the current processing state. Client code can also create traces with
     * application-specific data to provide context when invoking session methods.</p>
     *
     * <p>This trace information is particularly useful for:</p>
     * <ul>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 29 08:17:07 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderRequest.java

            RequestTrace trace;
            Source installationToolchainsSource;
            Source userToolchainsSource;
    
            public ToolchainsBuilderRequestBuilder session(ProtoSession session) {
                this.session = session;
                return this;
            }
    
            public ToolchainsBuilderRequestBuilder trace(RequestTrace trace) {
                this.trace = trace;
                return this;
            }
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java

                this.session = session;
                return this;
            }
    
            public DependencyCoordinatesFactoryRequestBuilder trace(RequestTrace trace) {
                this.trace = trace;
                return this;
            }
    
            public DependencyCoordinatesFactoryRequestBuilder groupId(String groupId) {
                this.groupId = groupId;
                return this;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  9. LICENSE

      6. As an exception to the Sections above, you may also combine or
    link a "work that uses the Library" with the Library to produce a
    work containing portions of the Library, and distribute that work
    under terms of your choice, provided that the terms permit
    modification of the work for the customer's own use and reverse
    engineering for debugging such modifications.
    
      You must give prominent notice with each copy of the work that the
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

            }
    
            /**
             * Sets the request trace for this request.
             * The trace is used for debugging and monitoring purposes.
             *
             * @param trace the request trace
             * @return this builder instance
             */
            public ProjectBuilderRequestBuilder trace(RequestTrace trace) {
                this.trace = trace;
                return this;
            }
    
            /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 11.7K bytes
    - Viewed (0)
Back to top