Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 185 for getExt (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/api/DefaultTask.java

        // NOTE: These methods are duplicated here because Eclipse treats methods implemented in the deprecated
        // AbstractTask as also deprecated in DefaultTask.
    
        @Override
        public AntBuilder getAnt() {
            return super.getAnt();
        }
    
        @Override
        public Project getProject() {
            return super.getProject();
        }
    
        @Override
        public String getName() {
            return super.getName();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

        ReferenceEntry<K, V> removeEntryFromChain(
            ReferenceEntry<K, V> first, ReferenceEntry<K, V> entry) {
          int newCount = count;
          ReferenceEntry<K, V> newFirst = entry.getNext();
          for (ReferenceEntry<K, V> e = first; e != entry; e = e.getNext()) {
            ReferenceEntry<K, V> next = copyEntry(e, newFirst);
            if (next != null) {
              newFirst = next;
            } else {
              removeCollectedEntry(e);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. samples/bookinfo/src/reviews/reviews-application/src/main/java/application/rest/LibertyRestEndpoint.java

                JsonObject ratings = ratingsResponse.getJsonObject("ratings");
                if (ratings.containsKey("Reviewer1")){
              	  starsReviewer1 = ratings.getInt("Reviewer1");
                }
                if (ratings.containsKey("Reviewer2")){
                  starsReviewer2 = ratings.getInt("Reviewer2");
                }
              }
            }
          }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 22:25:32 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

        ReferenceEntry<K, V> removeEntryFromChain(
            ReferenceEntry<K, V> first, ReferenceEntry<K, V> entry) {
          int newCount = count;
          ReferenceEntry<K, V> newFirst = entry.getNext();
          for (ReferenceEntry<K, V> e = first; e != entry; e = e.getNext()) {
            ReferenceEntry<K, V> next = copyEntry(e, newFirst);
            if (next != null) {
              newFirst = next;
            } else {
              removeCollectedEntry(e);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerDefaultConfigurationTest.groovy

    import org.slf4j.Logger
    import spock.lang.Specification
    
    class OutputEventListenerBackedLoggerDefaultConfigurationTest extends Specification {
    
        @Rule RedirectStdOutAndErr outputs = new RedirectStdOutAndErr()
    
        String getOut() {
            outputs.stdOut
        }
    
        String getErr() {
            outputs.stdErr
        }
    
        def context
    
        Logger logger() {
            if (context == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. tools/packaging/postinst.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    ################################################################################
    set -e
    
    umask 022
    
    if ! getent passwd istio-proxy >/dev/null; then
        if command -v useradd >/dev/null; then
            groupadd --system istio-proxy
            useradd --system --gid istio-proxy --home-dir /var/lib/istio istio-proxy
        else
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 10 18:31:12 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. cni/pkg/cmd/root.go

    		PluginLogLevel:        istiolog.LevelToString(istiolog.FindScope(constants.CNIPluginLogScope).GetOutputLevel()),
    		KubeconfigFilename:    viper.GetString(constants.KubeconfigFilename),
    		KubeconfigMode:        viper.GetInt(constants.KubeconfigMode),
    		KubeCAFile:            viper.GetString(constants.KubeCAFile),
    		SkipTLSVerify:         viper.GetBool(constants.SkipTLSVerify),
    		K8sServiceProtocol:    os.Getenv("KUBERNETES_SERVICE_PROTOCOL"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

          padding_nums.push_back(padding_elem.getInt());
        }
      } else if (conv_padding.strref() == "VALID") {
        padding_nums.resize(padding_nums_size, 0);
      } else {
        padding_nums.resize(padding_nums_size);
        for (int i = 0; i < dnums.input_spatial_dimensions_size(); ++i) {
          const int64_t stride =
              mlir::cast<IntegerAttr>(op.getWindowStridesAttr()[i]).getInt();
          const int64_t lhs_size_dilated =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. internal/ringbuffer/ring_buffer.go

    	r.mu.Lock()
    	defer r.mu.Unlock()
    	getDst := func(n int) []byte {
    		if cap(dst) < n {
    			return make([]byte, n)
    		}
    		return dst[:n]
    	}
    
    	if r.w == r.r {
    		if r.isFull {
    			buf := getDst(r.size)
    			copy(buf, r.buf[r.r:])
    			copy(buf[r.size-r.r:], r.buf[:r.w])
    			return buf
    		}
    		return nil
    	}
    
    	if r.w > r.r {
    		buf := getDst(r.w - r.r)
    		copy(buf, r.buf[r.r:r.w])
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. tests/fuzz/pilot_security_fuzzer.go

    	}
    	_ = matcher.HostMatcher(k, v)
    	return 1
    }
    
    func FuzzMetadataListMatcher(data []byte) int {
    	f := fuzz.NewConsumer(data)
    	filter, err := f.GetString()
    	if err != nil {
    		return 0
    	}
    	number, err := f.GetInt()
    	if err != nil {
    		return 0
    	}
    	maxKeys := number % 100
    	keys := make([]string, 0, maxKeys)
    	for i := 0; i < maxKeys; i++ {
    		key, err := f.GetString()
    		if err != nil {
    			return 0
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top