Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 171 - 180 of 295 for tell (0.04 seconds)

  1. internal/ringbuffer/LICENSE

    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:
    
    The above copyright notice and this permission notice shall be included in all
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed May 15 00:11:04 GMT 2024
    - 1K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/ArrayTable.java

       */
      @Override
      public Set<Cell<R, C, @Nullable V>> cellSet() {
        return super.cellSet();
      }
    
      @Override
      Iterator<Cell<R, C, @Nullable V>> cellIterator() {
        return new AbstractIndexedListIterator<Cell<R, C, @Nullable V>>(size()) {
          @Override
          protected Cell<R, C, @Nullable V> get(int index) {
            return getCell(index);
          }
        };
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Aug 13 19:39:21 GMT 2025
    - 26.2K bytes
    - Click Count (0)
  3. ci/official/envs/nightly_upload

    # limitations under the License.
    # ==============================================================================
    # IMPORTANT: trailing slash is required on GCS URIs, as it tells gcloud to
    # pretend the path is a directory.
    # 1. Upload nightlies
    TFCI_ARTIFACT_FINAL_GCS_ENABLE=1
    TFCI_ARTIFACT_FINAL_GCS_SA_PATH="${KOKORO_KEYSTORE_DIR}/73361_tensorflow_release_binary_uploader_service_account"
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Jun 17 20:45:36 GMT 2024
    - 1.7K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/collect/RegularImmutableTableTest.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.collect.Table.Cell;
    import org.jspecify.annotations.NullMarked;
    
    /**
     * @author Gregory Kick
     */
    @GwtCompatible
    @NullMarked
    public class RegularImmutableTableTest extends AbstractImmutableTableTest {
      private static final ImmutableSet<Cell<Character, Integer, String>> CELLS =
          ImmutableSet.of(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ThirdPartyAuditTask.java

            return new File(getProject().getBuildDir(), "markers/" + getName());
        }
    
        // We use compile classpath normalization here because class implementation changes are irrelevant for the purposes of jdk jar hell.
        // We only care about the runtime classpath ABI here.
        @CompileClasspath
        public FileCollection getJdkJarHellClasspath() {
            return jdkJarHellClasspath.filter(File::exists);
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 17 08:59:22 GMT 2021
    - 16.2K bytes
    - Click Count (0)
  6. NOTICE

    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:
    
    The above copyright notice and this permission notice shall be included in all
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 15 23:53:08 GMT 2020
    - 2.2K bytes
    - Click Count (0)
  7. CREDITS

          worldwide, non-exclusive, no-charge, royalty-free, irrevocable
          (except as stated in this section) patent license to make, have made,
          use, offer to sell, sell, import, and otherwise transfer the Work,
          where such license applies only to those patent claims licensable
          by such Contributor that are necessarily infringed by their
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Mar 13 05:29:51 GMT 2025
    - 1.8M bytes
    - Click Count (0)
  8. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ThirdPartyAuditPrecommitPlugin.java

                // Internal projects are not all plugins, so make sure the check is available
                // we are not doing this for this project itself to avoid jar hell with itself
                project.getDependencies().add(JDK_JAR_HELL_CONFIG_NAME, project.project(LIBS_ELASTICSEARCH_CORE_PROJECT_PATH));
            }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 3.1K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/collect/StandardTable.java

       * row, and so on.
       *
       * <p>Each cell is an immutable snapshot of a row key / column key / value mapping, taken at the
       * time the cell is returned by a method call to the set or its iterator.
       */
      @Override
      public Set<Cell<R, C, V>> cellSet() {
        return super.cellSet();
      }
    
      @Override
      Iterator<Cell<R, C, V>> cellIterator() {
        return new CellIterator();
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 29.4K bytes
    - Click Count (0)
  10. build-tools-internal/src/integTest/java/org/elasticsearch/gradle/internal/test/TestClasspathUtils.java

                    .make();
            try {
                dynamicType.toJar(targetFile(projectRoot));
            } catch (IOException e) {
                e.printStackTrace();
                fail("Cannot setup jdk jar hell classpath");
            }
        }
    
        private static File targetFile(File projectRoot) {
            File targetFile = new File(
                    projectRoot,
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 15:14:44 GMT 2021
    - 2.9K bytes
    - Click Count (0)
Back to Top