Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for uintValue (0.38 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            is IntValue -> KaConstantValue.KaIntConstantValue(value, sourcePsi = null)
            is LongValue -> KaConstantValue.KaLongConstantValue(value, sourcePsi = null)
            is ShortValue -> KaConstantValue.KaShortConstantValue(value, sourcePsi = null)
            is UByteValue -> KaConstantValue.KaUnsignedByteConstantValue(value.toUByte(), sourcePsi = null)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/testng/TestNGOptionsTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

          at.set(x);
          assertEquals(Double.toString(x), at.toString());
        }
      }
    
      /** intValue returns current value. */
      public void testIntValue() {
        AtomicDouble at = new AtomicDouble();
        assertEquals(0, at.intValue());
        for (double x : VALUES) {
          at.set(x);
          assertEquals((int) x, at.intValue());
        }
      }
    
      /** longValue returns current value. */
      public void testLongValue() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

            verifyRoundtripOf({ MultiWriteObjectBean() }) { bean ->
                assertThat(
                    bean.stringValue,
                    equalTo("42")
                )
                assertThat(
                    bean.intValue,
                    equalTo(42)
                )
                assertThat(
                    bean.writeOrder,
                    equalTo(listOf("superclass", "subclass"))
                )
                assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/options.go

    	}
    	ciphersIntSlice := make([]uint16, 0)
    	possibleCiphers := allCiphers()
    	for _, cipher := range cipherNames {
    		intValue, ok := possibleCiphers[cipher]
    		if !ok {
    			return nil, fmt.Errorf("cipher suite %s not supported or doesn't exist", cipher)
    		}
    		ciphersIntSlice = append(ciphersIntSlice, intValue)
    	}
    	return ciphersIntSlice, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. pkg/kubelet/util/manager/cache_based_manager.go

    		if err != nil {
    			return time.Duration(0), false
    		}
    		if node != nil && node.Annotations != nil {
    			if value, ok := node.Annotations[v1.ObjectTTLAnnotationKey]; ok {
    				if intValue, err := strconv.Atoi(value); err == nil {
    					return time.Duration(intValue) * time.Second, true
    				}
    			}
    		}
    		return time.Duration(0), false
    	}
    }
    
    func (s *objectStore) isObjectFresh(data *objectData) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/gateway/gateway.go

    							// the actual port associated with the service is the `TargetPort` that reaches the sidecar *workload instances*.
    							if tp := port.TargetPort.IntValue(); tp != 0 {
    								servicePorts[uint32(tp)] = true
    								if _, ok := portMapping[uint32(port.Port)]; !ok {
    									portMapping[uint32(port.Port)] = uint32(tp)
    								}
    							} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

        public void oneNullableArgThrows(@Nullable String s) {
          doThrow(s);
        }
    
        public void twoArg(String s, Integer i) {
          checkNotNull(s);
          i.intValue();
        }
    
        public void twoMixedArgs(String s, @Nullable Integer i) {
          checkNotNull(s);
        }
    
        public void twoMixedArgs(@Nullable Integer i, String s) {
          checkNotNull(s);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

              if (total >= Integer.MAX_VALUE) {
                break;
              }
            }
            result = size = Ints.saturatedCast(total);
          }
          return result.intValue();
        }
    
        @Override
        public UnmodifiableIterator<C> iterator() {
          return new AbstractIterator<C>() {
            final Iterator<Range<C>> rangeItr = ranges.iterator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	floatValue           func(*state, *types.Type, float64) *ssa.Value
    	intValue             func(*state, *types.Type, int64) *ssa.Value
    	cutoff               uint64
    }
    
    var f32_u64 = f2uCvtTab{
    	ltf:        ssa.OpLess32F,
    	cvt2U:      ssa.OpCvt32Fto64,
    	subf:       ssa.OpSub32F,
    	or:         ssa.OpOr64,
    	floatValue: (*state).constFloat32,
    	intValue:   (*state).constInt64,
    	cutoff:     1 << 63,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top