Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 120 for creat (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        shape is unidentifiable.
        All of these args are supposed to be independent and not related to original
        creation of TensorList.
    
        This pass will create multiple instances of TensorList for each arg of the
        while op and each use and thus there will be not a conflict in resolving the
        shape of these different inputs.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status_test.go

    	defer testKubelet.Cleanup()
    	kubelet := testKubelet.kubelet
    	kubeClient := testKubelet.fakeKubeClient
    	kubeClient.AddReactor("create", "nodes", func(action core.Action) (bool, runtime.Object, error) {
    		// Return an error on create.
    		return true, &v1.Node{}, &apierrors.StatusError{
    			ErrStatus: metav1.Status{Reason: metav1.StatusReasonAlreadyExists},
    		}
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * Start a {@code ClosingFuture} pipeline {@linkplain #submit(ClosingCallable, Executor) from a
     * callable block} that may capture objects for later closing. To start a pipeline from a {@link
     * ListenableFuture} that doesn't create resources that should be closed later, you can use {@link
     * #from(ListenableFuture)} instead.
     *
     * <h3>Derived steps</h3>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * Start a {@code ClosingFuture} pipeline {@linkplain #submit(ClosingCallable, Executor) from a
     * callable block} that may capture objects for later closing. To start a pipeline from a {@link
     * ListenableFuture} that doesn't create resources that should be closed later, you can use {@link
     * #from(ListenableFuture)} instead.
     *
     * <h3>Derived steps</h3>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    			if tc.setStartTime {
    				start := metav1.NewTime(fakeClock.Now())
    				job.Status.StartTime = &start
    			}
    
    			_, err := clientset.BatchV1().Jobs(job.GetNamespace()).Create(ctx, job, metav1.CreateOptions{})
    			if err != nil {
    				t.Errorf("Could not create Job: %v", err)
    			}
    
    			var j *batch.Job
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.4.md

    - **UI**
      - [stable] Kubernetes Dashboard UI - a great looking Kubernetes Dashboard UI with 90% CLI parity for at-a-glance management. [docs](https://github.com/kubernetes/dashboard)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    // file in the directory that is not included when building
    // the package.
    //
    // The -i flag causes clean to remove the corresponding installed
    // archive or binary (what 'go install' would create).
    //
    // The -n flag causes clean to print the remove commands it would execute,
    // but not run them.
    //
    // The -r flag causes clean to be applied recursively to all the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    			require.NoError(t, err, "could not create a temp hosts file")
    			defer os.RemoveAll(tmpdir)
    
    			actualContent, fileReadErr := nodeHostsFileContent(filepath.Join(tmpdir, testCase.hostsFileName), testCase.hostAliases)
    			require.NoError(t, fileReadErr, "could not create read hosts file")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "path": {
              "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
              "type": "string"
            },
            "readOnly": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top