Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 222 for cmovinv (0.22 sec)

  1. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/resolver/DefaultVcsVersionWorkingDirResolver.java

                return repository.getDefaultBranch();
            }
    
            if (versionSelector.requiresMetadata()) {
                // TODO - implement this by moving this resolver to live alongside the external resolvers
                return null;
            }
    
            Set<VersionRef> versions = inMemoryCache.getVersionsForRepo(repository);
            if (versions == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTrackerFactory.kt

         *
         *  - Modification inside non-local (i.e. accessible outside) declaration without explicit return type specified
         *  - Modification of a package
         *  - Creation of a new declaration
         *  - Moving a declaration to another package
         *
         * Generally, all modifications which happen outside the body of a callable declaration (functions, accessors, or properties) with an
         * explicit type are considered **OOBM**.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

    ~~ specific language governing permissions and limitations
    ~~ under the License.
    
      ---
      Getting to Plexus-configured Mojos
      ---
      John Casey
      ---
      2005-04-29
    
    Abstract
    
      We're moving toward integrating mojos as first-class plexus components, while
      at the same time avoiding introducing required plexus dependencies into the
      mojo development model.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 30 15:20:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/AbstractVisualStudioIntegrationSpec.groovy

            // started before msbuild is executed.
            // If msbuild starts the Gradle daemon, it will wait for the Gradle daemon to exit before moving on to the next msbuild task.
            // When this happens, it seems like tests using msbuild are slow or hanging (>10 minutes instead of 30 seconds).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. samples/security/spire/README.md

    1. Deploy SPIRE. For proper socket injection, this **must** be done prior to installing Istio in your cluster:
    
      ```bash
      $ kubectl apply -f spire-quickstart.yaml
      ```
    
    1. Ensure that the deployment is completed before moving to the next step. This can be verified by waiting on the `spire-agent` pod to become ready:
    
      ```bash
      $ kubectl wait pod --for=condition=ready -n spire -l app=spire-agent
      ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/versions.md

    # About FastAPI versions
    
    **FastAPI** is already being used in production in many applications and systems. And the test coverage is kept at 100%. But its development is still moving quickly.
    
    New features are added frequently, bugs are fixed regularly, and the code is still continuously improving.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Nov 05 20:50:37 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/negotiate.go

    	encode, decode GroupVersioner
    }
    
    func (n *clientNegotiator) Encoder(contentType string, params map[string]string) (Encoder, error) {
    	// TODO: `pretty=1` is handled in NegotiateOutputMediaType, consider moving it to this method
    	// if client negotiators truly need to use it
    	mediaTypes := n.serializer.SupportedMediaTypes()
    	info, ok := SerializerInfoForMediaType(mediaTypes, contentType)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 29 19:55:06 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/establish/establishing_controller.go

    	klog.Info("Starting EstablishingController")
    	defer klog.Info("Shutting down EstablishingController")
    
    	if !cache.WaitForCacheSync(stopCh, ec.crdSynced) {
    		return
    	}
    
    	// only start one worker thread since its a slow moving API
    	go wait.Until(ec.runWorker, time.Second, stopCh)
    
    	<-stopCh
    }
    
    func (ec *EstablishingController) runWorker() {
    	for ec.processNextWorkItem() {
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/runtime/mbarrier.go

    // from hiding an object from the garbage collector:
    //
    // 1. shade(*slot) prevents a mutator from hiding an object by moving
    // the sole pointer to it from the heap to its stack. If it attempts
    // to unlink an object from the heap, this will shade it.
    //
    // 2. shade(ptr) prevents a mutator from hiding an object by moving
    // the sole pointer to it from its stack into a black object in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/math/sqrt.go

    		ix <<= 1
    	}
    	exp >>= 1 // exp = exp/2, exponent of square root
    	// generate sqrt(x) bit by bit
    	ix <<= 1
    	var q, s uint64               // q = sqrt(x)
    	r := uint64(1 << (shift + 1)) // r = moving bit from MSB to LSB
    	for r != 0 {
    		t := s + r
    		if t <= ix {
    			s = t + r
    			ix -= t
    			q += r
    		}
    		ix <<= 1
    		r >>= 1
    	}
    	// final rounding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 15 17:07:57 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top