Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,320 for PUBLIC (0.33 sec)

  1. ci/official/envs/public_cache

    # Sourcing this enables Bazel remote cache (public, read-only)
    # The cache configs are different for MacOS and Linux
    if [[ $(uname -s) == "Darwin" ]]; then
      TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_macos_cache"
    else
      TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_cache"
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Feb 01 03:21:19 GMT 2024
    - 1011 bytes
    - Viewed (0)
  2. ci/official/envs/public_cache_push

    # authentication. If you are not a Googler, source "public_cache" to enable the
    # public read-only cache.
    # The cache configs are different for MacOS and Linux
    if [[ $(uname -s) == "Darwin" ]]; then
      TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_macos_cache_push"
    else
      TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_cache_push"
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Feb 01 03:21:19 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  3. istioctl/pkg/analyze/testdata/analyze-file/public-gateway.yaml

    apiVersion: networking.istio.io/v1beta1
    kind: Gateway
    metadata:
      name: public-gateway
      namespace: istio-system
    spec:
      selector:
        istio: gateway
      servers:
        - port:
            number: 80
            name: http
            protocol: HTTP
          hosts:
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 261 bytes
    - Viewed (0)
  4. .idea/scopes/Gradle_public_API.xml

    <component name="DependencyValidationManager">
        <!-- The source of truth for this pattern is `build-logic/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt` file, please keep them in sync -->
        <scope name="Gradle public API"
    XML
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Sep 29 12:25:53 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  5. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    # ADR-0003 - Avoid introducing Groovy types to public API
    
    ## Date
    
    2024-01-12
    
    ## Context
    
    Gradle's public API requires equal access from all JVM-based languages.
    Kotlin, Groovy, Java, and other JVM-based languages should be able to use the Gradle API without relying on another language's standard library.
    
    Historically, Gradle has shipped with some Groovy types in very prominent APIs.
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sun Mar 10 20:38:06 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/QueryResponseList.java

        public List<Map<String, Object>> subList(final int fromIndex, final int toIndex) {
            return parent.subList(fromIndex, toIndex);
        }
    
        @Override
        public Object[] toArray() {
            return parent.toArray();
        }
    
        @Override
        public <T> T[] toArray(final T[] a) {
            return parent.toArray(a);
        }
    
        public int getStart() {
            return start;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedInputs.java

        public ExceptionWithManyConstructors() {}
    
        public ExceptionWithManyConstructors(Integer i) {}
    
        public ExceptionWithManyConstructors(Throwable a) {}
    
        public ExceptionWithManyConstructors(Throwable a, Throwable b) {}
    
        public ExceptionWithManyConstructors(String s, Throwable b) {
          usedExpectedConstructor = true;
        }
    
        public ExceptionWithManyConstructors(Throwable a, Throwable b, Throwable c) {}
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 13:46:56 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/cbean/bs/BsSearchLogCB.java

            public void columnClientIp() {
                doColumn("clientIp");
            }
    
            public void columnHitCount() {
                doColumn("hitCount");
            }
    
            public void columnHitCountRelation() {
                doColumn("hitCountRelation");
            }
    
            public void columnLanguages() {
                doColumn("languages");
            }
    
            public void columnQueryId() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/LabelTypePager.java

        private int pageSize;
    
        private int currentPageNumber;
    
        public String id;
    
        public String name;
    
        public String value;
    
        public String sortOrder;
    
        public String createdBy;
    
        public String createdTime;
    
        public String versionNo;
    
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

        }
    
        public Set<Artifact> getArtifactDependencies() {
            return artifactDependencies;
        }
    
        public ArtifactRepository getLocalRepository() {
            return localRepository;
        }
    
        public ArtifactResolutionRequest setLocalRepository(ArtifactRepository localRepository) {
            this.localRepository = localRepository;
    
            return this;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K bytes
    - Viewed (0)
Back to top