Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 183 for recreate (0.34 sec)

  1. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

                    generateTypeSafeAccessorsFor(projectScriptPlugins)
                }
            }
        }
    
        private
        fun recreateTaskDirectories() {
            recreate(temporaryDir)
            recreate(sourceCodeOutputDir.get().asFile)
            recreate(metadataOutputDir.get().asFile)
        }
    
        private
        fun IO.generateTypeSafeAccessorsFor(projectScriptPlugins: List<PrecompiledScriptPlugin>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    }
    
    // sandboxTemplate is a sandbox template to create fake sandbox.
    type sandboxTemplate struct {
    	pod         *v1.Pod
    	attempt     uint32
    	createdAt   int64
    	state       runtimeapi.PodSandboxState
    	running     bool
    	terminating bool
    }
    
    // containerTemplate is a container template to create fake container.
    type containerTemplate struct {
    	pod            *v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/cleanup.go

    	}()
    
    	if i.cfg.DumpKubernetesManifests {
    		i.installer.Dump(i.ctx)
    	}
    
    	if i.cfg.DeployIstio {
    		errG := multierror.Group{}
    		// Make sure to clean up primary clusters before remotes, or istiod will recreate some of the CMs that we delete
    		// in the remote clusters before it's deleted.
    		for _, c := range i.ctx.AllClusters().Primaries() {
    			i.cleanupCluster(c, &errG)
    		}
    		for _, c := range i.ctx.Clusters().Remotes() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top