Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for myrc (0.05 sec)

  1. pkg/apis/autoscaling/validation/validation_test.go

    				Kind: "ReplicationController",
    				Name: "myrc",
    			},
    			MinReplicas: utilpointer.Int32(1),
    			MaxReplicas: 5,
    			Metrics: []autoscaling.MetricSpec{{
    				Type: autoscaling.ObjectMetricSourceType,
    				Object: &autoscaling.ObjectMetricSource{
    					DescribedObject: autoscaling.CrossVersionObjectReference{
    						Kind: "ReplicationController",
    						Name: "myrc",
    					},
    					Metric: autoscaling.MetricIdentifier{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. pkg/registry/autoscaling/horizontalpodautoscaler/storage/storage_test.go

    			Name:      name,
    			Namespace: metav1.NamespaceDefault,
    		},
    		Spec: autoscaling.HorizontalPodAutoscalerSpec{
    			ScaleTargetRef: autoscaling.CrossVersionObjectReference{
    				Kind: "ReplicationController",
    				Name: "myrc",
    			},
    			MaxReplicas: 5,
    			Metrics: []autoscaling.MetricSpec{
    				{
    					Type: autoscaling.ResourceMetricSourceType,
    					Resource: &autoscaling.ResourceMetricSource{
    						Name: api.ResourceCPU,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/configmap.go

    		if err != nil {
    			return nil, err
    		}
    
    		// Parse the YAML.
    		myic, err = yamlToInjectConfig(icYAML)
    		if err != nil {
    			return nil, err
    		}
    
    		// Save the updated mesh config.
    		ic.mu.Lock()
    		ic.injectConfig = myic
    		ic.mu.Unlock()
    	}
    
    	return myic, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		return nil, nil, err
    	}
    
    	// Combine mapping sources.
    	msrc := make(plugin.MappingSources)
    	for _, ms := range msrcs {
    		for m, s := range ms {
    			msrc[m] = append(msrc[m], s...)
    		}
    	}
    	return p, msrc, nil
    }
    
    type profileSource struct {
    	addr   string
    	source *source
    
    	p      *profile.Profile
    	msrc   plugin.MappingSources
    	remote bool
    	err    error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/runtime/chan_test.go

    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			myc := make(chan int, 1)
    			myc <- 0
    			<-myc
    		}
    	})
    }
    
    func BenchmarkChanSem(b *testing.B) {
    	type Empty struct{}
    	myc := make(chan Empty, runtime.GOMAXPROCS(0))
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			myc <- Empty{}
    			<-myc
    		}
    	})
    }
    
    func BenchmarkChanPopular(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  6. src/runtime/sys_freebsd_arm.s

    	BLT	2(PC)
    	DMB
    
    	MOVB	physical+0(FP), R0
    	CMP	$1, R0
    	B.NE	3(PC)
    
    	// get CNTPCT (Physical Count Register) into R0(low) R1(high)
    	// mrrc    15, 0, r0, r1, cr14
    	WORD	$0xec510f0e
    	B	2(PC)
    
    	// get CNTVCT (Virtual Count Register) into R0(low) R1(high)
    	// mrrc    15, 1, r0, r1, cr14
    	WORD	$0xec510f1e
    
    	MOVW	R0, ret+4(FP)
    	RET
    
    // func issetugid() int32
    TEXT runtimeĀ·issetugid(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DependencyManagementBuildTreeScopeServices.java

            AbstractModuleMetadataCache persistentModuleMetadataCache = readOnlyCaches.map(mrc -> (AbstractModuleMetadataCache) new TwoStageModuleMetadataCache(timeProvider, mrc.moduleMetadataCache, writableCaches.moduleMetadataCache)).orElse(w...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. src/runtime/sys_windows_arm.s

    	MOVW	R5, R13			// free stack space
    	MOVW	R0, 12(R4)		// save return value to libcall->r1
    	MOVW	R1, 16(R4)
    
    	// GetLastError
    	MRC	15, 0, R1, C13, C0, 2
    	MOVW	0x34(R1), R0
    	MOVW	R0, 20(R4)		// store in libcall->err
    
    	MOVM.IA.W (R13), [R4, R5, R15]
    
    TEXT runtimeĀ·getlasterror(SB),NOSPLIT,$0
    	MRC	15, 0, R0, C13, C0, 2
    	MOVW	0x34(R0), R0
    	MOVW	R0, ret+0(FP)
    	RET
    
    // Called by Windows as a Vectored Exception Handler (VEH).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/arch/arm.go

    		return true
    	}
    	return false
    }
    
    // ARMMRCOffset implements the peculiar encoding of the MRC and MCR instructions.
    // The difference between MRC and MCR is represented by a bit high in the word, not
    // in the usual way by the opcode itself. Asm must use AMRC for both instructions, so
    // we return the opcode for MRC so that asm doesn't need to import obj/arm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  10. src/runtime/tls_arm.s

    	// If the host does not support MRC the linker will replace it with
    	// a call to runtime.read_tls_fallback which jumps to __kuser_get_tls.
    	// The replacement function saves LR in R11 over the call to read_tls_fallback.
    	// To make stack unwinding work, this function should NOT be marked as NOFRAME,
    	// as it may contain a call, which clobbers LR even just temporarily.
    	MRC	15, 0, R0, C13, C0, 3 // fetch TLS base pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:38:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top