Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 188 for setTypes (0.24 sec)

  1. src/cmd/compile/internal/typecheck/expr.go

    	if t == nil || r.Type() == nil {
    		n.SetType(nil)
    		return n
    	}
    	switch t.Kind() {
    	default:
    		base.Errorf("invalid operation: %v (type %v does not support indexing)", n, t)
    		n.SetType(nil)
    		return n
    
    	case types.TSTRING, types.TARRAY, types.TSLICE:
    		n.Index = indexlit(n.Index)
    		if t.IsString() {
    			n.SetType(types.ByteType)
    		} else {
    			n.SetType(t.Elem())
    		}
    		why := "string"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/field/fe_test.go

    	}
    }
    
    func TestSetBytesRoundTrip(t *testing.T) {
    	f1 := func(in [32]byte, fe Element) bool {
    		fe.SetBytes(in[:])
    
    		// Mask the most significant bit as it's ignored by SetBytes. (Now
    		// instead of earlier so we check the masking in SetBytes is working.)
    		in[len(in)-1] &= (1 << 7) - 1
    
    		return bytes.Equal(in[:], fe.Bytes()) && isInBounds(&fe)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    		}
    	}
    	return bytecount, nil
    }
    
    // SetBytes configures p for the given paragraph text. It replaces text
    // previously set by SetBytes or SetString. If b contains a paragraph separator
    // it will only process the first paragraph and report the number of bytes
    // consumed from b including this separator. Error may be non-nil if options are
    // given.
    func (p *Paragraph) SetBytes(b []byte, opts ...Option) (n int, err error) {
    	p.p = b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/ipset/ipset.go

    	args := []string{"create", set.Name, string(set.SetType)}
    	if set.SetType == HashIPPortIP || set.SetType == HashIPPort || set.SetType == HashIPPortNet || set.SetType == HashIP {
    		args = append(args,
    			"family", set.HashFamily,
    			"hashsize", strconv.Itoa(set.HashSize),
    			"maxelem", strconv.Itoa(set.MaxElem),
    		)
    	}
    	if set.SetType == BitmapPort {
    		args = append(args, "range", set.PortRange)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. src/crypto/internal/bigmod/nat_test.go

    	return n.Bytes(maxModulus(uint(len(n.limbs))))
    }
    
    func natFromBytes(b []byte) *Nat {
    	// Must not use Nat.SetBytes as it's used in TestSetBytes.
    	bb := new(big.Int).SetBytes(b)
    	return NewNat().setBig(bb)
    }
    
    func modulusFromBytes(b []byte) *Modulus {
    	bb := new(big.Int).SetBytes(b)
    	m, _ := NewModulusFromBig(bb)
    	return m
    }
    
    // maxModulus returns the biggest modulus that can fit in n limbs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:56:20 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/ExpressionReplacingVisitorSupport.java

                replaceExpr(expr.getExpression()));
            result.setType(expr.getType());
            result.setSourcePosition(expr);
            replaceVisitedExpressionWith(result);
        }
    
        @Override
        public void visitNotExpression(NotExpression expr) {
            NotExpression result = new NotExpression(
                replaceExpr(expr.getExpression()));
            result.setType(expr.getType());
            result.setSourcePosition(expr);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/edwards25519.go

    	return out
    }
    
    var feOne = new(field.Element).One()
    
    // SetBytes sets v = x, where x is a 32-byte encoding of v. If x does not
    // represent a valid point on the curve, SetBytes returns nil and an error and
    // the receiver is unchanged. Otherwise, SetBytes returns v.
    //
    // Note that SetBytes accepts all non-canonical encodings of valid points.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/const.go

    			break
    		}
    		n = ir.NewConstExpr(v, n)
    		n.SetType(t)
    		return n
    
    	case ir.OPLUS, ir.ONEG, ir.OBITNOT, ir.ONOT, ir.OREAL, ir.OIMAG:
    		ot := operandType(n.Op(), t)
    		if ot == nil {
    			n = DefaultLit(n, nil)
    			break
    		}
    
    		n := n.(*ir.UnaryExpr)
    		n.X = convlit(n.X, ot)
    		if n.X.Type() == nil {
    			n.SetType(nil)
    			return n
    		}
    		n.SetType(t)
    		return n
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java

            toolchain.setType("TYPE");
            toolchain.setProvides(props);
            PersistedToolchains userResult = new PersistedToolchains();
            userResult.setToolchains(Collections.singletonList(toolchain));
    
            props = new Properties();
            props.put("key", "global_value");
            toolchain = new ToolchainModel();
            toolchain.setType("TYPE");
            toolchain.setProvides(props);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. src/encoding/json/bench_test.go

    			buf.WriteByte('\n')
    			if err := dec.Decode(&r); err != nil {
    				b.Fatalf("Decode error: %v", err)
    			}
    		}
    	})
    	b.SetBytes(int64(len(codeJSON)))
    }
    
    func BenchmarkUnicodeDecoder(b *testing.B) {
    	b.ReportAllocs()
    	j := []byte(`"\uD83D\uDE01"`)
    	b.SetBytes(int64(len(j)))
    	r := bytes.NewReader(j)
    	dec := NewDecoder(r)
    	var out string
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top