Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 826 for Unreserve (0.23 sec)

  1. manifests/charts/istio-operator/crds/crd-operator.yaml

          jsonPath: .metadata.creationTimestamp
          name: Age
          type: date
        name: v1alpha1
        subresources:
          status: {}
        schema:
          openAPIV3Schema:
            type: object
            x-kubernetes-preserve-unknown-fields: true
        served: true
        storage: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 27 03:38:21 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_sum_replaced.txt

    go mod edit -replace rsc.io/quote@v1.5.0=rsc.io/quote@v1.5.1
    go mod tidy
    grep 'rsc.io/quote v1.5.1' go.sum
    cp go.sum go.sum.tidy
    
    # 'go mod vendor' should preserve that sum, and should not need to add any new entries.
    go mod vendor
    grep 'rsc.io/quote v1.5.1' go.sum
    cmp go.sum go.sum.tidy
    
    -- go.mod --
    module golang.org/issue/27868
    
    require rsc.io/quote v1.5.0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 677 bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/UncheckedExecutionException.java

       *     accepts a cause: Users of this class typically expect for instances to have a non-null
       *     cause. At the moment, you can <i>usually</i> still preserve behavior by passing an explicit
       *     {@code null} cause. Note, however, that passing an explicit {@code null} cause prevents
       *     anyone from calling {@link #initCause} later, so it is not quite equivalent to using a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

                                                     ShapedType type) {
      // Extract to a vector of StringRefs for converting.
      auto arr = input_tensor.flat<tstring>();
      std::vector<mlir::StringRef> string_refs;
      string_refs.reserve(arr.size());
      for (int i = 0; i < arr.size(); i++) {
        const auto& val = arr(i);
        string_refs.push_back({val.data(), val.size()});
      }
    
      return ElementsAttr(DenseStringElementsAttr::get(type, string_refs));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionSerializationEqualTester.java

    import com.google.common.collect.testing.features.CollectionFeature;
    import com.google.common.testing.SerializableTester;
    import org.junit.Ignore;
    
    /**
     * Basic reserialization test for collection types that must preserve {@code equals()} behavior when
     * reserialized. (Sets and Lists, but not bare Collections.)
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/testers/CollectionSerializationEqualTester.java

    import com.google.common.collect.testing.features.CollectionFeature;
    import com.google.common.testing.SerializableTester;
    import org.junit.Ignore;
    
    /**
     * Basic reserialization test for collection types that must preserve {@code equals()} behavior when
     * reserialized. (Sets and Lists, but not bare Collections.)
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

        const mlir::Value& original_source, mlir::OpBuilder* builder,
        llvm::SmallVectorImpl<mlir::Value>* tiled_inputs) {
      llvm::SmallVector<mlir::TF::SplitOp, 4> split_ops_for_tiled_input;
      split_ops_for_tiled_input.reserve(
          input_sharding.tile_assignment_devices_size());
    
      // Creates a tree of split nodes for sharding tiled inputs. Splits nodes
      // are created such that input data is sharded in row major order.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_in_testdata_dir.txt

    cd $WORK/testdata
    go mod init testdata.tld/foo
    
    # Getting a package within that module should resolve its dependencies.
    go get
    grep 'rsc.io/quote' go.mod
    
    # Tidying the module should preserve those dependencies.
    go mod tidy
    grep 'rsc.io/quote' go.mod
    
    [short] stop
    
    # Vendoring the module's dependencies should work too.
    go mod vendor
    exists vendor/rsc.io/quote
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 969 bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/util/ports/PortAllocator.groovy

     */
    
    package org.gradle.util.ports
    
    
    interface PortAllocator {
        public static final int MIN_PRIVATE_PORT = 49152
        public static final int MAX_PRIVATE_PORT = 65535
    
        /**
         * Assign and reserve a port
         * @return the port assigned
         */
        int assignPort()
    
        /**
         * Release a previously assigned port
         * @param port
         */
        void releasePort(int port)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 10 12:13:40 UTC 2015
    - 996 bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftModifyCppDepHeadersApp.groovy

                alternateMain = new SwiftMainWithCppDep(library.alternateGreeter)
            }
    
            @Override
            final List<IncrementalElement.Transform> getIncrementalChanges() {
                [preserve(main)]
            }
    
            final String moduleName = "App"
    
            @Override
            final String getExpectedOutput() {
                main.expectedOutput
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top