Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 476 for Koop (0.04 sec)

  1. pkg/kubelet/cm/dra/manager.go

    		}
    	}
    	m.cache.RUnlock()
    
    	// Loop through all inactive pods and call UnprepareResources on them.
    	for _, podClaims := range inactivePodClaims {
    		if err := m.unprepareResources(podClaims.uid, podClaims.namespace, podClaims.claimNames); err != nil {
    			klog.ErrorS(err, "Unpreparing pod resources in reconcile loop", "podUID", podClaims.uid)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

    // Analyzes while loops to compute resourceIDs for the loop results.
    //
    // (1) The base case for the analysis is that if the loop body does not execute
    //     at all, the resource IDs for each result is the same as the resource IDs
    //     of the corresponding input.
    // (2) If the loop does execute one or more times, then we need to account for
    //     data flow through the body of the while loop. If result #r is the same
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/project/LegacyLocalRepositoryManager.java

                result.setAvailable(true);
            }
    
            return result;
        }
    
        public void add(RepositorySystemSession session, LocalArtifactRegistration request) {
            // noop
        }
    
        public LocalMetadataResult find(RepositorySystemSession session, LocalMetadataRequest request) {
            LocalMetadataResult result = new LocalMetadataResult(request);
    
            String path;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/UnitCodec.kt

    import org.gradle.internal.serialize.graph.ReadContext
    import org.gradle.internal.serialize.graph.WriteContext
    
    
    object UnitCodec : Codec<Unit> {
    
        override suspend fun WriteContext.encode(value: Unit) {
            // noop
        }
    
        override suspend fun ReadContext.decode() {
            // returns Unit instance under the hood
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/hoist_loop_invariant.cc

    namespace mlir {
    namespace TF {
    
    namespace {
    
    #define GEN_PASS_DEF_HOISTLOOPINVARIANTPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // Hoists loop invariant ops to the outside of the loop.
    // This is similar to LoopInvariantCodeMotion pass, but it also hoists resource
    // related ops, e.g., ReadVariableOp, if the variable is read only.
    struct HoistLoopInvariantPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. pkg/proxy/config/config.go

    	OnNodeSynced()
    }
    
    // NoopNodeHandler is a noop handler for proxiers that have not yet
    // implemented a full NodeHandler.
    type NoopNodeHandler struct{}
    
    // OnNodeAdd is a noop handler for Node creates.
    func (*NoopNodeHandler) OnNodeAdd(node *v1.Node) {}
    
    // OnNodeUpdate is a noop handler for Node updates.
    func (*NoopNodeHandler) OnNodeUpdate(oldNode, node *v1.Node) {}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h

      // true of the mapping has changed.
      bool PropagateInputToOutput(const Value& operand, const OpResult& result);
    
      // Analyzes while loops to compute resource IDs for the loop results.
      // `body_info` is the backtrack analysis info for the loop body.
      void AnalyzeWhileLoop(Operation* while_op,
                            const BacktrackAnalysisInfo& body_info);
    
      // Analyzes tf.Case/tf.If ops to compute resource IDs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. src/runtime/panic.go

    var rangePanicError = error(errorString("range function continued iteration after loop body panic"))
    var rangeExhaustedError = error(errorString("range function continued iteration after whole loop exit"))
    var rangeMissingPanicError = error(errorString("range function recovered a loop body panic and did not resume panicking"))
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/change_test.go

    			t.Error(err)
    		}
    	}
    
    	// Set up 10 watchers for custom resource.
    	// We can't exercise them in a loop the same way as get requests, as watchcache
    	// can reject them with 429 and Retry-After: 1 if it is uninitialized and even
    	// though 429 is automatically retried, with frequent watchcache terminations and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:59:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    var FileRefreshDuration = 1 * time.Minute
    
    // ControllerRunner is a generic interface for starting a controller
    type ControllerRunner interface {
    	// RunOnce runs the sync loop a single time.  This useful for synchronous priming
    	RunOnce(ctx context.Context) error
    
    	// Run should be called a go .Run
    	Run(ctx context.Context, workers int)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top