Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for withZip (0.13 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "volumeNamespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    							},
    						},
    					},
    				},
    			},
    			expectedPodStatusUpdate: false, // Pod was never scheduled
    		},
    		// Node created recently, without status.
    		// Expect no action from node controller (within startup grace period).
    		{
    			fakeNodeHandler: &testutil.FakeNodeHandler{
    				Existing: []*v1.Node{
    					{
    						ObjectMeta: metav1.ObjectMeta{
    							Name:              "node0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    as in <code>'x'</code> or <code>'\n'</code>.
    Within the quotes, any character may appear except newline and unescaped single
    quote. A single quoted character represents the Unicode value
    of the character itself,
    while multi-character sequences beginning with a backslash encode
    values in various formats.
    </p>
    
    <p>
    The simplest form represents the single character within the quotes;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // When 'go test' runs a test binary, it does so from within the
    // corresponding package's source code directory. Depending on the test,
    // it may be necessary to do the same when invoking a generated test
    // binary directly. Because that directory may be located within the
    // module cache, which may be read-only and is verified by checksums, the
    // test must not write to it or any other directory within the module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    }
    
    // Rollback aborts the transaction.
    func (tx *Tx) Rollback() error {
    	return tx.rollback(false)
    }
    
    // PrepareContext creates a prepared statement for use within a transaction.
    //
    // The returned statement operates within the transaction and will be closed
    // when the transaction has been committed or rolled back.
    //
    // To use an existing prepared statement on this transaction, see [Tx.Stmt].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         *       ClosingFuture} call {@link #from(ListenableFuture)}.
         * </ul>
         *
         * <p>The same warnings about doing heavyweight operations within {@link
         * ClosingFuture#transformAsync(AsyncClosingFunction, Executor)} apply here.
         */
        public <V extends @Nullable Object> ClosingFuture<V> callAsync(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
            <field>
              <name>artifactId</name>
              <version>3.0.0+</version>
              <required>true</required>
              <description>The identifier for this artifact that is unique within the group given by the
                group ID. An artifact is something that is either produced or used by a project.
                Examples of artifacts produced by Maven for a project include: JARs, source and binary
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ClosingFuture.java

         *       ClosingFuture} call {@link #from(ListenableFuture)}.
         * </ul>
         *
         * <p>The same warnings about doing heavyweight operations within {@link
         * ClosingFuture#transformAsync(AsyncClosingFunction, Executor)} apply here.
         */
        public <V extends @Nullable Object> ClosingFuture<V> callAsync(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_node_status_test.go

    	// Update node status again when nothing is changed (except heartbeat time).
    	// Do not report node status if it is within the duration of nodeStatusReportFrequency.
    	clock.Step(10 * time.Second)
    	assert.NoError(t, kubelet.updateNodeStatus(ctx))
    
    	// Only 1 more action (There were 4 actions before).
    	actions = kubeClient.Actions()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        Option<"globally_unique_func_names_", "globally-unique-func-names", "bool",
               /*default=*/"true",
               "If true, the pass adds extra identifiers to make function names "
               "globally unique within a process, not just within a module.">
      ];
    }
    
    def ConvertLaunchFuncToTFCallPass : Pass<"tf-device-convert-launch-func-to-tf-call", "ModuleOp"> {
      let summary = "Rewrites tf_device::LaunchFuncOp to TF::PartitionedCallOp";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top