Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for canRotate (0.55 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    	// The jump table symbol is accessed only from the function symbol.
    	s.Set(obj.AttrStatic, true)
    	return s
    }
    
    // canRotate reports whether the architecture supports
    // rotates of integer registers with the given number of bits.
    func canRotate(c *Config, bits int64) bool {
    	if bits > c.PtrSize*8 {
    		// Don't rewrite to rotates bigger than the machine word.
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. docs/ru/docs/deployment/docker.md

    def read_item(item_id: int, q: Union[str, None] = None):
        return {"item_id": item_id, "q": q}
    ```
    
    ### Dockerfile
    
    В этой же директории создайте файл `Dockerfile` и заполните его:
    
    ```{ .dockerfile .annotate }
    # (1)
    FROM python:3.9
    
    # (2)
    WORKDIR /code
    
    # (3)
    COPY ./requirements.txt /code/requirements.txt
    
    # (4)
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    # (5)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			Annotations: map[string]string{},
    		},
    	})
    	s.assertEvent(t, s.podXdsName("pod1"))
    	// assert that we're once again using no waypoint
    	s.assertWaypointAddressForPod(t, "pod1", "")
    
    	// annotate pod2 to use a waypoint
    	s.labelPod(t, "pod1", testNS, map[string]string{constants.AmbientUseWaypointLabel: "waypoint-sa1"})
    	s.assertEvent(t, s.podXdsName("pod1"))
    	// assert that the correct waypoint was configured
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      @Override
      public ImmutableSortedMap<K, V> descendingMap() {
        // TODO(kevinb): The descendingMap is never actually cached at all. Either:
        //
        // - Cache it, and annotate the field with @LazyInit.
        // - Simplify the code below, and consider eliminating the field (b/287198172), which is also
        //   set by one of the constructors.
        ImmutableSortedMap<K, V> result = descendingMap;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

      %next_index_in_list = "tf.AddV2"(%index_in_list, %one) : (tensor<1xi32>, tensor<1xi32>) -> tensor<1xi32>
      return
    }
    ```
    ### `-tf-tpu-annotate-dynamic-shape-inputs`
    
    _Annotate the inputs returned by TPUCopyWithDynamicShapeOp with dynamic shape_
    
    This pass looks for the usage of the result of TPUCopyWithDynamicShapeOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * InternalFutures#tryInternalFastPathGetFailure(InternalFutureFailureAccess)}.
       *
       * @since 27.0
       */
      @Override
      /*
       * We should annotate the superclass, InternalFutureFailureAccess, to say that its copy of this
       * method returns @Nullable, too. However, we're not sure if we want to make any changes to that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * InternalFutures#tryInternalFastPathGetFailure(InternalFutureFailureAccess)}.
       *
       * @since 27.0
       */
      @Override
      /*
       * We should annotate the superclass, InternalFutureFailureAccess, to say that its copy of this
       * method returns @Nullable, too. However, we're not sure if we want to make any changes to that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      @Override
      public ImmutableSortedMap<K, V> descendingMap() {
        // TODO(kevinb): The descendingMap is never actually cached at all. Either:
        //
        // - Cache it, and annotate the field with @LazyInit.
        // - Simplify the code below, and consider eliminating the field (b/287198172), which is also
        //   set by one of the constructors.
        ImmutableSortedMap<K, V> result = descendingMap;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_3x.md

        recovery could interact to cause a `NoSuchElementException` crash in the
        `RouteSelector`.
    
    
    ## Version 3.8.0
    
    _2017-05-13_
    
    
     *  **OkHttp now uses `@Nullable` to annotate all possibly-null values.** We've
        added a compile-time dependency on the JSR 305 annotations. This is a
        [provided][maven_provided] dependency and does not need to be included in
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	"k8s.io/apimachinery/pkg/util/json"
    	"k8s.io/apimachinery/pkg/util/mergepatch"
    )
    
    // An alternate implementation of JSON Merge Patch
    // (https://tools.ietf.org/html/rfc7386) which supports the ability to annotate
    // certain fields with metadata that indicates whether the elements of JSON
    // lists should be merged or replaced.
    //
    // For more information, see the PATCH section of docs/devel/api-conventions.md.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
Back to top