Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,259 for light (0.04 sec)

  1. platforms/documentation/docs/src/docs/css/base.css

        margin-left: 0;
        padding-left: 0;
    }
    
    .last {
        margin-right: 0;
        padding-right: 0;
    }
    
    .top {
        margin-top: 0;
        padding-top: 0;
    }
    
    .bottom {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .citetitle {
        font-style: normal;
    }
    
    table th.border-right {
        border-right: solid #d0d0d0 1px;
    }
    
    table th.no-border-bottom {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      // TPUClusterCleanup and OutsideCompiledToHostLaunch need every function to be
      // only called from one cluster. Here, we choose to fix the all-funcs-one-use
      // invariant right before it's needed, not after it's been broken.
      pm.addPass(mlir::TF::CreateGuaranteeAllFuncsOneUsePass());
      // Run TPU cluster cleanup attributes so ops with no outside compiled
      // attribute have no host device attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. pkg/controller/resourceclaim/controller.go

    		*newPodClaims = make(map[string]string)
    	}
    	(*newPodClaims)[podClaim.Name] = claim.Name
    
    	return nil
    }
    
    // findPodResourceClaim looks for an existing ResourceClaim with the right
    // annotation (ties it to the pod claim) and the right ownership (ties it to
    // the pod).
    func (ec *Controller) findPodResourceClaim(pod *v1.Pod, podClaim v1.PodResourceClaim) (*resourcev1alpha2.ResourceClaim, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

            protected final Collector<T> left;
            protected final Collector<T> right;
    
            private AbstractPlusCollector(Collector<T> left, Collector<T> right) {
                this.left = left;
                this.right = right;
            }
    
            @Override
            public int size() {
                return left.size() + right.size();
            }
    
            @Override
            public ValueProducer getProducer() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Ordering.java

        @Override
        public int compare(@CheckForNull Object left, @CheckForNull Object right) {
          if (left == right) {
            return 0;
          } else if (left == null) {
            return -1;
          } else if (right == null) {
            return 1;
          }
          int leftCode = identityHashCode(left);
          int rightCode = identityHashCode(right);
          if (leftCode != rightCode) {
            return leftCode < rightCode ? -1 : 1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

            protected final MapCollector<K, V> right;
    
            private AbstractPlusCollector(MapCollector<K, V> left, MapCollector<K, V> right) {
                this.left = left;
                this.right = right;
            }
    
            @Override
            public ValueProducer getProducer() {
                return left.getProducer().plus(right.getProducer());
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Ordering.java

        @Override
        public int compare(@CheckForNull Object left, @CheckForNull Object right) {
          if (left == right) {
            return 0;
          } else if (left == null) {
            return -1;
          } else if (right == null) {
            return 1;
          }
          int leftCode = identityHashCode(left);
          int rightCode = identityHashCode(right);
          if (leftCode != rightCode) {
            return leftCode < rightCode ? -1 : 1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

        move_left = True
        while not (left == 0 and right == self._num_bins - 1):
          # Decrease left if right can't be moved or move_left is true.
          if (move_left and left > 0) or (right == self._num_bins - 1):
            left = max(left - 1, 0)
          # Else increase right.
          else:
            right = min(right + 1, self._num_bins - 1)
          # Toogle the move_left.
          move_left = not move_left
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/concepts.md

    The client will get a **500 Internal Server Error** for that request, but the application will continue working for the next requests instead of just crashing completely.
    
    ### Bigger Errors - Crashes
    
    Nevertheless, there might be cases where we write some code that **crashes the entire application** making Uvicorn and Python crash. 💥
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest.groovy

            then:
            def messages = models.left
            messages.size() == 2
            messages[0] == "It works from project :"
            messages[1] == "It works from project :a"
            def model = models.right
            model.size() == 2
            model[0].message == "It works from project :"
            model[1].message == "It works from project :a"
    
            and:
            fixture.assertStateStored {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top