Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for setTypes (0.15 sec)

  1. src/crypto/tls/tls_test.go

    				panic(fmt.Errorf("handshake: %v", err))
    			}
    			if _, err := io.CopyBuffer(srv, srv, buf); err != nil {
    				panic(fmt.Errorf("copy buffer: %v", err))
    			}
    		}
    	}()
    
    	b.SetBytes(totalBytes)
    	clientConfig := testConfig.Clone()
    	clientConfig.CipherSuites = nil // the defaults may prefer faster ciphers
    	clientConfig.DynamicRecordSizingDisabled = dynamicRecordSizingDisabled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // return types contain a `DT_VARIANT`, change it to the unranked type
      // derived from the corresponding argument.
      rewriter.modifyOpInPlace(func, [&] {
        func.setType(FunctionType::get(func.getContext(), updated_argument_types,
                                       updated_result_types));
      });
      Region &entry = func.getRegion();
      TypeConverter::SignatureConversion signature_conversion(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. src/math/rand/v2/chacha8_test.go

    	var t uint64
    	for n := b.N; n > 0; n-- {
    		t += p.Uint64()
    	}
    	Sink = t
    }
    
    func BenchmarkChaCha8Read(b *testing.B) {
    	p := NewChaCha8([32]byte{1, 2, 3, 4, 5})
    	buf := make([]byte, 32)
    	b.SetBytes(32)
    	var t uint8
    	for n := b.N; n > 0; n-- {
    		p.Read(buf)
    		t += buf[0]
    	}
    	Sink = uint64(t)
    }
    
    // Golden output test to make sure algorithm never changes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 55K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm_s390x.s

    	MOVD in2+16(FP), P2ptr
    
    	MOVD $p256mul<>+0x00(SB), CPOOL
    	VL   16(CPOOL), PL
    	VL   0(CPOOL), PH
    
    	//	if (sign == 1) {
    	//		Y2 = fromBig(new(big.Int).Mod(new(big.Int).Sub(p256.P, new(big.Int).SetBytes(Y2)), p256.P)) // Y2  = P-Y2
    	//	}
    
    	VL   48(P2ptr), Y2H
    	VPDI $0x4, Y2H, Y2H, Y2H
    	VL   32(P2ptr), Y2L
    	VPDI $0x4, Y2L, Y2L, Y2L
    
    	VLREPG sign+24(FP), SEL1
    	VZERO  ZER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. okhttp/api/okhttp.api

    	public final fun addPart (Lokhttp3/RequestBody;)Lokhttp3/MultipartBody$Builder;
    	public final fun build ()Lokhttp3/MultipartBody;
    	public final fun setType (Lokhttp3/MediaType;)Lokhttp3/MultipartBody$Builder;
    }
    
    public final class okhttp3/MultipartBody$Companion {
    }
    
    public final class okhttp3/MultipartBody$Part {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top