Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 326 for CheckM (0.11 sec)

  1. src/go/types/api_test.go

    	}
    
    	var conf Config
    	fset := token.NewFileSet()
    	pkg := NewPackage("p", "p")
    	var info Info
    	check := NewChecker(&conf, fset, pkg, &info)
    
    	for _, src := range sources {
    		if err := check.Files([]*ast.File{mustParse(fset, src)}); err != nil {
    			t.Error(err)
    		}
    	}
    
    	// check InitOrder is [x y]
    	var vars []string
    	for _, init := range info.InitOrder {
    		for _, v := range init.Lhs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users.go

    	var updatedAt time.Time
    	if updReq.IsRemove {
    		updatedAt, err = globalIAMSys.RemoveUsersFromGroup(ctx, updReq.Group, updReq.Members)
    	} else {
    		// Check if group already exists
    		if _, gerr := globalIAMSys.GetGroupDescription(updReq.Group); gerr != nil {
    			// If group does not exist, then check if the group has beginning and end space characters
    			// we will reject such group names.
    			if errors.Is(gerr, errNoSuchGroup) && hasSpaceBE(updReq.Group) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    
    // Checks if the param passed is a F32 ElementsAttr.
    def F32ElementsAttr : ElementsAttrBase<
      CPred<"$_self.isa<ElementsAttr>() && $_self.cast<ElementsAttr>().getShapedType().getElementType().isF32()">,
            "32 bit float constant tensor">;
    
    // Checks if the param passed is a float ElementsAttr.
    def FloatElementsAttr : ElementsAttrBase<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. cmd/bucket-handlers.go

    	postPolicyBucketTagging = "tagging"
    )
    
    // Check if there are buckets on server without corresponding entry in etcd backend and
    // make entries. Here is the general flow
    // - Range over all the available buckets
    // - Check if a bucket has an entry in etcd backend
    // -- If no, make an entry
    // -- If yes, check if the entry matches local IP check if we
    //
    //	need to update the entry then proceed to update
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  5. src/math/big/int_test.go

    		testGcd(t, d, x, nil, a, b)
    		testGcd(t, d, nil, y, a, b)
    		testGcd(t, d, x, y, a, b)
    	}
    
    	if err := quick.Check(checkGcd, nil); err != nil {
    		t.Error(err)
    	}
    
    	if err := quick.Check(checkLehmerGcd, nil); err != nil {
    		t.Error(err)
    	}
    
    	if err := quick.Check(checkLehmerExtGcd, nil); err != nil {
    		t.Error(err)
    	}
    }
    
    type intShiftTest struct {
    	in    string
    	shift uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  6. hack/local-up-cluster.sh

      #     ${KUBECTL} --namespace=kube-system delete rc kube-dns-v10
      # fi
    
      # Check if the API server is still running
      [[ -n "${APISERVER_PID-}" ]] && kube::util::read-array APISERVER_PIDS < <(pgrep -P "${APISERVER_PID}" ; ps -o pid= -p "${APISERVER_PID}")
      [[ -n "${APISERVER_PIDS-}" ]] && sudo kill "${APISERVER_PIDS[@]}" 2>/dev/null
    
      # Check if the controller-manager is still running
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    // caller should either call spanOfHeap or check the span bounds
    // explicitly.
    //
    // Must be nosplit because it has callers that are nosplit.
    //
    //go:nosplit
    func spanOf(p uintptr) *mspan {
    	// This function looks big, but we use a lot of constant
    	// folding around arenaL1Bits to get it under the inlining
    	// budget. Also, many of the checks here are safety checks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

      }
    
      private fun verifyClientState() {
        check(null !in (interceptors as List<Interceptor?>)) {
          "Null interceptor: $interceptors"
        }
        check(null !in (networkInterceptors as List<Interceptor?>)) {
          "Null network interceptor: $networkInterceptors"
        }
    
        if (connectionSpecs.none { it.isTls }) {
          check(sslSocketFactoryOrNull == null)
          check(certificateChainCleaner == null)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: during kubelet health checks, respect the healthz address:port configured in the KubeletConfiguration instead of hardcoding localhost:10248. ([#125265](https://github.com/kubernetes/kubernetes/pull/125265), [@neolit123](https://github.com/neolit123)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    				return "", errPkgIsGorootSrc
    			}
    			return MainModules.PathPrefix(mod), nil
    		}
    	}
    
    	// Note: The checks for @ here are just to avoid misinterpreting
    	// the module cache directories (formerly GOPATH/src/mod/foo@v1.5.2/bar).
    	// It's not strictly necessary but helpful to keep the checks.
    	var pkgNotFoundErr error
    	pkgNotFoundLongestPrefix := ""
    	for _, mainModule := range MainModules.Versions() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top