Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 156 for pcount (0.8 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    	// predecessors have been visited.
    	po := state.f.Postorder()
    	converged := false
    
    	// The iteration rule is that by default, run until converged, but
    	// if a particular iteration count is specified, run that many
    	// iterations, no more, no less.  A count is specified as the
    	// thousands digit of the location lists debug flag,
    	// e.g. -d=locationlists=4000
    	keepGoing := func(k int) bool {
    		if state.convergeCount == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. pkg/config/security/security.go

    	attrDestName         = "destination.name"       // short service name, e.g. "productpage".
    	attrDestNamespace    = "destination.namespace"  // e.g. "default".
    	attrDestUser         = "destination.user"       // service account, e.g. "bookinfo-productpage".
    	attrConnSNI          = "connection.sni"         // server name indication, e.g. "www.example.com".
    	attrExperimental     = "experimental.envoy.filters."
    )
    
    var (
    	MatchOneTemplate = "{*}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                .sortedBy { it.simpleName }
                .first()
        }
    
        private fun PsiElement.firstLineOfPsi(): String {
            val text = text
            val lines = text.lines()
            return if (lines.count() <= 1) text
            else lines.first() + " ..."
        }
    
        public companion object {
            private val ignoredPropertyNames = setOf(
                "psi",
                "token",
                "builder",
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. src/os/exec.go

    	//
    	// In modePID, this consists only of the processStatus fields, which
    	// indicate if the process is done/released.
    	//
    	// In modeHandle, the lower bits also contain a reference count for the
    	// handle field.
    	//
    	// The Process itself initially holds 1 persistent reference. Any
    	// operation that uses the handle with a system call temporarily holds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //	-cover
    //		enable code coverage instrumentation.
    //	-covermode set,count,atomic
    //		set the mode for coverage analysis.
    //		The default is "set" unless -race is enabled,
    //		in which case it is "atomic".
    //		The values:
    //		set: bool: does this statement run?
    //		count: int: how many times does this statement run?
    //		atomic: int: count, but correct in multithreaded tests;
    //			significantly more expensive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		}
    	}
    
    	resourceACountGot, err := store.Count(resourceA)
    	if err != nil {
    		t.Fatalf("store.Count failed: %v", err)
    	}
    
    	// count for resourceA should not include the objects for resourceB
    	// even though resourceA is a prefix of resourceB.
    	if int64(resourceACountExpected) != resourceACountGot {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  7. cmd/object-multipart-handlers.go

    			if kmsCtx, ok := mi.UserDefined[crypto.MetaContext]; ok {
    				w.Header().Set(xhttp.AmzServerSideEncryptionKmsContext, kmsCtx)
    			}
    			if len(etag) >= 32 && strings.Count(etag, "-") != 1 {
    				etag = etag[len(etag)-32:]
    			}
    		case crypto.S3:
    			w.Header().Set(xhttp.AmzServerSideEncryption, xhttp.AmzEncryptionAES)
    			etag, _ = DecryptETag(objectEncryptionKey, ObjectInfo{ETag: etag})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

      # http://issue.k8s.io/3168
      KUBE_PROXY_TOKEN=$(dd if=/dev/urandom bs=128 count=1 2>/dev/null | base64 | tr -d "=+/" | dd bs=32 count=1 2>/dev/null)
      if [[ "${ENABLE_NODE_PROBLEM_DETECTOR:-}" == "standalone" ]]; then
        NODE_PROBLEM_DETECTOR_TOKEN=$(dd if=/dev/urandom bs=128 count=1 2>/dev/null | base64 | tr -d "=+/" | dd bs=32 count=1 2>/dev/null)
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/stream_executor/stream_executor.cc

      // Create Device
      platform_fns_.create_device(&platform_, &device_params, c_status.get());
      TF_RETURN_IF_ERROR(StatusFromTF_Status(c_status.get()));
      TF_RETURN_IF_ERROR(ValidateSPDevice(device));
    
      // Get Device Count
      int visible_device_count = 0;
      platform_fns_.get_device_count(&platform_, &visible_device_count,
                                     c_status.get());
      TF_RETURN_IF_ERROR(StatusFromTF_Status(c_status.get()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. cmd/erasure-object.go

    		tags["parity"] = m.Erasure.ParityBlocks
    	} else {
    		tags["invalid-meta"] = true
    		tags["data"] = er.setDriveCount - er.defaultParityCount
    		tags["parity"] = er.defaultParityCount
    	}
    
    	// count the number of offline disks
    	offline := 0
    	for i := 0; i < len(errs); i++ {
    		var found bool
    		switch {
    		case errors.Is(errs[i], errDiskNotFound):
    			found = true
    		default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top