Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 394 for setTypes (0.17 sec)

  1. src/cmd/compile/internal/ir/mini.go

    func (n *miniNode) no(name string) string { return "cannot " + name + " on " + n.op.String() }
    
    func (n *miniNode) Type() *types.Type       { return nil }
    func (n *miniNode) SetType(*types.Type)     { panic(n.no("SetType")) }
    func (n *miniNode) Name() *Name             { return nil }
    func (n *miniNode) Sym() *types.Sym         { return nil }
    func (n *miniNode) Val() constant.Value     { panic(n.no("Val")) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 22:09:44 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. src/go/doc/testdata/testing.2.golden

    	func (c *B) Logf(format string, args ...any)
    
    	// ResetTimer sets the elapsed benchmark time to zero. It does not ...
    	func (b *B) ResetTimer()
    
    	// SetBytes records the number of bytes processed in a single ...
    	func (b *B) SetBytes(n int64)
    
    	// StartTimer starts timing a test. This function is called ...
    	func (b *B) StartTimer()
    
    	// StopTimer stops timing a test. This can be used to pause the ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/go.go

    				l.SetSymDynimplib(s, lib)
    				l.SetSymExtname(s, remote)
    				l.SetSymDynimpvers(s, q)
    				if st != sym.SHOSTOBJ {
    					su := l.MakeSymbolUpdater(s)
    					su.SetType(sym.SDYNIMPORT)
    				} else {
    					hostObjSyms[s] = struct{}{}
    				}
    				havedynamic = 1
    				if lib != "" && ctxt.IsDarwin() {
    					machoadddynlib(lib, ctxt.LinkMode)
    				}
    			}
    
    			continue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/ipset.go

    				klog.InfoS("Ipset name truncated", "ipSetName", name, "truncatedName", name[:31])
    				name = name[:31]
    			}
    		}
    	}
    	set := &IPSet{
    		IPSet: utilipset.IPSet{
    			Name:       name,
    			SetType:    setType,
    			HashFamily: hashFamily,
    			Comment:    comment,
    		},
    		activeEntries: sets.New[string](),
    		handle:        handle,
    	}
    	return set
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/generate.go

    func (p *{{.P}}Point) SetGenerator() *{{.P}}Point {
    	p.x.SetBytes({{.Gx}})
    	p.y.SetBytes({{.Gy}})
    	p.z.One()
    	return p
    }
    
    // Set sets p = q and returns p.
    func (p *{{.P}}Point) Set(q *{{.P}}Point) *{{.P}}Point {
    	p.x.Set(q.x)
    	p.y.Set(q.y)
    	p.z.Set(q.z)
    	return p
    }
    
    // SetBytes sets p to the compressed, uncompressed, or infinity value encoded in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. maven-embedder/src/test/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListenerTest.java

            // this one should block until all processed
            listener.transferSucceeded(new TransferEvent.Builder(session, resource)
                    .setType(TransferEvent.EventType.SUCCEEDED)
                    .build());
    
            StringBuilder message = new StringBuilder("Messages [");
            boolean test = true;
            for (int i = 0; i < 999; i++) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java

            this.setDescription(p.getDescription());
            this.setExpression(p.getExpression());
            this.setDeprecated(p.getDeprecated());
            this.setDefaultValue(p.getDefaultValue());
            this.setType(p.getType());
            this.setSince(p.getSince());
        }
    
        // ----------------------------------------------------------------------
        //
        // ----------------------------------------------------------------------
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/passes/rewrite_quantized_io.cc

                                    .getElementType()
                                    .dyn_cast<quant::QuantizedType>()) {
            if (arg.hasOneUse() && llvm::isa<TFR::CastOp>(*arg.user_begin())) {
              arg.setType(
                  arg_type.cast<TensorType>().clone(quant_type.getStorageType()));
            } else {
              std::string error_message;
              llvm::raw_string_ostream os{error_message};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loadxcoff/ldxcoff.go

    		s := l.MakeSymbolUpdater(symbol)
    
    		switch lds.Type {
    		default:
    			return errorf("unrecognized section type 0x%x", lds.Type)
    		case xcoff.STYP_TEXT:
    			s.SetType(sym.STEXT)
    		case xcoff.STYP_DATA:
    			s.SetType(sym.SNOPTRDATA)
    		case xcoff.STYP_BSS:
    			s.SetType(sym.SNOPTRBSS)
    		}
    
    		s.SetSize(int64(lds.Size))
    		if s.Type() != sym.SNOPTRBSS {
    			data, err := lds.Section.Data()
    			if err != nil {
    				return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. src/crypto/rand/rand_test.go

    	b.Run("32", func(b *testing.B) {
    		benchmarkRead(b, 32)
    	})
    	b.Run("4K", func(b *testing.B) {
    		benchmarkRead(b, 4<<10)
    	})
    }
    
    func benchmarkRead(b *testing.B, size int) {
    	b.SetBytes(int64(size))
    	buf := make([]byte, size)
    	for i := 0; i < b.N; i++ {
    		if _, err := Read(buf); err != nil {
    			b.Fatal(err)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:02:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top