Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 767 for Unreserve (0.79 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/IncrementalCppStaleCompileOutputApp.groovy

        private final multiply = new CppMultiply()
        private final main = new CppMain(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
    
    
    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. pkg/api/testing/meta_test.go

    					if m.GetResourceVersion() != "102030" {
    						t.Errorf("%v (%v) did not preserve resource version", gv.WithKind(kind), knownType)
    						continue
    					}
    					labels := map[string]string{"a": "b"}
    					m.SetLabels(labels)
    					if !reflect.DeepEqual(m.GetLabels(), labels) {
    						t.Errorf("%v (%v) did not preserve labels", gv.WithKind(kind), knownType)
    						continue
    					}
    				default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 14 10:11:56 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

    		{[]string{"fullObject"}, nil},
    		{[]string{"spanning", "embedded"}, nil},
    		{[]string{"preserve-fields"}, map[string]interface{}{"metadata": map[string]interface{}{}}},
    		{[]string{"preserve-fullMetadata"}, map[string]interface{}{}},
    		{[]string{"preserve-fullObject"}, nil},
    		{[]string{"preserve-spanning", "embedded"}, nil},
    	}
    
    	returnedFoo := &unstructured.Unstructured{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ProgramSource.kt

            if (ranges.isEmpty()) this
            else ProgramText(text.erase(ranges))
    
        fun preserve(vararg ranges: IntRange): ProgramText =
            erase(complementOf(ranges))
    
        internal
        fun preserve(ranges: List<IntRange>): ProgramText =
            preserve(*ranges.toTypedArray())
    
        fun subText(range: IntRange): ProgramText =
            ProgramText(text.substring(range))
    
        internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. 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)
Back to top