Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 494 for addsym (0.12 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/certificates/v1/certificatesigningrequestspec.go

    // apply.
    func CertificateSigningRequestSpec() *CertificateSigningRequestSpecApplyConfiguration {
    	return &CertificateSigningRequestSpecApplyConfiguration{}
    }
    
    // WithRequest adds the given value to the Request field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:16 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		fpstoreidx = regInfo{inputs: []regMask{gpspsb, gpsp, fp, 0}}
    	)
    
    	var _386ops = []opData{
    		// fp ops
    		{name: "ADDSS", argLength: 2, reg: fp21, asm: "ADDSS", commutative: true, resultInArg0: true}, // fp32 add
    		{name: "ADDSD", argLength: 2, reg: fp21, asm: "ADDSD", commutative: true, resultInArg0: true}, // fp64 add
    		{name: "SUBSS", argLength: 2, reg: fp21, asm: "SUBSS", resultInArg0: true},                    // fp32 sub
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/egress_selector.go

    	return &EgressSelectorOptions{}
    }
    
    // AddFlags adds flags related to admission for a specific APIServer to the specified FlagSet
    func (o *EgressSelectorOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.StringVar(&o.ConfigFile, "egress-selector-config-file", o.ConfigFile,
    		"File with apiserver egress selector configuration.")
    }
    
    // ApplyTo adds the egress selector settings to the server configuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 01 11:41:59 UTC 2021
    - 3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/value.go

    		return fmt.Sprintf(" [lsb=%d,width=%d]", lsb, width)
    	case auxFloat32, auxFloat64:
    		return fmt.Sprintf(" [%g]", v.AuxFloat())
    	case auxString:
    		return fmt.Sprintf(" {%q}", v.Aux)
    	case auxSym, auxCall, auxTyp:
    		if v.Aux != nil {
    			return fmt.Sprintf(" {%v}", v.Aux)
    		}
    		return ""
    	case auxSymOff, auxCallOff, auxTypSize, auxNameOffsetInt8:
    		s := ""
    		if v.Aux != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

         */
        void assertCanExecute() throws AssertionError;
    
        /**
         * Adds an action to be called immediately before execution, to allow extra configuration to be injected.
         */
        void beforeExecute(Action<? super GradleExecuter> action);
    
        /**
         * Adds an action to be called immediately before execution, to allow extra configuration to be injected.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/plugins/BinaryBasePlugin.java

    /**
     * Base plugin for binaries support.
     *
     * - Adds a {@link BinarySpec} container named {@code binaries} to the project.
     * - Registers the base {@link BinarySpec} type.
     * - For each {@link BinarySpec}, registers a lifecycle task to assemble that binary.
     * - For each {@link BinarySpec}, adds the binary's source sets as its default inputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. test/codegen/mathbits.go

    }
    
    func Add64R(x, y, ci uint64) uint64 {
    	// arm64:"ADDS","ADCS",-"ADD\t",-"CMP"
    	// amd64:"NEGL","ADCQ",-"SBBQ",-"NEGQ"
    	// loong64: "ADDV", -"SGTU"
    	// ppc64x: "ADDC", "ADDE", -"ADDZE"
    	// s390x:"ADDE","ADDC\t[$]-1,"
    	// mips64:"ADDV",-"SGTU"
    	// riscv64: "ADD",-"SLTU"
    	r, _ := bits.Add64(x, y, ci)
    	return r
    }
    
    func Add64M(p, q, r *[3]uint64) {
    	var c uint64
    	r[0], c = bits.Add64(p[0], q[0], c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. src/crypto/sha256/sha256block_amd64.s

    	VMOVDQU XDWORD3, XDWORD1
    
    	CMPQ SRND, $4*4*32
    	JB   avx2_loop2
    
    	MOVQ dig+0(FP), CTX // d.h[8]
    	MOVQ _INP(SP), INP
    
    	addm(  0(CTX), a)
    	addm(  4(CTX), b)
    	addm(  8(CTX), c)
    	addm( 12(CTX), d)
    	addm( 16(CTX), e)
    	addm( 20(CTX), f)
    	addm( 24(CTX), g)
    	addm( 28(CTX), h)
    
    	CMPQ _INP_END(SP), INP
    	JB   done_hash
    
    	XORQ SRND, SRND
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/matchresources.go

    func (b *MatchResourcesApplyConfiguration) WithObjectSelector(value *v1.LabelSelectorApplyConfiguration) *MatchResourcesApplyConfiguration {
    	b.ObjectSelector = value
    	return b
    }
    
    // WithResourceRules adds the given value to the ResourceRules field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:51:52 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/options/certs.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import "github.com/spf13/pflag"
    
    // AddCertificateDirFlag adds the --certs-dir flag to the given flagset
    func AddCertificateDirFlag(fs *pflag.FlagSet, certsDir *string) {
    	fs.StringVar(certsDir, CertificatesDir, *certsDir, "The path where to save the certificates")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 12 09:44:35 UTC 2021
    - 856 bytes
    - Viewed (0)
Back to top