Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for small7 (0.25 sec)

  1. src/crypto/tls/handshake_server_test.go

    		config := testConfig.Clone()
    		config.Certificates = []Certificate{cert}
    		config.MinVersion = VersionTLS13
    		server := Server(serverConn, config)
    		err := server.Handshake()
    		expectError(t, err, "key size too small")
    		close(done)
    	}()
    	err = client.Handshake()
    	expectError(t, err, "handshake failure")
    	<-done
    }
    
    func TestMultipleCertificates(t *testing.T) {
    	clientConfig := testConfig.Clone()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

    /**
     * How a symbol is imported. The order of the enum entry represents the priority of imports. If a symbol is available from multiple kinds of
     * imports, the symbol from "smaller" kind is used. For example, an explicitly imported symbol can overwrite a star-imported symbol.
     */
    private enum class ImportKind {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    			if err != nil {
    				errprintf("%s: %v", file, err)
    			}
    			return matched
    		}
    	}
    
    	return true
    }
    
    // copyfile copies the file src to dst, via memory (so only good for small files).
    func copyfile(dst, src string, flag int) {
    	if vflag > 1 {
    		errprintf("cp %s %s\n", src, dst)
    	}
    	writefile(readfile(src), dst, flag)
    }
    
    // dopack copies the package src to dst,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. src/net/http/request.go

    	// come from an attacker (more likely to be a constant in
    	// code).
    
    	// Wrap the writer in a bufio Writer if it's not already buffered.
    	// Don't always call NewWriter, as that forces a bytes.Buffer
    	// and other small bufio Writers to have a minimum 4k buffer
    	// size.
    	var bw *bufio.Writer
    	if _, ok := w.(io.ByteWriter); !ok {
    		bw = bufio.NewWriter(w)
    		w = bw
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/MapsTest.java

            .that(bucketsOf(map1))
            .isEqualTo(initialBuckets);
    
        // Ensure that referenceMap, which doesn't use WithExpectedSize, ends up with the same table
        // size as the other two maps. If it ended up with a smaller size that would imply that we
        // computed the wrong initial capacity.
        for (int i = 0; i < size; i++) {
          referenceMap.put(i, null);
        }
        assertWithMessage("table size after adding " + size + " elements")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

                  Eq(BuiltinOperator_FULLY_CONNECTED));
      ASSERT_THAT(model_.operator_codes[0]->version, Eq(11));
    
      // Check the scale value. The scale value will be smaller than the int8 scale
      // since the scale is calculated by dividing by 2^bit_num.
      const int32_t target_input_index = op->inputs[0];
      const QuantizationParameters* float_input_quant_params =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. src/bytes/bytes_test.go

    				t.Errorf("IndexByte(%q, 'x') = %v", b1, pos)
    			}
    			b1[j] = 0
    			pos = IndexByte(b1, 'x')
    			if pos != -1 {
    				t.Errorf("IndexByte(%q, 'x') = %v", b1, pos)
    			}
    		}
    	}
    }
    
    // test a small index across all page offsets
    func TestIndexByteSmall(t *testing.T) {
    	b := make([]byte, 5015) // bigger than a page
    	// Make sure we find the correct byte even when straddling a page.
    	for i := 0; i <= len(b)-15; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2.go

    // It will be length 0.
    func metaDataPoolGet() []byte {
    	return metaDataPool.Get().([]byte)[:0]
    }
    
    // metaDataPoolPut will put an unused small buffer back into the pool.
    func metaDataPoolPut(buf []byte) {
    	if cap(buf) >= metaDataReadDefault && cap(buf) < metaDataReadDefault*4 {
    		//nolint:staticcheck // SA6002 we are fine with the tiny alloc
    		metaDataPool.Put(buf)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ppc64/ssa.go

    			p = s.Prog(ppc64.AMOVD)
    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = 16
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = ppc64.REGTMP
    
    			// Don't adding padding for
    			// alignment with small iteration
    			// counts.
    			if ctr > 3 {
    				p = s.Prog(obj.APCALIGN)
    				p.From.Type = obj.TYPE_CONST
    				p.From.Offset = 16
    			}
    
    			// Generate 16 byte loads and stores.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    	// during profiling signals or during a crash.
    	//
    	// If neither unwindPrintErrors or unwindSilentErrors are set, unwinding
    	// performs extra consistency checks and throws on any error.
    	//
    	// Note that there are a small number of fatal situations that will throw
    	// regardless of unwindPrintErrors or unwindSilentErrors.
    	unwindPrintErrors unwindFlags = 1 << iota
    
    	// unwindSilentErrors silently ignores errors during unwinding.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top