Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for recurse (0.2 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

            }
          } finally {
            unlock();
            postWriteCleanup();
          }
    
          if (createNewEntry) {
            try {
              // Synchronizes on the entry to allow failing fast when a recursive load is
              // detected. This may be circumvented when an entry is copied, but will fail fast most
              // of the time.
              synchronized (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)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // Move onto the front of the module in reverse of the final desired order.
      for (auto func : llvm::reverse(private_funcs)) {
        func.getOperation()->moveBefore(&module.getBody()->front());
      }
      for (auto named_func : llvm::reverse(named_funcs)) {
        named_func.func.getOperation()->moveBefore(&module.getBody()->front());
      }
      for (auto named_global_tensor : llvm::reverse(named_global_tensors)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

            }
          } finally {
            unlock();
            postWriteCleanup();
          }
    
          if (createNewEntry) {
            try {
              // Synchronizes on the entry to allow failing fast when a recursive load is
              // detected. This may be circumvented when an entry is copied, but will fail fast most
              // of the time.
              synchronized (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)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    static boolean isAlphanumericSpace(String); public static boolean isNumeric(String); public static boolean isNumericSpace(String); public static String defaultString(Object); public static String defaultString(Object, String); public static String reverse(String); public static String reverseDelimitedStri(String, String); private static void reverseArray(Object[]); public static String abbreviate(String, int); public static String abbreviate(String, int, int); public static String difference(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 164.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// then we do (SETL (InvertFlags (CMPQ b a))) instead.
    		// Rewrites will convert this to (SETG (CMPQ b a)).
    		// InvertFlags is a pseudo-op which can't appear in assembly output.
    		{name: "InvertFlags", argLength: 1}, // reverse direction of arg0
    
    		// Pseudo-ops
    		{name: "LoweredGetG", argLength: 1, reg: gp01}, // arg0=mem
    		// Scheduler ensures LoweredGetClosurePtr occurs only in entry block,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    					found = true
    					break
    				}
    			}
    			if !found {
    				t.Errorf("expect operation interrupted err but did not find")
    			}
    		})
    	}
    }
    
    // This is the most recursive operations we expect to be able to include in an expression.
    // This number could get larger with more improvements in the grammar or ANTLR stack, but should *never* decrease or previously valid expressions could be treated as invalid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go

    //go:build go1.14 && !go1.16
    
    package bidi
    
    // UnicodeVersion is the Unicode version from which the tables in this package are derived.
    const UnicodeVersion = "12.0.0"
    
    // xorMasks contains masks to be xor-ed with brackets to get the reverse
    // version.
    var xorMasks = []int32{ // 8 elements
    	0, 1, 6, 7, 3, 15, 29, 63,
    } // Size: 56 bytes
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 118.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    }
    
    // SyncPod is the transaction script for the sync of a single pod (setting up)
    // a pod. This method is reentrant and expected to converge a pod towards the
    // desired state of the spec. The reverse (teardown) is handled in
    // SyncTerminatingPod and SyncTerminatedPod. If SyncPod exits without error,
    // then the pod runtime state is in sync with the desired configuration state
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

      echo "  This may time out if there was some uncaught error during start up."
      echo
    
      # curl in mavericks is borked.
      secure=""
      if which sw_vers >& /dev/null; then
        if [[ $(sw_vers | grep ProductVersion | awk '{print $2}') = "10.9."* ]]; then
          secure="--insecure"
        fi
      fi
    
      local start_time
      local curl_out
      start_time=$(date +%s)
      curl_out=$(mktemp)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    				{Name: "HOST_IP", Value: testKubeletHostIP},
    				{Name: "HOST_IPS", Value: testKubeletHostIP + "," + testKubeletHostIPv6},
    			},
    		},
    		{
    			name:               "downward api pod ips reverse order",
    			ns:                 "downward-api",
    			enableServiceLinks: &falseValue,
    			container: &v1.Container{
    				Env: []v1.EnvVar{
    					{
    						Name: "POD_IP",
    						ValueFrom: &v1.EnvVarSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top