Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for myrc (0.03 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/security/src/test/groovy/org/gradle/security/internal/SecuritySupportSpec.groovy

            }
            keyrings[0].publicKey.userIDs[0] == "Gradle Inc. <******@****.***>"
            keyrings[1].publicKey.userIDs[0] == "Stian Soiland <******@****.***>"
            keyrings[2].publicKey.userIDs[0] == "Gradle <marc@gradle.com>"
            keyrings[3].publicKey.userIDs[0] == "�amonn McManus <******@****.***>"
            keyrings[4].publicKey.userIDs.size() == 0
        }
    
        @Issue("https://github.com/gradle/gradle/issues/28400")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/crypto/md5/md5block_s390x.s

    //	http://www.zorinaq.com/papers/md5-amd64.tar.bz2
    //
    // MD5 adapted for s390x using Go's assembler for
    // s390x, based on md5block_amd64.s implementation by
    // the Go authors.
    //
    // Author: Marc Bevand <bevand_m (at) epita.fr>
    // Licence: I hereby disclaim the copyright on this code and place it
    // in the public domain.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // func block(dig *digest, p []byte)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/crypto/md5/md5block_386.s

    // #defines generating 8a assembly, and adjusted for 386,
    // by the Go Authors.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // MD5 optimized for AMD64.
    //
    // Author: Marc Bevand <bevand_m (at) epita.fr>
    // Licence: I hereby disclaim the copyright on this code and place it
    // in the public domain.
    
    #define ROUND1(a, b, c, d, index, const, shift) \
    	XORL	c, BP; \
    	LEAL	const(a)(DI*1), a; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/crypto/md5/md5block_amd64.s

    //
    // Translated from Perl generating GNU assembly into
    // #defines generating 6a assembly by the Go Authors.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // MD5 optimized for AMD64.
    //
    // Author: Marc Bevand <bevand_m (at) epita.fr>
    // Licence: I hereby disclaim the copyright on this code and place it
    // in the public domain.
    
    TEXT	·block(SB),NOSPLIT,$8-32
    	MOVQ	dig+0(FP),	BP
    	MOVQ	p+8(FP),	SI
    	MOVQ	p_len+16(FP), DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top