Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 219 for Traverser (0.16 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

                 */
                @Deprecated
                String getPropertyNormalizationStrategyName();
            }
    
            /**
             * Traverses the input properties that are file types (e.g. File, FileCollection, FileTree, List of File).
             * <p>
             * If there are no input file properties, visitor will not be called at all.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterables.java

        return cycle(Lists.newArrayList(elements));
      }
    
      /**
       * Combines two iterables into a single iterable. The returned iterable has an iterator that
       * traverses the elements in {@code a}, followed by the elements in {@code b}. The source
       * iterators are not polled until necessary.
       *
       * <p>The returned iterable's iterator supports {@code remove()} when the corresponding input
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/StandardTable.java

          return backingMap.isEmpty();
        }
    
        @Override
        public void clear() {
          backingMap.clear();
        }
      }
    
      /**
       * {@inheritDoc}
       *
       * <p>The set's iterator traverses the mappings for the first row, the mappings for the second
       * row, and so on.
       *
       * <p>Each cell is an immutable snapshot of a row key / column key / value mapping, taken at the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 29.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/ClassPath.java

        }
    
        /**
         * Recursively scan the given directory, adding resources for each file encountered. Symlinks
         * which have already been traversed in the current tree path will be skipped to eliminate
         * cycles; otherwise symlinks are traversed.
         *
         * @param directory the root of the directory to scan
         * @param packagePrefix resource path prefix inside {@code classloader} for any files found
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  5. src/crypto/internal/boring/bcache/cache.go

    	//     the list that we've confirmed has no entry for k.
    	//     The next time down the list, we can stop at noK,
    	//     because new entries are inserted at the front of the list.
    	//     This guarantees we never traverse an entry
    	//     multiple times.
    	//
    	//  2. We only allocate the entry to be added once,
    	//     saving it in add for the next attempt.
    	var add, noK *cacheEntry[K, V]
    	n := 0
    	for {
    		e := head.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/lazy/lazy.go

    func (m *MapValue) Contains(key ref.Val) ref.Val {
    	v, found := m.Find(key)
    	if v != nil && types.IsUnknownOrError(v) {
    		return v
    	}
    	return types.Bool(found)
    }
    
    // Iterator returns an iterator to traverse the map.
    func (m *MapValue) Iterator() traits.Iterator {
    	return &iterator{parent: m, index: 0}
    }
    
    // Size returns the number of currently known fields
    func (m *MapValue) Size() ref.Val {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterables.java

        return cycle(Lists.newArrayList(elements));
      }
    
      /**
       * Combines two iterables into a single iterable. The returned iterable has an iterator that
       * traverses the elements in {@code a}, followed by the elements in {@code b}. The source
       * iterators are not polled until necessary.
       *
       * <p>The returned iterable's iterator supports {@code remove()} when the corresponding input
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  8. tensorflow/cc/tools/freeze_saved_model_test.cc

    }
    
    TEST_F(FreezeTest, GraphDefWithMultiOutputOperation) {
      // Tensors from operations with multiple outputs get tensor suffixes when used
      // in input fields of following nodes, i.e. split:0, split:1.
      // Test that we traverse those correctly.
      SavedModelBundle saved_model_bundle;
      GraphDef graph_def;
      Scope scope = Scope::NewRootScope();
      Output a = ops::Const(scope.WithOpName("a"), {10.0f, 10.0f}, {2});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "json-schema-traverse": "^0.4.1",
            "uri-js": "^4.2.2"
          },
          "funding": {
            "type": "github",
            "url": "https://github.com/sponsors/epoberezkin"
          }
        },
        "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": {
          "version": "0.4.1",
          "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/StandardTable.java

          return backingMap.isEmpty();
        }
    
        @Override
        public void clear() {
          backingMap.clear();
        }
      }
    
      /**
       * {@inheritDoc}
       *
       * <p>The set's iterator traverses the mappings for the first row, the mappings for the second
       * row, and so on.
       *
       * <p>Each cell is an immutable snapshot of a row key / column key / value mapping, taken at the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 30.6K bytes
    - Viewed (0)
Back to top