Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 276 for recurse (0.39 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    //     updates failed on conflict errors and we have retries left, re-get the failed quota from our cache for the latest version
    //     and recurse into this method with the subset.  It's safe for us to evaluate ONLY the subset, because the other quota
    //     documents for these waiters have already been evaluated.  Step 1, will mark all the ones that should already have succeeded.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. hack/update-codegen.sh

    #       false: never generate a defaulter for this type
    #     on functions:
    #       covers: if the function name matches SetDefault_NAME, instructs
    #               the generator not to recurse
    #     on packages:
    #       FIELDNAME: any object with a field of this name is a candidate
    #                  for having a defaulter generated
    function codegen::defaults() {
        # Build the tool.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

          }
          ExampleStackTrace found = allowedPriorLocks.get(node);
          if (found != null) {
            return found; // Found a path ending at the node!
          }
          // Recurse the edges.
          for (Entry<LockGraphNode, ExampleStackTrace> entry : allowedPriorLocks.entrySet()) {
            LockGraphNode preAcquiredLock = entry.getKey();
            found = preAcquiredLock.findPathTo(node, seen);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

          }
          ExampleStackTrace found = allowedPriorLocks.get(node);
          if (found != null) {
            return found; // Found a path ending at the node!
          }
          // Recurse the edges.
          for (Entry<LockGraphNode, ExampleStackTrace> entry : allowedPriorLocks.entrySet()) {
            LockGraphNode preAcquiredLock = entry.getKey();
            found = preAcquiredLock.findPathTo(node, seen);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    	}
    
    	errs, remainingBudget = s.validateExpressions(ctx, fldPath, obj, oldObj, correlation, remainingBudget)
    
    	if remainingBudget < 0 {
    		return errs, remainingBudget
    	}
    
    	// If the schema has allOf, recurse through those elements to see if there
    	// are any validation rules that need to be evaluated.
    	for _, allOfValidator := range s.AllOfValidators {
    		var allOfErrs field.ErrorList
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  6. docs/pt/docs/alternatives.md

    Esse desacoplamento de partes, e sendo um "microframework" que pode ser extendido para cobrir exatamente o que é necessário era um recurso chave que eu queria manter.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. src/runtime/defer_test.go

    	}
    }
    
    // Test case approximating issue #37664, where a recursive function (interpreter)
    // may do repeated recovers/re-panics until it reaches the frame where the panic
    // can actually be handled. The recurseFnPanicRec() function is testing that there
    // are no stale defer structs on the defer chain after the interpreter() sequence,
    // by writing a bunch of 0xffffffffs into several recursive stack frames, and then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:57:24 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. docs/pt/docs/features.md

    ---
    hide:
      - navigation
    ---
    
    # Recursos
    
    ## Recursos do FastAPI
    
    **FastAPI** te oferece o seguinte:
    
    ### Baseado em padrões abertos
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

        if (!parentBuilder.getFeatures().contains(NoRecurse.DESCENDING)) {
          derivedSuites.add(createDescendingSuite(parentBuilder));
        }
    
        if (parentBuilder.getFeatures().contains(SERIALIZABLE)) {
          derivedSuites.add(createReserializedSuite(parentBuilder));
        }
    
        if (!parentBuilder.getFeatures().contains(NoRecurse.SUBMULTISET)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. src/os/types_windows.go

    	// Per https://learn.microsoft.com/en-us/windows/win32/fileio/reparse-points-and-file-operations,
    	// “Applications that use the CreateFile function should specify the
    	// FILE_FLAG_OPEN_REPARSE_POINT flag when opening the file if it is a reparse
    	// point.”
    	//
    	// And per https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilew,
    	// “If the file is not a reparse point, then this flag is ignored.”
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top