Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Filtering (0.23 sec)

  1. fastapi/routing.py

                    * Serialization: you could return an arbitrary object and the
                        `response_model` would be used to serialize that object into the
                        corresponding JSON.
                    * Filtering: the JSON sent to the client will only contain the data
                        (fields) defined in the `response_model`. If you returned an object
                        that contains an attribute `password` but the `response_model` does
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  2. fastapi/applications.py

                    * Serialization: you could return an arbitrary object and the
                        `response_model` would be used to serialize that object into the
                        corresponding JSON.
                    * Filtering: the JSON sent to the client will only contain the data
                        (fields) defined in the `response_model`. If you returned an object
                        that contains an attribute `password` but the `response_model` does
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

              </code>
            </codeSegment>
            <codeSegment>
              <version>4.0.0/4.0.99</version>
              <code>
                <![CDATA[
        public void setFiltering(boolean filtering) {
            setFiltering(String.valueOf(filtering));
        }
                ]]>
              </code>
            </codeSegment>
            <codeSegment>
              <version>4.0.0+</version>
              <code>
                <![CDATA[
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

            : new FilteredEntryBiMap<K, V>(unfiltered, entryPredicate);
      }
    
      /**
       * Support {@code clear()}, {@code removeAll()}, and {@code retainAll()} when filtering a filtered
       * map.
       */
      private static <K extends @Nullable Object, V extends @Nullable Object> Map<K, V> filterFiltered(
          AbstractFilteredMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

            : new FilteredEntryBiMap<K, V>(unfiltered, entryPredicate);
      }
    
      /**
       * Support {@code clear()}, {@code removeAll()}, and {@code retainAll()} when filtering a filtered
       * map.
       */
      private static <K extends @Nullable Object, V extends @Nullable Object> Map<K, V> filterFiltered(
          AbstractFilteredMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	// TODO: the logic here does not handle two cases:
    	//   1. If the containers were removed immediately after they died, kubelet
    	//      may fail to generate correct statuses, let alone filtering correctly.
    	//   2. If kubelet restarted before writing the terminated status for a pod
    	//      to the apiserver, it could still restart the terminated pod (even
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one_test.go

    			}
    			sched.applyDefaultHandlers()
    
    			state := framework.NewCycleState()
    			_, _, err = sched.findNodesThatFitPod(ctx, fwk, state, test.pod)
    			if err != nil {
    				t.Fatalf("error filtering nodes: %+v", err)
    			}
    			fwk.RunPreScorePlugins(ctx, state, test.pod, tf.BuildNodeInfos(test.nodes))
    			list, err := prioritizeNodes(ctx, nil, fwk, state, test.pod, tf.BuildNodeInfos(test.nodes))
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal_test.go

    		tc.Lock()
    		defer tc.Unlock()
    
    		metrics := &metricsapi.PodMetricsList{}
    		for i, cpu := range tc.reportedLevels {
    			// NB: the list reactor actually does label selector filtering for us,
    			// so we have to make sure our results match the label selector
    			podMetric := metricsapi.PodMetrics{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      fmt.Sprintf("%s-%d", podNamePrefix, i),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    		// while the second is used to provide a more timely status update during initialization and runs an one-shot update to the apiserver
    		// once the node becomes ready, then exits afterwards.
    		//
    		// Introduce some small jittering to ensure that over time the requests won't start
    		// accumulating at approximately the same time from the set of nodes due to priority and
    		// fairness effect.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top