Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for withZip (0.21 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kubelet/kubelet_pods_test.go

    					{Type: v1.PodScheduled, Status: v1.ConditionTrue},
    				},
    				ContainerStatuses: []v1.ContainerStatus{
    					ready(withID(runningStateWithStartedAt("containerA", time.Unix(1, 0).UTC()), "://c1")),
    					ready(withID(runningStateWithStartedAt("containerB", time.Unix(2, 0).UTC()), "://c2")),
    				},
    			},
    			expectedPodReadyToStartContainersCondition: v1.PodCondition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	// * terminating: pod should be stopped (syncTerminatingPod)
    	// * terminated: pod should have all resources cleaned up (syncTerminatedPod)
    	//
    	// and invoke the handler methods that correspond to each state. Components within the
    	// kubelet that need to know the phase of the pod in order to correctly set up or tear down
    	// resources must consult the podWorkers.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    			// the current package being examined is the importer.
    			// If we have not yet accepted package p onto the import stack,
    			// then the cause of the error is not within p itself: the error
    			// must be either in an explicit command-line argument,
    			// or on the importer side (indicated by a non-empty importPos).
    			if path != stk.Top() && len(importPos) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

      /**
       * Mask value for indexing into segments. The upper bits of a key's hash code are used to choose
       * the segment.
       */
      final int segmentMask;
    
      /**
       * Shift value for indexing within segments. Helps prevent entries that end up in the same segment
       * from also ending up in the same bucket.
       */
      final int segmentShift;
    
      /** The segments, each of which is a specialized hash table. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top