Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 826 for Unreserve (0.29 sec)

  1. src/os/exec/env_test.go

    		{
    			in:   []string{"=a", "=b", "foo", "bar"},
    			want: []string{"=b", "foo", "bar"},
    		},
    		{
    			// #49886: preserve weird Windows keys with leading "=" signs.
    			noCase: true,
    			in:     []string{`=C:=C:\golang`, `=D:=D:\tmp`, `=D:=D:\`},
    			want:   []string{`=C:=C:\golang`, `=D:=D:\`},
    		},
    		{
    			// #52436: preserve invalid key-value entries (for now).
    			// (Maybe filter them out or error out on them at some point.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 01:23:16 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

        def 'sync is not up to date when the preserve filter is changed'() {
            given:
            defaultSourceFileTree()
            file('dest').create {
                preserved { file('some-preserved-file.txt') }
            }
    
            buildScript '''
                task sync(type: Sync) {
                    from 'source'
                    into 'dest'
                    preserve {
                        include 'preserved'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalCppStaleLinkOutputAppWithLib.groovy

        class IncrementalCppLib extends IncrementalCppElement {
            final greeter = new CppGreeter()
            final sum = new CppSum()
    
            final List<IncrementalElement.Transform> incrementalChanges = [preserve(greeter.asLib()), preserve(sum.asLib())]
        }
    
        class IncrementalCppAppWithDep extends IncrementalCppElement implements AppElement {
            final CppMain main
    
            IncrementalCppAppWithDep(IncrementalCppLib library) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. pkg/apis/policy/v1/conversion.go

    		return err
    	}
    
    	switch {
    	case apiequality.Semantic.DeepEqual(in.Spec.Selector, policy.NonV1beta1MatchNoneSelector):
    		// no-op, preserve
    	case apiequality.Semantic.DeepEqual(in.Spec.Selector, policy.NonV1beta1MatchAllSelector):
    		// no-op, preserve
    	default:
    		// otherwise, make sure the label intended to be used in a match-all or match-none selector
    		// never gets combined with user-specified fields
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 15:29:11 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top