Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 295 for dropped (0.19 sec)

  1. pkg/api/pod/warnings_test.go

    				`spec.containers[0].env[1]: hides previous definition of "b", which may be dropped when using apply`,
    				`spec.containers[0].env[2]: hides previous definition of "b", which may be dropped when using apply`,
    				`spec.containers[0].env[3]: hides previous definition of "b", which may be dropped when using apply`,
    				`spec.containers[0].env[4]: hides previous definition of "b", which may be dropped when using apply`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  2. pkg/proxy/metrics/metrics.go

    		},
    	)
    
    	// iptablesCTStateInvalidDroppedPacketsDescription describe the metrics for the number of packets dropped
    	// by iptables which were marked INVALID by conntrack.
    	iptablesCTStateInvalidDroppedPacketsDescription = metrics.NewDesc(
    		"kubeproxy_iptables_ct_state_invalid_dropped_packets_total",
    		"packets dropped by iptables to work around conntrack problems",
    		nil, nil, metrics.ALPHA, "")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

      op.setBodyAttr(
          FlatSymbolRefAttr::get(op.getContext(), cloned_body.getName()));
    
      // Drop cond/body args and return value. WhileOp result will be dropped later
      // in EliminateUnusedResults. Traverse in reverse order so that indices to be
      // deleted stay unchanged.
      for (int idx = op.getNumResults() - 1; idx >= 0; --idx) {
        if (!can_eliminate.test(idx)) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. src/os/exec.go

    	// as unavailable after Release or Wait to avoid extending this delay.
    	// This is achieved by setting either processStatus flag when the
    	// Process' persistent reference is dropped. The only difference in the
    	// flags is the reason the handle is unavailable, which affects the
    	// errors returned by concurrent calls.
    	state atomic.Uint64
    
    	// Used only in modePID.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

            if (statistics.isUnknownEventEncountered()) {
                warningLogger.warn("Dropped VFS state due to lost state");
                return true;
            }
            if (statistics.getErrorWhileReceivingFileChanges().isPresent()) {
                warningLogger.warn("Dropped VFS state due to error while receiving file changes", statistics.getErrorWhileReceivingFileChanges().get());
                return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    // Use in unitchecker.Run will gob.Register all fact types for the returned
    // graph of analyzers but of course not the ones only reachable from
    // dropped analyzers. To avoid inconsistency about which gob types are
    // registered from run to run, Parse itself gob.Registers all the facts
    // only reachable from dropped analyzers.
    // This is not a particularly elegant API, but this is an internal package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. pkg/controller/deployment/deployment_controller.go

    	dc.enqueueDeployment(d)
    }
    
    // deletePod will enqueue a Recreate Deployment once all of its pods have stopped running.
    func (dc *DeploymentController) deletePod(logger klog.Logger, obj interface{}) {
    	pod, ok := obj.(*v1.Pod)
    
    	// When a delete is dropped, the relist will notice a pod in the store not
    	// in the list, leading to the insertion of a tombstone object which contains
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. cmd/bucket-replication-metrics.go

    type ReplicationMRFStats struct {
    	LastFailedCount uint64 `json:"failedCount_last5min"`
    	// Count of unreplicated entries that were dropped after MRF retry limit reached since cluster start.
    	TotalDroppedCount uint64 `json:"droppedCount_since_uptime"`
    	// Bytes of unreplicated entries that were dropped after MRF retry limit reached since cluster start.
    	TotalDroppedBytes uint64 `json:"droppedBytes_since_uptime"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

         *
         * Example: `foo.bar.Baz.Inner` with 1 dropped class is `foo.bar.Baz`, and with 2 dropped class is `null`.
         */
        private fun ClassId.dropLastNestedClasses(classesToDrop: Int) =
            generateSequence(this) { it.outerClassId }.drop(classesToDrop).firstOrNull()
    
        /**
         * @return How many qualifiers needs to be dropped from [wholeType] to get [nestedType].
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

        // Replace the uses of block arguments with function arguments. Note that we
        // can't erase the arguments here because the operations may still use them
        // and these uses will be dropped after legalization of each op.
        unsigned idx = 0;
        Block &block = graph_func.getBody().front();
        for (auto iter = block.args_begin(), end_iter = block.args_end();
             iter != end_iter; ++iter) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top