Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,938 for reckon (0.25 sec)

  1. cmd/signature-v4_test.go

    	now := UTCNow()
    	credentialTemplate := "%s/%s/%s/s3/aws4_request"
    
    	region := globalSite.Region()
    	accessKeyID := globalActiveCred.AccessKey
    	testCases := []struct {
    		queryParams map[string]string
    		headers     map[string]string
    		region      string
    		expected    APIErrorCode
    	}{
    		// (0) Should error without a set URL query.
    		{
    			region:   globalMinioDefaultRegion,
    			expected: ErrInvalidQueryParams,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. istioctl/pkg/checkinject/checkinject_test.go

    					Reason:   "Namespace label istio-injection=enabled matches",
    				},
    				{
    					Name:     "istio-sidecar-injector-1-16",
    					Revision: "1-16",
    					Reason:   "No matching namespace labels (istio.io/rev=1-16) or pod labels (istio.io/rev=1-16)",
    				},
    				{
    					Name:     "istio-sidecar-injector-deactivated",
    					Revision: "default",
    					Reason:   "The injection webhook is deactivated, and will never match labels.",
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/runtime/mem.go

    	return sysAllocOS(n)
    }
    
    // sysUnused transitions a memory region from Ready to Prepared. It notifies the
    // operating system that the physical pages backing this memory region are no
    // longer needed and can be reused for other purposes. The contents of a
    // sysUnused memory region are considered forfeit and the region must not be
    // accessed again until sysUsed is called.
    func sysUnused(v unsafe.Pointer, n uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/insert_calibration_statistics_saver.cc

    // Inserts a `CalibrationStatisticsSaverOp` to the end of the region.
    LogicalResult InsertCalibrationStatisticsSaverOp(
        Region& region, MLIRContext& ctx, absl::string_view output_file_path,
        const std::unordered_set<std::string>& aggregator_ops_to_ignore) {
      SmallVector<Value> statistics_outputs;
      SmallVector<StringRef> ids;
      SmallVector<int32_t> calibration_methods;
      FindCustomAggregatorOps(region, aggregator_ops_to_ignore, statistics_outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/DefaultTaskCacheabilityResolverTest.groovy

            )
    
            then:
            reason.category == CachingDisabledReasonCategory.NO_OUTPUTS_DECLARED
            reason.message == "No outputs declared"
        }
    
        def "no cacheIf() means no caching"() {
            when:
            def reason = determineNoCacheReason(
                [],
                [cacheableOutputProperty]
            )
    
            then:
            reason.category == CachingDisabledReasonCategory.NOT_CACHEABLE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 18 08:25:11 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/language/language.go

    // canonical form with a ccTLD. To get that ccTLD canonicalize r first. The
    // region will already be canonicalized it was obtained from a Tag that was
    // obtained using any of the default methods.
    func (r Region) TLD() (Region, error) {
    	tld, err := r.regionID.TLD()
    	return Region{tld}, err
    }
    
    // Canonicalize returns the region or a possible replacement if the region is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.status.yaml.golden

        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
          type: Programmed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 16 17:59:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. src/internal/trace/event/go122/event.go

    	EvGoDestroySyscall    // goroutine ends in syscall (cgo callback) [timestamp]
    	EvGoStop              // goroutine yields its time, but is runnable [timestamp, reason, stack ID]
    	EvGoBlock             // goroutine blocks [timestamp, reason, stack ID]
    	EvGoUnblock           // goroutine is unblocked [timestamp, goroutine ID, goroutine seq, stack ID]
    	EvGoSyscallBegin      // syscall enter [timestamp, P seq, stack ID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/DefaultComponentSelectionReasonTest.groovy

        def "requested only selection reason is expected"() {
            when:
            def reason = ComponentSelectionReasons.requested()
    
            then:
            reason.isExpected()
        }
    
        def "root only selection reason is expected"() {
            when:
            def reason = ComponentSelectionReasons.root()
    
            then:
            reason.isExpected()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/plugin/internal/InvalidPluginIdException.java

    public class InvalidPluginIdException extends GradleException {
    
        private final String reason;
    
        public InvalidPluginIdException(String pluginId, String reason) {
            super(String.format("plugin id '%s' is invalid: %s", pluginId, reason));
            this.reason = reason;
        }
    
        public String getReason() {
            return reason;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1K bytes
    - Viewed (0)
Back to top