Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 710 for cyclic (0.2 sec)

  1. pkg/kubelet/runonce_test.go

    		fakeRuntime,
    		kb.mounter,
    		kb.hostutil,
    		kb.getPodsDir(),
    		kb.recorder,
    		volumetest.NewBlockVolumePathHandler())
    
    	// TODO: Factor out "stats.Provider" from Kubelet so we don't have a cyclic dependency
    	volumeStatsAggPeriod := time.Second * 10
    	kb.resourceAnalyzer = stats.NewResourceAnalyzer(kb, volumeStatsAggPeriod, kb.recorder)
    	nodeRef := &v1.ObjectReference{
    		Kind:      "Node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/hash/crc64/crc64.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package crc64 implements the 64-bit cyclic redundancy check, or CRC-64,
    // checksum. See https://en.wikipedia.org/wiki/Cyclic_redundancy_check for
    // information.
    package crc64
    
    import (
    	"errors"
    	"hash"
    	"internal/byteorder"
    	"sync"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

        }
    
        // In a perfect world, the consumer should depend on the producer.
        // Though we still don't have a good solution for the code linter and formatter use-case.
        // And for that case, there will be a cyclic dependency between the analyze and the format task if we only take output/input locations into account.
        // Therefore, we currently allow these kind of missing dependencies, as long as any order has been specified.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/hash/crc32/crc32.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package crc32 implements the 32-bit cyclic redundancy check, or CRC-32,
    // checksum. See https://en.wikipedia.org/wiki/Cyclic_redundancy_check for
    // information.
    //
    // Polynomials are represented in LSB-first form also known as reversed representation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      func.return
    }
    
    // -----
    
    func.func @cyclic_control_dependency_no_replication() {
      "tf.opA"() {_xla_compile_device_type = "TPU", _replication_info = "replicate"} : () -> ()
      // expected-warning-re@+1 {{Op has cyclic dependency with a compilation cluster{{.*}}}}
      "tf.opB"() : () -> ()
      "tf.opC"() {_xla_compile_device_type = "TPU", _replication_info = "replicate"} : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	keyFunc func(runtime.Object) (string, error)
    
    	// getAttrsFunc is used to get labels and fields of an object.
    	getAttrsFunc func(runtime.Object) (labels.Set, fields.Set, error)
    
    	// cache is used a cyclic buffer - the "current" contents of it are
    	// stored in [start_index%capacity, end_index%capacity) - so the
    	// "current" contents have exactly end_index-start_index items.
    	cache      []*watchCacheEvent
    	startIndex int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/conversion/converter.go

    // 'meta' is given to allow you to pass information to conversion functions,
    // it is not used by Convert() other than storing it in the scope.
    // Not safe for objects with cyclic references!
    func (c *Converter) Convert(src, dest interface{}, meta *Meta) error {
    	pair := typePair{reflect.TypeOf(src), reflect.TypeOf(dest)}
    	scope := &scope{
    		converter: c,
    		meta:      meta,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  8. src/runtime/mklockrank.go

    		os.Exit(2)
    	}
    
    	g, err := dag.Parse(ranks)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	var out []byte
    	if *flagDot {
    		var b bytes.Buffer
    		g.TransitiveReduction()
    		// Add cyclic edges for visualization.
    		for k := range cyclicRanks {
    			g.AddEdge(k, k)
    		}
    		// Reverse the graph. It's much easier to read this as
    		// a "<" partial order than a ">" partial order. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

                return Result.error(Collections.singletonList(new DefaultModelProblem(null, null, null, null, 0, 0, e)));
            } catch (final CycleDetectedException e) {
                String message = "The projects in the reactor contain a cyclic reference: " + e.getMessage();
                ProjectCycleException error = new ProjectCycleException(message, e);
                return Result.error(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/shape_inference.cc

          merge_to_next_iteration[e.dst] = e.src;
        }
      }
    
      // Visits the nodes in topological order (reverse post-order), inferring
      // shapes.
      // TODO(phawkins): handle cyclic graphs.
      std::vector<Node*> order;
      GetReversePostOrder(*graph, &order);
    
      for (Node* n : order) {
        VLOG(4) << "Propagating shape for node " << n->name()
                << ", type: " << n->type_string();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top