Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,751 for covered (0.12 sec)

  1. src/cmd/go/internal/work/gc.go

    		defaultGcFlags = append(defaultGcFlags, "-goversion", ToolchainVersion)
    	}
    	if p.Internal.Cover.Cfg != "" {
    		defaultGcFlags = append(defaultGcFlags, "-coveragecfg="+p.Internal.Cover.Cfg)
    	}
    	if pgoProfile != "" {
    		defaultGcFlags = append(defaultGcFlags, "-pgoprofile="+pgoProfile)
    	}
    	if symabis != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. pkg/controller/tainteviction/taint_eviction_test.go

    		}
    	}
    }
    
    // TestEventualConsistency verifies if getPodsAssignedToNode returns incomplete data
    // (e.g. due to watch latency), it will reconcile the remaining pods eventually.
    // This scenario is partially covered by TestUpdatePods, but given this is an important
    // property of TaintManager, it's better to have explicit test for this.
    func TestEventualConsistency(t *testing.T) {
    	testCases := []struct {
    		description  string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/controller/repairip.go

    //    Service_B [ClusterIP_A]  <------> 								only one service can verify the relation
    // The IPAddress reconcile loop checks there are no orphan IPAddresses, the rest of the
    // cases are covered by the Services loop
    // 1.                          <------>  IPAddress_Z [Ref:Service_C]   !ok, orphan IPAddress
    
    type RepairIPAddress struct {
    	client   kubernetes.Interface
    	interval time.Duration
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. src/internal/trace/gc.go

    	for i := range bandU {
    		// To compute the worst-case MU, we assume the minimum
    		// for any bands that are only partially overlapped by
    		// some window and the mean for any bands that are
    		// completely covered by all windows.
    		var util totalUtil
    
    		// Find the lowest and second lowest of the partial
    		// bands.
    		l := c.bands[i].minUtil
    		r1 := c.bands[i+minBands-1].minUtil
    		r2 := c.bands[i+maxBands-1].minUtil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

            UpdateSideEffectsByResourceId(unknown_effect,
                                          side_effects_by_resource_id);
          }
        }
      };
      // Add value-based side effects for resource values which are not covered by
      // any side effect so far, for example, resource values being passed to
      // `tf.While` or `tf.If` ops which are not part of the op definition but
      // appear in a variadic input list.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. docs/en/docs/alternatives.md

    There have been many tools created before that have helped inspire its creation.
    
    I have been avoiding the creation of a new framework for several years. First I tried to solve all the features covered by **FastAPI** using many different frameworks, plug-ins, and tools.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/module/module.go

    // does not match the path major version pathMajor.
    func CheckPathMajor(v, pathMajor string) error {
    	// TODO(jayconrod): return errors or panic for invalid inputs. This function
    	// (and others) was covered by integration tests for cmd/go, and surrounding
    	// code protected against invalid inputs like non-canonical versions.
    	if strings.HasPrefix(pathMajor, ".v") && strings.HasSuffix(pathMajor, "-unstable") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/import.go

    // if it were in the module with module path mpath and root mdir.
    // If path is syntactically not within mpath,
    // or if mdir is a local file tree (isLocal == true) and the directory
    // that would hold path is in a sub-module (covered by a go.mod below mdir),
    // dirInModule returns "", false, nil.
    //
    // Otherwise, dirInModule returns the name of the directory where
    // Go source files would be expected, along with a boolean indicating
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    [[sec:build_cache_implement]]
    == Implement your own Build Cache
    
    Using a different build cache backend to store build outputs (which is not covered by the built-in support for connecting to an HTTP backend) requires implementing
    your own logic for connecting to your custom build cache backend.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/CompactHashMap.java

       * </ul>
       */
      @CheckForNull private transient Object table;
    
      /**
       * Contains the logical entries, in the range of [0, size()). The high bits of each int are the
       * part of the smeared hash of the key not covered by the hashtable mask, whereas the low bits are
       * the "next" pointer (pointing to the next entry in the bucket chain), which will always be less
       * than or equal to the hashtable mask.
       *
       * <pre>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
Back to top