Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 199 for recreate (0.26 sec)

  1. pkg/controller/deployment/deployment_controller_test.go

    	f.expectUpdateDeploymentAction(d)
    	// Expect no update on replica sets though
    	f.run(ctx, testutil.GetKey(d, t))
    }
    
    // TestPodDeletionEnqueuesRecreateDeployment ensures that the deletion of a pod
    // will requeue a Recreate deployment iff there is no other pod returned from the
    // client.
    func TestPodDeletionEnqueuesRecreateDeployment(t *testing.T) {
    	logger, ctx := ktesting.NewTestContext(t)
    
    	f := newFixture(t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

        auto static_shape_attr =
            mlir::DenseIntElementsAttr::get(static_shape_type, static_shape);
        return rewriter.create<TF::ConstOp>(loc, static_shape_attr).getOutput();
      }
    
      // If the shape is not static, create a new ShapeOp.
      BoolAttr false_attr = rewriter.getBoolAttr(false);
      return rewriter
          .create<TF::ShapeOp>(loc, input,
                               /*use_32bit=*/false_attr)
          .getOutput();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/ProviderSpec.groovy

            def usesDefaultValue = notPresent.orElse(supplier1).orElse(supplier2).orElse(supplier3)
            usesDefaultValue.present
            usesDefaultValue.get() == someValue()
        }
    
        def "can unpack state and recreate instance when provider has no value"() {
            given:
            def provider = providerWithNoValue()
    
            expect:
            provider instanceof Managed
            provider.isImmutable() == noValueProviderImmutable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

         * This is not correct!
         *
         * These services are normally available in the build session scope, not the project scope.
         * However, workers do not observe the same lifecycle as the build and do not stop or recreate build session services between builds.
         * This works around that by recreating the build session scope services for every request.
         */
        @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderRegistry.java

    /**
     * A {@link PayloadClassLoaderRegistry} used in the client JVM that maps classes loaded by application ClassLoaders. Inspects each class to calculate a minimal classpath to send across to the daemon process to recreate the ClassLoaders.
     *
     * <p>Delegates to another {@link PayloadClassLoaderRegistry} to take care of managing the classes serialized from the daemon.
     */
    @ThreadSafe
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

            public static final String PROPERTY_NAME = "org.gradle.configuration-cache.internal.recreate-cache";
            public static final String DEPRECATED_PROPERTY_NAME = "org.gradle.unsafe.configuration-cache.recreate-cache";
    
            public ConfigurationCacheRecreateOption() {
                super(PROPERTY_NAME, DEPRECATED_PROPERTY_NAME);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

      auto shape = builder.create<TF::ConstOp>(
          scatter.getLoc(),
          DenseElementsAttr::get(
              shape_type, {static_cast<int>(indices_type.getDimSize(0)), 1}));
      auto indices = builder.create<TF::ReshapeOp>(scatter.getLoc(),
                                                   scatter.getIndices(), shape);
      Value tensor_scatter_update = builder.create<TF::TensorScatterUpdateOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            outputContains("create task")
            outputContains("configure task")
            result.assertTasksExecuted(":a", ":b")
    
            when:
            configurationCacheRun "a"
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("Reusing configuration cache.")
            outputDoesNotContain("running build script")
            outputDoesNotContain("create task")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/ImmutableActionSet.java

            @Override
            ImmutableActionSet<T> addAll(SetWithFewActions<T> source) {
                if (singleAction.equals(source.actions[0])) {
                    // Already at the front. If not at the front, need to recreate
                    return source;
                }
                if (source.actions.length < FEW_VALUES && !source.contains(singleAction)) {
                    // Adding a small set with no duplicates
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. pkg/controller/deployment/util/deployment_util_test.go

    			apps.RollingUpdateDeploymentStrategyType,
    			1, 5, 1, 5,
    		},
    		{
    			"scale up - to depReplicas",
    			apps.RollingUpdateDeploymentStrategyType,
    			6, 2, 10, 6,
    		},
    		{
    			"recreate - to depReplicas",
    			apps.RecreateDeploymentStrategyType,
    			3, 1, 1, 3,
    		},
    	}
    	newDeployment := generateDeployment("nginx")
    	newRC := generateRS(newDeployment)
    	rs5 := generateRS(newDeployment)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K bytes
    - Viewed (0)
Back to top