Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Dw (0.02 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	seenNode := make(map[*Node]bool)
    	seenEdge := make(map[nodePair]bool)
    	for _, sample := range prof.Sample {
    		var w, dw int64
    		w = o.SampleValue(sample.Value)
    		if o.SampleMeanDivisor != nil {
    			dw = o.SampleMeanDivisor(sample.Value)
    		}
    		if dw == 0 && w == 0 {
    			continue
    		}
    		for k := range seenNode {
    			delete(seenNode, k)
    		}
    		for k := range seenEdge {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  2. src/compress/flate/deflate.go

    // Otherwise the error returned will be non-nil.
    func NewWriter(w io.Writer, level int) (*Writer, error) {
    	var dw Writer
    	if err := dw.d.init(w, level); err != nil {
    		return nil, err
    	}
    	return &dw, nil
    }
    
    // NewWriterDict is like [NewWriter] but initializes the new
    // [Writer] with a preset dictionary. The returned [Writer] behaves
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/net/lookup_windows.go

    	}
    	rec := make([]*syscall.DNSRecord, 0, 10)
    	for p := r; p != nil; p = p.Next {
    		// in case of a local machine, DNS records are returned with DNSREC_QUESTION flag instead of DNS_ANSWER
    		if p.Dw&dnsSectionMask != syscall.DnsSectionAnswer && p.Dw&dnsSectionMask != syscall.DnsSectionQuestion {
    			continue
    		}
    		if p.Type != dnstype {
    			continue
    		}
    		if !syscall.DnsNameCompare(cname, p.Name) {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. internal/ioutil/ioutil.go

    // NewDeadlineWorker constructs a new DeadlineWorker with the given timeout.
    // To return values, use the WithDeadline helper instead.
    func NewDeadlineWorker(timeout time.Duration) *DeadlineWorker {
    	dw := &DeadlineWorker{
    		timeout: timeout,
    	}
    	return dw
    }
    
    // Run runs the given function, passing it a stopper channel. If the deadline passes before
    // the function finishes executing, Run returns context.DeadlineExceeded to the caller.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/syscall/types_windows.go

    	DNS_TYPE_ANY     = 0x00ff
    	DNS_TYPE_WINS    = 0xff01
    	DNS_TYPE_WINSR   = 0xff02
    	DNS_TYPE_NBSTAT  = 0xff01
    )
    
    const (
    	DNS_INFO_NO_RECORDS = 0x251D
    )
    
    const (
    	// flags inside DNSRecord.Dw
    	DnsSectionQuestion   = 0x0000
    	DnsSectionAnswer     = 0x0001
    	DnsSectionAuthority  = 0x0002
    	DnsSectionAdditional = 0x0003
    )
    
    type DNSSRVData struct {
    	Target   *uint16
    	Priority uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv13-ALPN

    00000370  9b ee 0b 22 7a 23 f4 b8  3e fd fe 99 13 9d 18 bc  |..."z#..>.......|
    00000380  77 99 2f 90 21 a1 5f cc  9f 08 e2 75 44 2f bf 58  |w./.!._....uD/.X|
    00000390  70 f2 95 b2 13 20 f3 ed  51 de e8 02 c6 ca 44 57  |p.... ..Q.....DW|
    000003a0  eb 0b 9f 3e 61 f1 1a 6e  6b 13 f5 14 f3 43 19 f6  |...>a..nk....C..|
    000003b0  7d 46 3a 73 49 2f fd 83  c3 68 c7 ba b4 e8 17 03  |}F:sI/...h......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Client-TLSv10-ClientCert-RSA-ECDSA

    00000030  27 13 ed d1 73 fc 9b f5  4f 61 f0 35 27 8e 54 52  |'...s...Oa.5'.TR|
    00000040  b7 ce bd 6a 05 c6 61 95  1e 8a 15 03 01 00 20 6e  |...j..a....... n|
    00000050  07 21 86 31 f8 74 6b 45  4d 10 2f 5d e7 2b 64 77  |.!.1.tkEM./].+dw|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

        }
    
        @Test
        void populatePropertiesCanContainEqualsSign() throws Exception {
            // Arrange
            CliRequest request = new CliRequest(new String[] {"-Dw=x=y", "validate"}, null);
    
            // Act
            cli.cli(request);
            cli.properties(request);
    
            // Assert
            assertThat(request.getUserProperties().getProperty("w"), is("x=y"));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	DNS_TYPE_ALL     = 0x00ff
    	DNS_TYPE_ANY     = 0x00ff
    	DNS_TYPE_WINS    = 0xff01
    	DNS_TYPE_WINSR   = 0xff02
    	DNS_TYPE_NBSTAT  = 0xff01
    )
    
    const (
    	// flags inside DNSRecord.Dw
    	DnsSectionQuestion   = 0x0000
    	DnsSectionAnswer     = 0x0001
    	DnsSectionAuthority  = 0x0002
    	DnsSectionAdditional = 0x0003
    )
    
    const (
    	// flags of WSALookupService
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      func.return %0, %2 : tensor<1x112x112x32xf32>, tensor<1x112x112x32xf32>
    
    // CHECK: %[[dw:.*]] = "tfl.depthwise_conv_2d"(%arg0, %arg1, %arg2)
    // CHECK: %[[q:.*]] = "tfl.quantize"(%[[dw]])
    // CHECK: %[[dq:.*]] = "tfl.dequantize"(%[[q]])
    // CHECK: return %[[dq]], %[[dq]]
    }
    
    // Series of values needing requantization -- first the args then the results
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top