Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for createNow (0.2 sec)

  1. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/MavenProjectsCreator.java

            }
            try {
                return createNow(mavenSettings, pomFile);
            } catch (Exception e) {
                throw new MavenConversionException(String.format("Unable to create Maven project model using POM %s.", pomFile), e);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. pilot/pkg/xds/workload_test.go

    		})
    		ads.ExpectEmptyResponse()
    
    		// Create pod, due to wildcard subscribe we should receive it
    		createPod(s, "pod", "sa", "127.0.0.1", "not-node")
    		expect(ads.ExpectResponse(), "Kubernetes//Pod/default/pod")
    
    		// A new pod should push only that one
    		createPod(s, "pod2", "sa", "127.0.0.2", "node")
    		expect(ads.ExpectResponse(), "Kubernetes//Pod/default/pod2")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/util_test.go

    }
    
    func TestHasInitialEventsEndBookmarkAnnotation(t *testing.T) {
    	createPod := func(name string) *example.Pod {
    		return &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: name}}
    	}
    	createAnnotatedPod := func(name, value string) *example.Pod {
    		p := createPod(name)
    		p.Annotations = map[string]string{}
    		p.Annotations[metav1.InitialEventsAnnotationKey] = value
    		return p
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 11 12:07:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/async_op_thread.mlir

      %ch0 = tfrt.new.chain
    
      %ch1 = tfrt_fallback_async.createop(%ch0) key(0) device("/CPU:0") "tf.Const"()
             { dtype = i32, value = dense<[2]> : tensor<1xi32> } num_args(0)
      %ch2 = tfrt_fallback_async.createop(%ch1) key(1) device("/CPU:0")
             "tf.TestAsyncTfrtAsyncThread"() {T = i32} num_args(1)
      %ch3 = tfrt_fallback_async.createop(%ch2) key(2) device("/CPU:0")
             "tf.TestPrintThreadName"() num_args(0)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 18 22:58:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/BUILD

    #     # copybara:uncomment driver = "//tensorflow/compiler/mlir:run_lit.sh",
    #     exclude = [
    #         "compile.benchmark.large.mlir",
    #         "batch_function_fallback.mlir",
    #         "create_op.mlir",
    #         "custom_thread_pool.mlir",
    #     ],
    #     # copybara:uncomment flaky = ["compile.error.mlir"],
    #     size_override = {
    #         "compile.benchmark.small.mlir": "medium",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. pkg/volume/util/recyclerclient/recycler_client_test.go

    		client := &mockRecyclerClient{
    			events: test.eventSequence,
    			pod:    test.existingPod,
    		}
    		err := internalRecycleVolumeByWatchingPodUntilCompletion(test.createPod.Name, test.createPod, client)
    		receivedError := ""
    		if err != nil {
    			receivedError = err.Error()
    		}
    		if receivedError != test.expectedError {
    			t.Errorf("Test %q failed, expected error %q, got %q", test.name, test.expectedError, receivedError)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    	})
    	initTestEnv(t, c.client.Kube(), fx)
    	createPod := func(ip, name string) {
    		addPods(t, c, fx, generatePod(ip, name, "ns", "1", "", map[string]string{}, map[string]string{}))
    	}
    
    	createPod("128.0.0.1", "pod1")
    	assert.Equal(t, c.pods.getPodKeys("128.0.0.1"), []types.NamespacedName{{Name: "pod1", Namespace: "ns"}})
    	events.WaitOrdered("pod1/add", "pod1/update")
    	createPod("128.0.0.1", "pod2")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/injection.go

    // created as an interface to allow testing.
    type jobControlInterface interface {
    	// GetJob retrieves a Job.
    	GetJob(namespace, name string) (*batchv1.Job, error)
    	// CreateJob creates new Jobs according to the spec.
    	CreateJob(namespace string, job *batchv1.Job) (*batchv1.Job, error)
    	// DeleteJob deletes the Job identified by name.
    	// TODO: delete by UID?
    	DeleteJob(namespace string, name string) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 09:37:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.td

      );
    
      let results = (outs
        Variadic<TensorType>:$results
      );
    
      let assemblyFormat = "attr-dict `:` type($results)";
    }
    
    def CreateOp: FallbackSync_Op<"createop", []> {
      let summary = "The Fallback CreateOp";
    
      let description = [{
        The CreateOp creates the tensorflow::OpKernel in the fallback context.
    
        op_key: The unique key to identify this op.
        num_args: The number of inputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 07 21:12:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/ir/fallback_opt.mlir

      tfrt.return %1 : i1
    }
    
    // CHECK-LABEL: func @createop
    func.func @createop(%in_ch: !tfrt.chain) -> !tfrt.chain {
    
      // CHECK: [[ch:%.*]] = tfrt_fallback_async.createop(%{{.*}}) key(100) device("cpu") "tf.AddV2"() {T = i32} num_args(2)
      %out_ch = tfrt_fallback_async.createop(%in_ch) key(100) device("cpu") "tf.AddV2"() {T = i32} num_args(2)
    
      // CHECK: tfrt.return [[ch]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 11:03:04 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top