Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 130 for CheckM (0.63 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
    
      // Checks opdef stateful attribute and import that as Function Attribute
      if (func_def->signature().is_stateful()) {
        auto stateful_str = mlir::TF::TensorFlowDialect::GetStatefulAttrName();
        attributes.push_back(
            builder_.getNamedAttr(stateful_str, builder_.getUnitAttr()));
      }
    
      // Checks for an associated custom gradient function. Adds it to the attribute
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

         * empty at any point. (The sum ensures accuracy up through at least 1<<31 per-segment
         * modifications before recheck.) Method containsValue() uses similar constructions for
         * stability checks.
         */
        long sum = 0L;
        Segment<K, V>[] segments = this.segments;
        for (Segment<K, V> segment : segments) {
          if (segment.count != 0) {
            return false;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    			}
    			return fmt.Errorf("dynamic relocation to unreachable symbol %s",
    				ctxt.loader.SymName(targ))
    		}
    		tgot := ctxt.loader.SymGot(targ)
    		if tgot == loadpe.RedirectToDynImportGotToken {
    
    			// Consistency check: name should be __imp_X
    			sname := ctxt.loader.SymName(targ)
    			if !strings.HasPrefix(sname, "__imp_") {
    				return fmt.Errorf("internal error in windynrelocsym: redirect GOT token applied to non-import symbol %s", sname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  4. go.sum

    gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
    gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
    gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

    * Fix photon controller plugin to construct with correct PdID ([#37167](https://github.com/kubernetes/kubernetes/pull/37167), [@luomiao](https://github.com/luomiao))
    * Fix the equality checks for numeric values in cluster/gce/util.sh. ([#37638](https://github.com/kubernetes/kubernetes/pull/37638), [@roberthbailey](https://github.com/roberthbailey))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    		return
    	}
    
    	if pre := prefixof(ctxt, &p.From); pre != 0 {
    		ab.Put1(byte(pre))
    	}
    	if pre := prefixof(ctxt, &p.To); pre != 0 {
    		ab.Put1(byte(pre))
    	}
    
    	// Checks to warn about instruction/arguments combinations that
    	// will unconditionally trigger illegal instruction trap (#UD).
    	switch p.As {
    	case AVGATHERDPD,
    		AVGATHERQPD,
    		AVGATHERDPS,
    		AVGATHERQPS,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	CERT_NAME_SEARCH_ALL_NAMES_FLAG    = 0x2
    	CERT_NAME_STR_ENABLE_PUNYCODE_FLAG = 0x00200000
    
    	/* AuthType values for SSLExtraCertChainPolicyPara struct */
    	AUTHTYPE_CLIENT = 1
    	AUTHTYPE_SERVER = 2
    
    	/* Checks values for SSLExtraCertChainPolicyPara struct */
    	SECURITY_FLAG_IGNORE_REVOCATION        = 0x00000080
    	SECURITY_FLAG_IGNORE_UNKNOWN_CA        = 0x00000100
    	SECURITY_FLAG_IGNORE_WRONG_USAGE       = 0x00000200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_control_test.go

    	}
    	if set.Status.ReadyReplicas != 3 {
    		t.Error("Failed to set ReadyReplicas correctly")
    	}
    	if set.Status.UpdatedReplicas != 3 {
    		t.Error("Failed to set UpdatedReplicas correctly")
    	}
    	// Check all pods have correct pod index label.
    	if utilfeature.DefaultFeatureGate.Enabled(features.PodIndexLabel) {
    		selector, err := metav1.LabelSelectorAsSelector(set.Spec.Selector)
    		if err != nil {
    			t.Error(err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  9. src/reflect/value.go

    		n := t.Elem().Len()
    		if n > v.Len() {
    			return false
    		}
    	}
    	return true
    }
    
    // Comparable reports whether the value v is comparable.
    // If the type of v is an interface, this checks the dynamic type.
    // If this reports true then v.Interface() == x will not panic for any x,
    // nor will v.Equal(u) for any Value u.
    func (v Value) Comparable() bool {
    	k := v.Kind()
    	switch k {
    	case Invalid:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    task resolve {
                        dependsOn(resolveGreen, resolveBlue)
                    }
                }
            """
    
            when:
            executer.requireOwnGradleUserHomeDir("Test checks existence of build-cache entries")
            executer.withArguments("--build-cache", "--info", "-Dorg.gradle.internal.transform-caching-disabled=${transformsDisabled}")
            succeeds ":lib:resolve"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
Back to top