Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for sigs (0.18 sec)

  1. src/go/types/expr.go

    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    func newTarget(typ Type, desc string) *target {
    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    			return &target{sig, desc}
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    	return fcb.encode()
    }
    
    // logicFlags64 returns flags set to the sign/zeroness of x.
    // C and V are set to false.
    func logicFlags64(x int64) flagConstant {
    	var fcb flagConstantBuilder
    	fcb.Z = x == 0
    	fcb.N = x < 0
    	return fcb.encode()
    }
    
    // logicFlags32 returns flags set to the sign/zeroness of x.
    // C and V are set to false.
    func logicFlags32(x int32) flagConstant {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. src/go/printer/nodes.go

    		return isTypeElem(x.X)
    	}
    	return false
    }
    
    func (p *printer) signature(sig *ast.FuncType) {
    	if sig.TypeParams != nil {
    		p.parameters(sig.TypeParams, funcTParam)
    	}
    	if sig.Params != nil {
    		p.parameters(sig.Params, funcParam)
    	} else {
    		p.print(token.LPAREN, token.RPAREN)
    	}
    	res := sig.Results
    	n := res.NumFields()
    	if n > 0 {
    		// res != nil
    		p.print(blank)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/math_grad.cc

    Status AbsGrad(const Scope& scope, const Operation& op,
                   const std::vector<Output>& grad_inputs,
                   std::vector<Output>* grad_outputs) {
      // dx = dy * sign(x)
      grad_outputs->push_back(Mul(scope, grad_inputs[0], Sign(scope, op.input(0))));
      return scope.status();
    }
    REGISTER_GRADIENT_OP("Abs", AbsGrad);
    
    Status NegGrad(const Scope& scope, const Operation& op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    func newTarget(typ Type, desc string) *target {
    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    			return &target{sig, desc}
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. src/main/webapp/css/admin/font-awesome.min.css

    efore{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api_test.go

    		// in Identical() or String().
    		sig, _ := sel.Type().(*Signature)
    		if sel.Kind() == MethodVal {
    			got := sig.Recv().Type()
    			want := sel.Recv()
    			if !Identical(got, want) {
    				t.Errorf("%s: Recv() = %s, want %s", segment, got, want)
    			}
    		} else if sig != nil && sig.Recv() != nil {
    			t.Errorf("%s: signature has receiver %s", sig, sig.Recv().Type())
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    		// in Identical() or String().
    		sig, _ := sel.Type().(*Signature)
    		if sel.Kind() == MethodVal {
    			got := sig.Recv().Type()
    			want := sel.Recv()
    			if !Identical(got, want) {
    				t.Errorf("%s: Recv() = %s, want %s", syntax, got, want)
    			}
    		} else if sig != nil && sig.Recv() != nil {
    			t.Errorf("%s: signature has receiver %s", sig, sig.Recv().Type())
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. src/crypto/x509/x509.go

    // certificate signing key.
    type ConstraintViolationError struct{}
    
    func (ConstraintViolationError) Error() string {
    	return "x509: invalid signature: parent certificate cannot sign this kind of certificate"
    }
    
    func (c *Certificate) Equal(other *Certificate) bool {
    	if c == nil || other == nil {
    		return c == other
    	}
    	return bytes.Equal(c.Raw, other.Raw)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    	return nil, 0
    }
    
    // isCleanExt reports whether v is the result of a value-preserving
    // sign or zero extension.
    func isCleanExt(v *Value) bool {
    	switch v.Op {
    	case OpSignExt8to16, OpSignExt8to32, OpSignExt8to64,
    		OpSignExt16to32, OpSignExt16to64, OpSignExt32to64:
    		// signed -> signed is the only value-preserving sign extension
    		return v.Args[0].Type.IsSigned() && v.Type.IsSigned()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top