Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 473 for recreate (0.2 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-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/DefaultPayloadClassLoaderRegistry.java

            // So, update the classpath of this shared classloader
            // It would be better to not combine client classloaders but instead to recreate the client side structure
            if (details.spec instanceof ClientOwnedClassLoaderSpec) {
                ClientOwnedClassLoaderSpec spec = (ClientOwnedClassLoaderSpec) details.spec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. 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)
  5. pkg/config/mesh/watcher.go

    		if !reflect.DeepEqual(meshConfig.ConfigSources, current.ConfigSources) {
    			log.Info("mesh configuration sources have changed")
    			// TODO Need to recreate or reload initConfigController()
    		}
    
    		w.MeshConfig.Store(meshConfig)
    		handlers = append(handlers, w.handlers...)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 18:33:38 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/volume/flexvolume/probe.go

    	pluginDirAbs, err := filepath.Abs(prober.pluginDir)
    	if err != nil {
    		return err
    	}
    
    	// event of pluginDirAbs
    	if eventPathAbs == pluginDirAbs {
    		// If the Flexvolume plugin directory is removed, need to recreate it
    		// in order to keep it under watch.
    		if event.Has(fsnotify.Remove) {
    			if err := prober.createPluginDir(); err != nil {
    				return err
    			}
    			if err := prober.addWatchRecursive(pluginDirAbs); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. 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)
Back to top