Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 611 for Unreserve (0.14 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ManagedFactories.java

            @Override
            public <S> S fromState(Class<S> type, Object state) {
                if (!type.isAssignableFrom(PUBLIC_TYPE)) {
                    return null;
                }
                // TODO - should preserve the property type (which may be different to the provider type)
                ProviderInternal<S> provider = Cast.uncheckedNonnullCast(state);
                return type.cast(propertyOf(provider.getType(), provider));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftStaleCompileOutputApp.groovy

        private final multiply = new SwiftMultiply()
        private final main = new SwiftMain(greeter, sum)
    
        final List<IncrementalElement.Transform> incrementalChanges = [
            preserve(greeter),
            rename(sum),
            delete(multiply),
            preserve(main)
        ]
        final String expectedOutput = main.expectedOutput
        final String expectedAlternateOutput = main.expectedOutput
        final String moduleName = "App"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/cc/client/client_session.cc

      }
    
      std::vector<string> output_tensor_names;
      output_tensor_names.reserve(fetch_outputs.size());
      for (auto const& output : fetch_outputs) {
        output_tensor_names.push_back(output.name());
      }
      std::vector<string> target_node_names;
      target_node_names.reserve(run_outputs.size());
      for (auto const& output : run_outputs) {
        target_node_names.push_back(output.node()->name());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:04:10 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftModifyExpectedOutputApp.groovy

        private final main = new SwiftMain(greeter, sum)
        private final alternateMain = new SwiftAlternateMain(greeter)
    
        final List<IncrementalElement.Transform> incrementalChanges = [
            preserve(greeter), preserve(sum), modify(main, alternateMain)]
        final String expectedOutput = main.expectedOutput
        final String expectedAlternateOutput = alternateMain.expectedOutput
        final String moduleName = "App"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftStaleLinkOutputAppWithLib.groovy

            final greeter = new SwiftGreeter()
            final sum = new SwiftSum()
    
            final String moduleName = "Greeter"
            final List<IncrementalElement.Transform> incrementalChanges = [preserve(greeter), preserve(sum)]
        }
    
        class IncrementalSwiftAppWithDep extends IncrementalSwiftElement implements AppElement {
            final SwiftMain main
    
            IncrementalSwiftAppWithDep(IncrementalSwiftLib library) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/testng-preserveorder/groovy/settings.gradle

    rootProject.name = 'preserve-order'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 36 bytes
    - Viewed (0)
  7. build-logic/settings.gradle.kts

    include("root-build")
    
    // Shared information about external modules
    include("dependency-modules")
    
    // Special purpose build logic for root project - please preserve alphabetical order
    include("cleanup")
    include("idea")
    include("lifecycle")
    
    // Special purpose build logic for subproject - please preserve alphabetical order
    include("binary-compatibility")
    include("build-init-samples")
    include("buildquality")
    include("documentation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftModifyExpectedOutputAppWithLib.groovy

            final alternateGreeter = new SwiftAlternateGreeter()
    
            final String moduleName = "Greeter"
            final List<IncrementalElement.Transform> incrementalChanges = [modify(greeter, alternateGreeter), preserve(sum)]
    
            @Override
            int sum(int a, int b) {
                return sum.sum(a, b)
            }
        }
    
        class IncrementalSwiftAppWithDep extends IncrementalSwiftApp {
            final SwiftMain main
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

      SmallVector<Value, 4> operands;
      operands.reserve(operands_size);
      operands.append(while_op.getOperands().begin(), while_op.getOperands().end());
      operands.append(extra_operands.begin(), extra_operands.end());
      SmallVector<Type, 4> new_types;
      new_types.reserve(operands_size);
      new_types.append(while_op.getResultTypes().begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/DefaultResolvableArtifactCodec.kt

            writeFile(value.file)
            IvyArtifactNameSerializer.INSTANCE.write(this, value.artifactName)
            // TODO - preserve the artifact id implementation instead of unpacking the component id
            componentIdSerializer.write(this, value.id.componentIdentifier)
            // TODO - preserve the artifact's owner id (or get rid of it as it's not used for transforms)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top