Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 151 for RF (0.04 sec)

  1. schema/schema_helper_test.go

    			}
    
    			for _, ref := range relation.References {
    				var found bool
    				for _, rf := range r.References {
    					if (rf.PrimaryKey == nil || (rf.PrimaryKey.Name == ref.PrimaryKey && rf.PrimaryKey.Schema.Name == ref.PrimarySchema)) && (rf.PrimaryValue == ref.PrimaryValue) && (rf.ForeignKey.Name == ref.ForeignKey && rf.ForeignKey.Schema.Name == ref.ForeignSchema) && (rf.OwnPrimaryKey == ref.OwnPrimaryKey) {
    						found = true
    					}
    				}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:31:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. test/fixedbugs/issue63490.go

    //go:noinline
    func (a assignmentBaseResource) f(s string) ResourceFunc {
    	println(s)
    	return ResourceFunc{}
    }
    
    //go:noinline
    func (r SubscriptionAssignmentResource) Hi() ResourceFunc {
    	rf := r.base.f("Hello world")
    	rf.base = r.base
    	return rf
    }
    
    func main() {
    	var r SubscriptionAssignmentResource
    	r.Hi()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:50:46 UTC 2023
    - 683 bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/scan.go

    			if imp.path == "C" {
    				cgoDirectives = append(cgoDirectives, extractCgoDirectives(imp.doc.Text())...)
    			}
    			rf.imports = append(rf.imports, rawImport{path: imp.path, position: fset.Position(imp.pos)})
    		}
    		rf.cgoDirectives = strings.Join(cgoDirectives, "\n")
    		for _, emb := range info.embeds {
    			rf.embeds = append(rf.embeds, embed{emb.pattern, emb.pos})
    		}
    
    	}
    	return p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. build/lib/release.sh

      find "${RELEASE_STAGE}" -name '#*#' -exec rm {} \;
      find "${RELEASE_STAGE}" -name '.DS*' -exec rm {} \;
    }
    
    function kube::release::package_tarballs() {
      # Clean out any old releases
      rm -rf "${RELEASE_STAGE}" "${RELEASE_TARS}" "${RELEASE_IMAGES}"
      mkdir -p "${RELEASE_TARS}"
      kube::release::package_src_tarball &
      kube::release::package_client_tarballs &
      kube::release::package_kube_manifests_tarball &
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    		case ALSR:
    			o1 = c.opbfm(p, AUBFM, v, 63, rf, rt)
    
    		case ALSRW:
    			o1 = c.opbfm(p, AUBFMW, v, 31, rf, rt)
    
    		case AROR:
    			o1 = c.opextr(p, AEXTR, v, rf, rf, rt)
    
    		case ARORW:
    			o1 = c.opextr(p, AEXTRW, v, rf, rf, rt)
    
    		default:
    			c.ctxt.Diag("bad shift $con\n%v", p)
    			break
    		}
    
    	case 9: /* lsl Rm,[Rn],Rd -> lslv Rm, Rn, Rd */
    		o1 = c.oprrr(p, p.As)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. docs/bucket/replication/test_del_marker_proxying.sh

    		echo "==========================="
    		cat "/tmp/${site}_2.log"
    	done
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/sitea
    	rm -rf /tmp/siteb
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    
    # Start MinIO instances
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 11:38:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/reflect/iter.go

    // Array, Chan, Map, Slice, or String.
    func (v Value) Seq() iter.Seq[Value] {
    	if canRangeFunc(v.typ()) {
    		return func(yield func(Value) bool) {
    			rf := MakeFunc(v.Type().In(0), func(in []Value) []Value {
    				return []Value{ValueOf(yield(in[0]))}
    			})
    			v.Call([]Value{rf})
    		}
    	}
    	switch v.Kind() {
    	case Int:
    		return rangeNum[int](v.Int())
    	case Int8:
    		return rangeNum[int8](v.Int())
    	case Int16:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:11 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/inline/inlheur/serialize.go

    	writeUleb128(&sb, uint64(len(funcProps.ParamFlags)))
    	for _, pf := range funcProps.ParamFlags {
    		writeUleb128(&sb, uint64(pf))
    	}
    	writeUleb128(&sb, uint64(len(funcProps.ResultFlags)))
    	for _, rf := range funcProps.ResultFlags {
    		writeUleb128(&sb, uint64(rf))
    	}
    	return sb.String()
    }
    
    func DeserializeFromString(s string) *FuncProps {
    	if len(s) == 0 {
    		return nil
    	}
    	var funcProps FuncProps
    	var v uint64
    	sl := []byte(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:02:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/abiutilsaux_test.go

    	}
    	outf := []*types.Field{}
    	for _, ot := range outs {
    		outf = append(outf, mkParamResultField(ot, q, ir.PPARAMOUT))
    	}
    	var rf *types.Field
    	if rcvr != nil {
    		rf = mkParamResultField(rcvr, q, ir.PPARAM)
    	}
    	return types.NewSignature(rf, inf, outf)
    }
    
    type expectedDump struct {
    	dump string
    	file string
    	line int
    }
    
    func tokenize(src string) []string {
    	var s scanner.Scanner
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:34:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. hack/verify-vendor.sh

      chmod -R +w "${_tmpdir}"
      if [ "${KEEP_TMP}" == "true" ]; then
        echo "Leaving ${_tmpdir} for you to examine or copy. Please delete it manually when finished. (rm -rf ${_tmpdir})"
      else
        echo "Removing ${_tmpdir}"
        rm -rf "${_tmpdir}"
      fi
    }
    kube::util::trap_add cleanup EXIT
    
    # Copy the contents of the kube directory into the nice clean place (which is NOT shaped like a GOPATH)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top