Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,938 for reckon (0.36 sec)

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

    }
    
    // IsGroup returns whether this region defines a collection of regions. This
    // includes non-standard definitions from CLDR.
    func (r Region) IsGroup() bool {
    	if r == 0 {
    		return false
    	}
    	return int(regionInclusion[r]) < len(regionContainment)
    }
    
    // Contains returns whether Region c is contained by Region r. It returns true
    // if c == r.
    func (r Region) Contains(c Region) bool {
    	if r == c {
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. pkg/registry/authorization/subjectaccessreview/rest_test.go

    )
    
    type fakeAuthorizer struct {
    	attrs authorizer.Attributes
    
    	decision authorizer.Decision
    	reason   string
    	err      error
    }
    
    func (f *fakeAuthorizer) Authorize(ctx context.Context, attrs authorizer.Attributes) (authorizer.Decision, string, error) {
    	f.attrs = attrs
    	return f.decision, f.reason, f.err
    }
    
    func TestCreate(t *testing.T) {
    	testcases := map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/grpc.status.yaml.golden

          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
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

      ModuleOp module = region.getParentOfType<ModuleOp>();
      OpBuilder builder(module.getContext());
      auto loc = region.getParentOp()->getLoc();
      Block& entry = region.front();
      int num_region_arguments = entry.getNumArguments();
      Operation* terminator = entry.getTerminator();
    
      // Build the function type. Region arguments and extern values together
      // become the function arguments, with region arguments going first.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/python/mlir_wrapper/basic_classes.cc

          });
    
      py::class_<mlir::Region>(m, "Region")
          .def("back", &mlir::Region::back, py::return_value_policy::reference)
          .def("front", &mlir::Region::front, py::return_value_policy::reference)
          .def("add_block", [](mlir::Region& r) { r.push_back(new mlir::Block); })
          .def("push_back", &mlir::Region::push_back)
          .def("size", [](mlir::Region& r) { return r.getBlocks().size(); })
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 22 04:26:07 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/toolchain/ToolChainAvailability.java

            reason.explain(visitor);
        }
    
        public ToolChainAvailability unavailable(String unavailableMessage) {
            if (reason == null) {
                reason = new FixedMessageToolSearchResult(unavailableMessage);
            }
            return this;
        }
    
        public ToolChainAvailability unsupported(String unsupportedMessage) {
            if (reason == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. cluster/gce/list-resources.sh

    gcloud-list compute firewall-rules "name ~ 'default.*|k8s-fw.*|${INSTANCE_PREFIX}.*'"
    GREP_REGEX=""
    gcloud-list compute forwarding-rules ${REGION:+"region=(${REGION})"}
    gcloud-list compute target-pools ${REGION:+"region=(${REGION})"}
    
    gcloud-list logging sinks
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 15:44:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/RejectedByRuleVersion.java

        private final String reason;
    
        public RejectedByRuleVersion(ModuleComponentIdentifier id, String reason) {
            super(id);
            this.reason = reason;
        }
    
        public String getReason() {
            return reason;
        }
    
        @Override
        public int hashCode() {
            return Objects.hashCode(getId(), reason);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/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: Wed Sep 27 13:19:04 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/util/label/label.go

    	LabelTopologyRegion  = "topology.kubernetes.io/region"
    )
    
    // AugmentLabels adds additional labels to the those provided.
    func AugmentLabels(in labels.Instance, clusterID cluster.ID, locality, k8sNode string, networkID network.ID) labels.Instance {
    	// Copy the original labels to a new map.
    	out := make(labels.Instance, len(in)+6)
    	for k, v := range in {
    		out[k] = v
    	}
    
    	region, zone, subzone := SplitLocalityLabel(locality)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 03:56:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top