Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 351 for calculations (0.15 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    	fsu.AddUint8(0)                                     // augmentation ""
    	dwarf.Uleb128put(d, fsd, 1)                         // code_alignment_factor
    	dwarf.Sleb128put(d, fsd, dataAlignmentFactor)       // all CFI offset calculations include multiplication with this factor
    	dwarf.Uleb128put(d, fsd, int64(thearch.Dwarfreglr)) // return_address_register
    
    	fsu.AddUint8(dwarf.DW_CFA_def_cfa)                  // Set the current frame address..
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390X.rules

    	(MOVHstoreconst [sc.addOffset32(off)] {s} ptr mem)
    (MOVBstoreconst [sc] {s} (ADDconst [off] ptr) mem) && is20Bit(sc.Off64()+int64(off)) =>
    	(MOVBstoreconst [sc.addOffset32(off)] {s} ptr mem)
    
    // Merge address calculations into loads and stores.
    // Offsets from SB must not be merged into unaligned memory accesses because
    // loads/stores using PC-relative addressing directly must be aligned to the
    // size of the target.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                    inFiles.from {
                        println("calculating value")
                        return 'in.txt'
                    }
                }
    """
            file("in.txt").text = "in"
    
            when:
            run("merge")
    
            then:
            output.count("calculating value") == 2 // once for task dependency calculation, once for task execution
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

                try {
                    if (done) {
                        // Already calculated
                        return;
                    }
                    done = true;
    
                    // Attach result and discard calculation state
                    owner.result = Try.ofFailable(() -> {
                        NodeExecutionContext effectiveContext = context;
                        if (effectiveContext == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/quota/v1/resources.go

    	}
    	return result
    }
    
    // CalculateUsage calculates and returns the requested ResourceList usage.
    // If an error is returned, usage only contains the resources which encountered no calculation errors.
    func CalculateUsage(namespaceName string, scopes []corev1.ResourceQuotaScope, hardLimits corev1.ResourceList, registry Registry, scopeSelector *corev1.ScopeSelector) (corev1.ResourceList, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 06 23:11:22 UTC 2021
    - 8.7K bytes
    - Viewed (0)
  6. cmd/signature-v4-utils.go

    		case "content-length":
    			// Signature-V4 spec excludes Content-Length from signed headers list for signature calculation.
    			// But some clients deviate from this rule. Hence we consider Content-Length for signature
    			// calculation to be compatible with such clients.
    			extractedSignedHeaders.Set(header, strconv.FormatInt(r.ContentLength, 10))
    		default:
    			return nil, ErrUnsignedHeaders
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (1)
  7. android/guava/src/com/google/common/math/Quantiles.java

          this.scale = scale;
          this.index = index;
        }
    
        /**
         * Computes the quantile value of the given dataset.
         *
         * @param dataset the dataset to do the calculation on, which must be non-empty, which will be
         *     cast to doubles (with any associated lost of precision), and which will not be mutated by
         *     this call (it is copied instead)
         * @return the quantile value
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.23.md

    - Fix a regression where the Kubelet failed to exclude already completed pods from calculations about how many resources it was currently using when deciding whether to allow more pods. ([#104577](https://github.com/kubernetes/kubernetes/pull/104577), [@smarterclayton](https://github.com/smarterclayton))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	MinDomains *int32
    	// NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector
    	// when calculating pod topology spread skew. Options are:
    	// - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations.
    	// - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.
    	//
    	// If this value is nil, the behavior is equivalent to the Honor policy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/math/Quantiles.java

          this.scale = scale;
          this.index = index;
        }
    
        /**
         * Computes the quantile value of the given dataset.
         *
         * @param dataset the dataset to do the calculation on, which must be non-empty, which will be
         *     cast to doubles (with any associated lost of precision), and which will not be mutated by
         *     this call (it is copied instead)
         * @return the quantile value
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
Back to top