Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,938 for reckon (0.27 sec)

  1. src/cmd/vendor/golang.org/x/text/language/coverage.go

    // consecutive range, it simply returns a slice of numbers in increasing order.
    // The "undefined" region is not returned.
    func (s allSubtags) Regions() []Region {
    	reg := make([]Region, language.NumRegions)
    	for i := range reg {
    		reg[i] = Region{language.Region(i + 1)}
    	}
    	return reg
    }
    
    // Scripts returns the list of supported scripts. As all scripts are in a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

             * Lock file is {@link java.io.RandomAccessFile} that has two regions:
             * - lock state region, locked for the duration of the operation
             * - lock info region, locked just to write the lock info or read info from it
             * <br><br>
             *
             * Algorithm:<br>
             * 1. We first try to acquire a lock on the state region with retries, see {@link #lockStateRegion(LockMode)}.<br>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionReasonSerializerTest.groovy

        void check(ComponentSelectionDescriptor... reasons) {
            def reason = ComponentSelectionReasons.of(reasons)
            def result = serialize(reason, serializer)
            assert result == reason
        }
    
        private static ComponentSelectionReason withReason(String reason) {
            ComponentSelectionReasons.of(ComponentSelectionReasons.SELECTED_BY_RULE.withDescription(Describables.of(reason)))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/expiry/DaemonExpirationResult.java

        private final String reason;
    
        public DaemonExpirationResult(DaemonExpirationStatus status, @Nullable String reason) {
            this.status = status;
            this.reason = reason;
        }
    
        public DaemonExpirationStatus getStatus() {
            return status;
        }
    
        public String getReason() {
            return reason;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/convert_tf_control_flow_to_scf.cc

        // Creates the `then` or `else` region of the `scf.if` op. Note that
        // `tf_then_or_else_region` is the `then` or `else` region of the
        // `tf.IfRegion` op and `scf_then_or_else_region` is the `then` or `else`
        // region of the new `scf.if` op. Further, `tf_if_region_return_type` is the
        // list of return types of the `tf.IfRegion` op.
        auto createScfThenOrElse = [](Region& tf_then_or_else_region,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/endpoint_builder_test.go

    					},
    				},
    				Locality: &core.Locality{
    					Region: "myregion",
    				},
    			},
    			expected: labels.Instance{
    				"k1":                       "v1",
    				NodeRegionLabelGA:          "myregion",
    				label.TopologyNetwork.Name: "mynetwork",
    			},
    		},
    		{
    			name: "region and zone",
    			ctl:  testController{},
    			proxy: &model.Proxy{
    				Labels: labels.Instance{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. gradle/verification-metadata.xml

                <sha256 value="46a9b4a311820b2c1841110affa286d65665ac9f8970fd9e9eb903c3d7aa436e" origin="Verified" reason="Artifact is not signed"/>
             </artifact>
             <artifact name="android-studio-2023.3.1.18.mac.zip">
                <sha256 value="b0b5a2cec33e331c30727a06356c2724e7d9a8f5e78dc76cdb62eb6f2442c569" origin="Verified" reason="Artifact is not signed"/>
             </artifact>
             <artifact name="android-studio-2023.3.1.18.mac_arm.zip">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  8. internal/config/lambda/event/arn.go

    	"strings"
    )
    
    // ARN - SQS resource name representation.
    type ARN struct {
    	TargetID
    	region string
    }
    
    // String - returns string representation.
    func (arn ARN) String() string {
    	if arn.TargetID.ID == "" && arn.TargetID.Name == "" && arn.region == "" {
    		return ""
    	}
    
    	return "arn:minio:s3-object-lambda:" + arn.region + ":" + arn.TargetID.String()
    }
    
    // ParseARN - parses string to ARN.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 07 16:12:41 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/HasFailures.java

        class FailureInfo {
            @Nullable
            final CallInterceptionRequest request;
            final String reason;
    
            public FailureInfo(@Nullable CallInterceptionRequest request, String reason) {
                this.request = request;
                this.reason = reason;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/apiapproval/apiapproval_controller.go

    			Status:  apiextensionsv1.ConditionFalse,
    			Reason:  "MissingAnnotation",
    			Message: reason,
    		}
    	case apihelpers.APIApproved:
    		return &apiextensionsv1.CustomResourceDefinitionCondition{
    			Type:    apiextensionsv1.KubernetesAPIApprovalPolicyConformant,
    			Status:  apiextensionsv1.ConditionTrue,
    			Reason:  "ApprovedAnnotation",
    			Message: reason,
    		}
    	case apihelpers.APIApprovalBypassed:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top