Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 80 for getCond (0.18 sec)

  1. android/guava/src/com/google/common/primitives/UnsignedBytes.java

             */
            for (i = 0; i < strideLimit; i += stride) {
              long lw = theUnsafe.getLong(left, BYTE_ARRAY_BASE_OFFSET + (long) i);
              long rw = theUnsafe.getLong(right, BYTE_ARRAY_BASE_OFFSET + (long) i);
              if (lw != rw) {
                if (BIG_ENDIAN) {
                  return UnsignedLongs.compare(lw, rw);
                }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util.go

    func LbPriority(proxyLocality, endpointsLocality *core.Locality) int {
    	if proxyLocality.GetRegion() == endpointsLocality.GetRegion() {
    		if proxyLocality.GetZone() == endpointsLocality.GetZone() {
    			if proxyLocality.GetSubZone() == endpointsLocality.GetSubZone() {
    				return 0
    			}
    			return 1
    		}
    		return 2
    	}
    	return 3
    }
    
    // return a shallow copy ClusterLoadAssignment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/LoggingDeprecatedFeatureHandler.java

                @Override
                public void execute(InternalProblemSpec builder) {
                    InternalProblemSpec problemSpec = builder
                        // usage.getKind() could be be part of the problem ID, however it provides hints on the problem provenance which should be modeled differently, maybe as location data.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/DefaultTypeMetadataStore.java

        }
    
        private static String calculateDisplayName(Collection<? extends PropertyAnnotationHandler> annotationHandlers) {
            return annotationHandlers.stream()
                .map(PropertyAnnotationHandler::getKind)
                .anyMatch(Predicate.isEqual(PropertyAnnotationHandler.Kind.OUTPUT))
                ? "an input or output annotation"
                : "an input annotation";
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    		m := rules.Matcher{Rule: r, Attr: attr}
    		if m.Matches() {
    			invocation = &WebhookInvocation{
    				Webhook:     h,
    				Resource:    attr.GetResource(),
    				Subresource: attr.GetSubresource(),
    				Kind:        attr.GetKind(),
    			}
    			break
    		}
    	}
    	if invocation == nil && h.GetMatchPolicy() != nil && *h.GetMatchPolicy() == v1.Equivalent {
    		attrWithOverride := &attrWithResourceOverride{Attributes: attr}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            'Integer.getInteger("${ci.toUpperCase()}1")'                           | "null"     | "123"     | "123"
            'Long.getLong("${ci.toUpperCase()}1")'                                 | "null"     | "123"     | "123"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/13652")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  7. pkg/kube/controllers/common.go

    	gv, err := schema.ParseGroupVersion(u.GetAPIVersion())
    	if err != nil {
    		return res, err
    	}
    
    	gk := config.GroupVersionKind{
    		Group:   gv.Group,
    		Version: gv.Version,
    		Kind:    u.GetKind(),
    	}
    	found, ok := gvk.ToGVR(gk)
    	if !ok {
    		return res, fmt.Errorf("unknown gvk: %v", gk)
    	}
    	return found, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                public abstract class MyTransformAction implements TransformAction {
                    // Should be ignored because it's not a getter
                    public void getVoid() {
                    }
    
                    // Should be ignored because it's not a getter
                    public int getWithParameter(int count) {
                        return count;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

                            NestedExceptionPlaceholder placeholder = (NestedExceptionPlaceholder) obj;
                            int index = placeholder.getIndex();
                            switch (placeholder.getKind()) {
                                case cause:
                                    return causes.get(index);
                                case suppressed:
                                    return suppressed.get(index);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    	}
    	return
    }
    
    // getConn dials and creates a new persistConn to the target as
    // specified in the connectMethod. This includes doing a proxy CONNECT
    // and/or setting up TLS.  If this doesn't return an error, the persistConn
    // is ready to write requests to.
    func (t *Transport) getConn(treq *transportRequest, cm connectMethod) (_ *persistConn, err error) {
    	req := treq.Request
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top