Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 145 for reactors (0.28 sec)

  1. src/math/big/arith_loong64.s

    // license that can be found in the LICENSE file.
    
    //go:build !math_big_pure_go && loong64
    
    #include "textflag.h"
    
    // This file provides fast assembly versions for the elementary
    // arithmetic operations on vectors implemented in arith.go.
    
    TEXT ·addVV(SB),NOSPLIT,$0
    	JMP ·addVV_g(SB)
    
    TEXT ·subVV(SB),NOSPLIT,$0
    	JMP ·subVV_g(SB)
    
    TEXT ·addVW(SB),NOSPLIT,$0
    	JMP ·addVW_g(SB)
    
    TEXT ·subVW(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 749 bytes
    - Viewed (0)
  2. src/math/big/arith_mips64x.s

    // license that can be found in the LICENSE file.
    
    //go:build !math_big_pure_go && (mips64 || mips64le)
    
    #include "textflag.h"
    
    // This file provides fast assembly versions for the elementary
    // arithmetic operations on vectors implemented in arith.go.
    
    TEXT ·addVV(SB),NOSPLIT,$0
    	JMP ·addVV_g(SB)
    
    TEXT ·subVV(SB),NOSPLIT,$0
    	JMP ·subVV_g(SB)
    
    TEXT ·addVW(SB),NOSPLIT,$0
    	JMP ·addVW_g(SB)
    
    TEXT ·subVW(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 763 bytes
    - Viewed (0)
  3. src/math/big/arith_riscv64.s

    // license that can be found in the LICENSE file.
    
    //go:build !math_big_pure_go && riscv64
    
    #include "textflag.h"
    
    // This file provides fast assembly versions for the elementary
    // arithmetic operations on vectors implemented in arith.go.
    
    TEXT ·addVV(SB),NOSPLIT,$0
    	JMP ·addVV_g(SB)
    
    TEXT ·subVV(SB),NOSPLIT,$0
    	JMP ·subVV_g(SB)
    
    TEXT ·addVW(SB),NOSPLIT,$0
    	JMP ·addVW_g(SB)
    
    TEXT ·subVW(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 750 bytes
    - Viewed (0)
  4. pkg/registry/admissionregistration/resolver/resolver.go

    	client discovery.DiscoveryInterface
    }
    
    func (d *discoveryResourceResolver) Resolve(gvk schema.GroupVersionKind) (schema.GroupVersionResource, error) {
    	gv := gvk.GroupVersion()
    	// TODO: refactor this into an efficient gvk --> gvr resolver that remembers hits and re-resolves group/version info on misses
    	resources, err := d.client.ServerResourcesForGroupVersion(gv.String())
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:29:56 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. pkg/registry/batch/rest/storage_batch.go

    	// If you add a version here, be sure to add an entry in `k8s.io/kubernetes/cmd/kube-apiserver/app/aggregator.go with specific priorities.
    	// TODO refactor the plumbing to provide the information in the APIGroupInfo
    
    	if storageMap, err := p.v1Storage(apiResourceConfigSource, restOptionsGetter); err != nil {
    		return genericapiserver.APIGroupInfo{}, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 06:08:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java

            logger.info(s);
        }
    
        public void debugReactorPlan(ProjectBuildList projectBuilds) {
            if (!logger.isDebugEnabled()) {
                return;
            }
    
            logger.debug("=== REACTOR BUILD PLAN ================================================");
    
            for (Iterator<ProjectSegment> it = projectBuilds.iterator(); it.hasNext(); ) {
                ProjectSegment projectBuild = it.next();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. pkg/registry/events/rest/storage_events.go

    	// If you add a version here, be sure to add an entry in `k8s.io/kubernetes/cmd/kube-apiserver/app/aggregator.go with specific priorities.
    	// TODO refactor the plumbing to provide the information in the APIGroupInfo
    
    	if storageMap, err := p.v1Storage(apiResourceConfigSource, restOptionsGetter); err != nil {
    		return genericapiserver.APIGroupInfo{}, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 06:58:59 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/BuildModelSourceTransformer.java

                version = parent.getVersion();
                modVersion = replaceCiFriendlyVersion(context, version);
                parent.setVersion(modVersion);
            }
        }
    
        //
        // Infer inner reactor dependencies version
        //
        void handleReactorDependencies(TransformerContext context, Model model) {
            for (Dependency dep : model.getDependencies()) {
                if (dep.getVersion() == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. pkg/registry/coordination/rest/storage_coordination.go

    	// If you add a version here, be sure to add an entry in `k8s.io/kubernetes/cmd/kube-apiserver/app/aggregator.go with specific priorities.
    	// TODO refactor the plumbing to provide the information in the APIGroupInfo
    
    	if storageMap, err := p.v1Storage(apiResourceConfigSource, restOptionsGetter); err != nil {
    		return genericapiserver.APIGroupInfo{}, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. src/crypto/subtle/xor_ppc64x.s

    	MOVD	$16, R10
    	MOVD	$32, R14
    	MOVD	$48, R15
    	ANDCC	$63, R6, R9	// Check for tailing bytes for later
    	PCALIGN $16
    	// Case for >= 64 bytes
    	// Process 64 bytes per iteration
    	// Load 4 vectors of a and b
    	// XOR the corresponding vectors
    	// from a and b and store the result
    loop64:
    	LXVD2X	(R4)(R8), VS32
    	LXVD2X	(R4)(R10), VS34
    	LXVD2X	(R4)(R14), VS36
    	LXVD2X	(R4)(R15), VS38
    	LXVD2X	(R5)(R8), VS33
    	LXVD2X	(R5)(R10), VS35
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top