Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 329 for ssa2 (0.06 sec)

  1. docs/ftp/README.md

    ssh-ed25519
    ******@****.***
    sk-ecdsa-sha2******@****.***
    ecdsa-sha2-nistp256
    ecdsa-sha2-nistp384
    ecdsa-sha2-nistp521
    rsa-sha2-256
    rsa-sha2-512
    ssh-rsa
    ssh-dss
    ```
    
    `--sftp=kex-algos=...` specifies the supported key-exchange algorithms in preference order.
    
    Valid values: 
    
    ```
    curve25519-sha256
    ******@****.***
    ecdh-sha2-nistp256
    ecdh-sha2-nistp384
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. pkg/controller/history/controller_history_test.go

    	}
    	ss1Rev2.Namespace = ss1.Namespace
    	ss2Rev1, err := NewControllerRevision(ss2, parentKind, ss2.Spec.Template.Labels, rawTemplate(&ss2.Spec.Template), 1, ss2.Status.CollisionCount)
    	if err != nil {
    		t.Fatal(err)
    	}
    	ss2Rev1.Namespace = ss2.Namespace
    	ss2Rev2, err := NewControllerRevision(ss2, parentKind, ss2.Spec.Template.Labels, rawTemplate(&ss2.Spec.Template), 2, ss2.Status.CollisionCount)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/phi.go

    	s         *state                   // SSA state
    	f         *ssa.Func                // function to work on
    	fwdrefs   []*ssa.Value             // list of FwdRefs to be processed
    	defvars   []map[ir.Node]*ssa.Value // defined variables at end of each block
    	reachable []bool                   // which blocks are reachable
    }
    
    func (s *simplePhiState) insertPhis() {
    	s.reachable = ssa.ReachableBlocks(s.f)
    
    	// Find FwdRef ops.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/arch.go

    	SSAMarkMoves func(*State, *ssa.Block)
    
    	// SSAGenValue emits Prog(s) for the Value.
    	SSAGenValue func(*State, *ssa.Value)
    
    	// SSAGenBlock emits end-of-block Progs. SSAGenValue should be called
    	// for all values in the block before SSAGenBlock.
    	SSAGenBlock func(s *State, b, next *ssa.Block)
    
    	// LoadRegResult emits instructions that loads register-assigned result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 21:05:55 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. pkg/controller/controller_ref_manager_test.go

    		},
    		{
    			name:         "check the structure of patch bytes with a finalizer and multiple owners",
    			ownerUID:     []types.UID{"ss1", "ss2"},
    			dependentUID: "ss2",
    			finalizers:   []string{"f1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 17:19:26 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  6. test/codegen/floats.go

    // --------------------- //
    
    func Mul2(f float64) float64 {
    	// 386/sse2:"ADDSD",-"MULSD"
    	// amd64:"ADDSD",-"MULSD"
    	// arm/7:"ADDD",-"MULD"
    	// arm64:"FADDD",-"FMULD"
    	// ppc64x:"FADD",-"FMUL"
    	// riscv64:"FADDD",-"FMULD"
    	return f * 2.0
    }
    
    func DivPow2(f1, f2, f3 float64) (float64, float64, float64) {
    	// 386/sse2:"MULSD",-"DIVSD"
    	// amd64:"MULSD",-"DIVSD"
    	// arm/7:"MULD",-"DIVD"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/compile.go

    //   - ssa/check/on enables checking after each phase
    //   - ssa/all/time enables time reporting for all phases
    //
    // See gc/lex.go for dissection of the option string.
    // Example uses:
    //
    // GO_GCFLAGS=-d=ssa/generic_cse/time,ssa/generic_cse/stats,ssa/generic_cse/debug=3 ./make.bash
    //
    // BOOT_GO_GCFLAGS=-d='ssa/~^.*scc$/off' GO_GCFLAGS='-d=ssa/~^.*scc$/off' ./make.bash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/tooltags.txt

    stderr 'go: invalid GORISCV64: must be rva20u64, rva22u64'
    
    env GOARCH=riscv64
    env GORISCV64=
    go list -f '{{context.ToolTags}}'
    stdout 'riscv64.rva20u64'
    
    env GOARCH=386
    env GO386=sse2
    go list -f '{{context.ToolTags}}'
    stdout '386.sse2'
    
    env GOARCH=wasm
    env GOWASM=satconv
    go list -f '{{context.ToolTags}}'
    stdout 'wasm.satconv'
    
    -- go.mod --
    module m
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 07:25:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. pkg/registry/apiserverinternal/storageversion/strategy_test.go

    }
    
    func validStorageVersion() *apiserverinternal.StorageVersion {
    	ssv1 := apiserverinternal.ServerStorageVersion{
    		APIServerID:       "1",
    		EncodingVersion:   "v1",
    		DecodableVersions: []string{"v1", "v2"},
    	}
    	ssv2 := apiserverinternal.ServerStorageVersion{
    		APIServerID:       "2",
    		EncodingVersion:   "v1",
    		DecodableVersions: []string{"v1", "v2"},
    	}
    	// ssv3 has a different encoding version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 06 07:26:18 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/plive.go

    }
    
    // affectedVar returns the *ir.Name node affected by v.
    func affectedVar(v *ssa.Value) (*ir.Name, ssa.SymEffect) {
    	// Special cases.
    	switch v.Op {
    	case ssa.OpLoadReg:
    		n, _ := ssa.AutoVar(v.Args[0])
    		return n, ssa.SymRead
    	case ssa.OpStoreReg:
    		n, _ := ssa.AutoVar(v)
    		return n, ssa.SymWrite
    
    	case ssa.OpArgIntReg:
    		// This forces the spill slot for the register to be live at function entry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top