Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 422 for racewrite (0.16 sec)

  1. src/cmd/compile/internal/rangefunc/rewrite.go

    Rewriting the construct in the front end, before noder, means the functions generated during
    the rewrite are available in a noder-generated representation for inlining by the back end.
    
    # Theory of Operation
    
    The basic idea is to rewrite
    
    	for x := range f {
    		...
    	}
    
    into
    
    	f(func(x T) bool {
    		...
    	})
    
    But it's not usually that easy.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect-rewrite/httproute-rewrite.yaml

    #$ Used in:
    #$ - site-src/api-types/httproute.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-filter-rewrite
    spec:
      hostnames:
        - rewrite.example
      rules:
        - filters:
            - type: URLRewrite
              urlRewrite:
                hostname: elsewhere.example
          backendRefs:
            - name: example-svc
              weight: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 389 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    // a” = (Select0 a')
    // b  = (CMPconst [0] a”)
    // c  = (OR a z)
    //
    // which makes it impossible to rewrite the second user. Instead the result
    // of this conversion is:
    // a' = (ADDCC x y)
    // a  = (Select0 a')
    // b  = (CMPconst [0] a)
    // c  = (OR a z)
    //
    // Which makes it trivial to rewrite b using a lowering rule.
    func convertPPC64OpToOpCC(op *Value) *Value {
    	ccOpMap := map[Op]Op{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. buildscripts/rewrite-old-new.sh

    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	"${WORK_DIR}/mc" mb minio/healing-rewrite-bucket --quiet --with-lock
    	"${WORK_DIR}/mc" cp \
    		buildscripts/verify-build.sh \
    		minio/healing-rewrite-bucket/ \
    		--disable-multipart --quiet
    
    	"${WORK_DIR}/mc" cp \
    		buildscripts/verify-build.sh \
    		minio/healing-rewrite-bucket/ \
    		--disable-multipart --quiet
    
    	"${WORK_DIR}/mc" cp \
    		buildscripts/verify-build.sh \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/internal/buildid/rewrite.go

    		}
    
    		// Slide ending tiny-sized fringe to beginning of buffer.
    		copy(buf[0:], buf[bufSize:])
    		start -= bufSize
    		offset += int64(bufSize)
    	}
    	h.Sum(hash[:0])
    	return matches, hash, nil
    }
    
    func Rewrite(w io.WriterAt, pos []int64, id string) error {
    	b := []byte(id)
    	for _, p := range pos {
    		if _, err := w.WriteAt(b, p); err != nil {
    			return err
    		}
    	}
    
    	// Update Mach-O code signature, if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect-rewrite/httproute-rewrite-path.yaml

    #$ Used in:
    #$ - site-src/api-types/httproute.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-filter-rewrite
    spec:
      hostnames:
        - rewrite.example
      rules:
        - matches:
            - path:
                type: PathPrefix
                value: /cardamom
          filters:
            - type: URLRewrite
              urlRewrite:
                hostname: elsewhere.example
                path:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 571 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    Tim King <******@****.***> 1702929703 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    	ir.Syms.Racefuncexit = typecheck.LookupRuntimeFunc("racefuncexit")
    	ir.Syms.Raceread = typecheck.LookupRuntimeFunc("raceread")
    	ir.Syms.Racereadrange = typecheck.LookupRuntimeFunc("racereadrange")
    	ir.Syms.Racewrite = typecheck.LookupRuntimeFunc("racewrite")
    	ir.Syms.Racewriterange = typecheck.LookupRuntimeFunc("racewriterange")
    	ir.Syms.TypeAssert = typecheck.LookupRuntimeFunc("typeAssert")
    	ir.Syms.WBZero = typecheck.LookupRuntimeFunc("wbZero")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-rewrite.yaml

    Alexander Zielenski <******@****.***> 1697824555 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 381 bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

                                      var_handle, value_to_write);
      return assign_op.operation.node();
    }
    
    Node* MakeWrite(const Scope& scope, const string& id) {
      return MakeWrite(
          scope, ops::Const(scope.WithOpName("ValueToAssign" + id), 1.0f), id);
    }
    
    FunctionDefLibrary CreateFunctionDefLibWithConstFunction(const string& name) {
      FunctionDefLibrary fdef_lib;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top