Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 9,026 for gives (0.12 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/attributes/MultipleCandidatesDetails.java

     */
    package org.gradle.api.attributes;
    
    import javax.annotation.Nullable;
    import java.util.Set;
    
    /**
     * Provides context about candidates for an attribute. In particular, this class gives access to
     * the list of candidates on the producer side.
     *
     * @param <T> the concrete type of the attribute
     * @since 3.3
     */
    public interface MultipleCandidatesDetails<T> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 11 17:38:57 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileMetadata.java

        /**
         * How the file with the metadata was accessed.
         */
        AccessType getAccessType();
    
        /**
         * How the file with the metadata was accessed.
         *
         * {@link AccessType} only gives information about the queried path, not about parents of the queried path.
         *
         * If we have a symlink situation like `symlink1` -&gt; `symlink2` -&gt; `target`,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpResourceAccessor.java

            HttpClientResponse response = http.performGet(uri, revalidate);
            return wrapResponse(location.getUri(), response);
        }
    
        /**
         * Same as #getResource except that it always gives access to the response body,
         * irrespective of the returned HTTP status code. Never returns {@code null}.
         */
        public HttpResponseResource getRawResource(final URI uri, boolean revalidate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/link/main.go

    	"cmd/link/internal/s390x"
    	"cmd/link/internal/wasm"
    	"cmd/link/internal/x86"
    	"fmt"
    	"internal/buildcfg"
    	"os"
    )
    
    // The bulk of the linker implementation lives in cmd/link/internal/ld.
    // Architecture-specific code lives in cmd/link/internal/GOARCH.
    //
    // Program initialization:
    //
    // Before any argument parsing is done, the Init function of relevant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 17:54:33 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/finisher/finisher_test.go

    			reason:          "my panic",
    			postTimeoutWait: 5 * time.Minute,
    		},
    		{
    			name:                       "ResultFunc function never returns, parent gives up after postTimeoutWait",
    			postTimeoutWait:            1 * time.Second,
    			childGoroutineNeverReturns: true,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 14:20:33 UTC 2021
    - 8.2K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/static-files.md

    The `directory="static"` refers to the name of the directory that contains your static files.
    
    The `name="static"` gives it a name that can be used internally by **FastAPI**.
    
    All these parameters can be different than "`static`", adjust them with the needs and specific details of your own application.
    
    ## More info
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 19:56:09 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/UrlArtifactRepository.java

         * <p>
         * <b>Allowing communication over insecure protocols allows for a man-in-the-middle to impersonate the intended server,
         * and gives an attacker the ability to
         * <a href="https://max.computer/blog/how-to-take-over-the-computer-of-any-java-or-clojure-or-scala-developer/">serve malicious executable code onto the system.</a>
         * </b>
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 24 17:16:12 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ReverseNaturalOrdering.java

      }
    
      @Override
      public <E extends Comparable<?>> E max(Iterable<E> iterable) {
        return NaturalOrdering.INSTANCE.min(iterable);
      }
    
      // preserving singleton-ness gives equals()/hashCode() for free
      private Object readResolve() {
        return INSTANCE;
      }
    
      @Override
      public String toString() {
        return "Ordering.natural().reverse()";
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 20 14:22:42 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

    body {
      overflow: hidden; /* Want scrollbar not here, but in #stack-holder */
    }
    /* Scrollable container for flame graph */
    #stack-holder {
      width: 100%;
      flex-grow: 1;
      overflow-y: auto;
      background: #eee; /* Light grey gives better contrast with boxes */
      position: relative; /* Allows absolute positioning of child boxes */
    }
    /* Flame graph */
    #stack-chart {
      width: 100%;
      position: relative; /* Allows absolute positioning of child boxes */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MBeanOsMemoryInfo.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.health.memory;
    
    import org.gradle.internal.jvm.Jvm;
    
    /**
     * Uses the JVM's own interpretation of total and free memory. Gives accurate values on Solaris.
     * On Linux or MacOs, the free memory metric doesn't include reclaimable file system caches and will thus always report that the system is almost out of memory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 21:48:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top