Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for uintValue (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
Back to top