Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for withZip (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kubelet/kubelet_test.go

    	// HandlePodCleanups gets called every 2 seconds within the Kubelet's
    	// housekeeping routine. This test registers the pod, removes the unwanted pod, then calls into
    	// HandlePodCleanups a few more times. We should only see one Destroy() event. podKiller runs
    	// within a goroutine so a two second delay should be enough time to
    	// mark the pod as killed (within this test case).
    
    	kubelet.HandlePodCleanups(ctx)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
    The 4-D `input` tensor is treated as a 3-D array of 1-D vectors (along the last
    dimension), and each vector is normalized independently.  Within a given vector,
    each component is divided by the weighted, squared sum of inputs within
    `depth_radius`.  In detail,
    
        sqr_sum[a, b, c, d] =
            sum(input[a, b, c, d - depth_radius : d + depth_radius + 1] ** 2)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    // a terminal phase, or if the Kubelet has already indicated the pod has reached
    // a terminal phase but the config source has not accepted it yet. This method
    // should only be used within the pod configuration loops that notify the pod
    // worker, other components should treat the pod worker as authoritative.
    func (kl *Kubelet) isAdmittedPodTerminal(pod *v1.Pod) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    			hpaMaxReplicas:                   8,
    			expectedConvertedDesiredReplicas: 7,
    			expectedCondition:                "DesiredWithinRange",
    			annotation:                       "prenormalized desired replicas within range",
    		},
    		{
    			currentReplicas:                  3,
    			expectedDesiredReplicas:          1,
    			hpaMinReplicas:                   2,
    			hpaMaxReplicas:                   8,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top