Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 115 for math3 (0.11 sec)

  1. cmd/kubelet/app/server.go

    				StabilityLevel: metrics.ALPHA,
    			},
    			func() float64 {
    				if c := clientCertificateManager.Current(); c != nil && c.Leaf != nil {
    					return math.Trunc(time.Until(c.Leaf.NotAfter).Seconds())
    				}
    				return math.Inf(1)
    			},
    		))
    
    		// the rotating transport will use the cert from the cert manager instead of these files
    		transportConfig := restclient.AnonymousClientConfig(clientConfig)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    if (str != null) {
                        parallelism = Integer.parseInt(str);
                    }
                } catch (Exception e) {
                    // ignore
                }
                return Math.max(1, Math.min(parallelism, Runtime.getRuntime().availableProcessors()));
            }
    
            ProjectBuildingResult build(Path pomFile, ModelSource modelSource) throws ProjectBuildingException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  3. src/runtime/map.go

    // before the table grows. Typical tables will be somewhat less loaded.
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/math"
    	"unsafe"
    )
    
    const (
    	// Maximum number of key/elem pairs a bucket can hold.
    	bucketCntBits = abi.MapBucketCountBits
    
    	// Maximum average load of a bucket that triggers growth is bucketCnt*13/16 (about 80% full)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1alpha1/generated.pb.go

    	resource "k8s.io/apimachinery/pkg/api/resource"
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	math "math"
    	math_bits "math/bits"
    	reflect "reflect"
    	strings "strings"
    )
    
    // Reference imports to suppress errors if they are not otherwise used.
    var _ = proto.Marshal
    var _ = fmt.Errorf
    var _ = math.Inf
    
    // This is a compile-time assertion to ensure that this generated file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 76.5K bytes
    - Viewed (0)
  5. src/crypto/tls/tls_test.go

    	"crypto"
    	"crypto/ecdsa"
    	"crypto/elliptic"
    	"crypto/rand"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"encoding/asn1"
    	"encoding/json"
    	"encoding/pem"
    	"errors"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"math"
    	"math/big"
    	"net"
    	"os"
    	"reflect"
    	"slices"
    	"strings"
    	"testing"
    	"time"
    )
    
    var rsaCertPEM = `-----BEGIN CERTIFICATE-----
    MIIB0zCCAX2gAwIBAgIJAI/M7BYjwB+uMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  6. src/strings/strings_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package strings_test
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"math"
    	"math/rand"
    	"reflect"
    	"strconv"
    	. "strings"
    	"testing"
    	"unicode"
    	"unicode/utf8"
    	"unsafe"
    )
    
    func eq(a, b []string) bool {
    	if len(a) != len(b) {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/rbac/v1/generated.pb.go

    	io "io"
    
    	proto "github.com/gogo/protobuf/proto"
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	math "math"
    	math_bits "math/bits"
    	reflect "reflect"
    	strings "strings"
    )
    
    // Reference imports to suppress errors if they are not otherwise used.
    var _ = proto.Marshal
    var _ = fmt.Errorf
    var _ = math.Inf
    
    // This is a compile-time assertion to ensure that this generated file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    		// Check the list is in dependency order.
    		tg.run("list", "-deps", "math")
    		want := "unsafe\ninternal/cpu\nmath/bits\nmath\n"
    		out := tg.stdout.String()
    		if !strings.Contains(out, "internal/cpu") {
    			// Some systems don't use internal/cpu.
    			want = "unsafe\nmath/bits\nmath\n"
    		}
    		if tg.stdout.String() != want {
    			t.Fatalf("list -deps math: wrong order\nhave %q\nwant %q", tg.stdout.String(), want)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cel
    
    import (
    	"fmt"
    	"math"
    	"strings"
    	"testing"
    
    	celgo "github.com/google/cel-go/cel"
    	"github.com/google/cel-go/common/types"
    	"github.com/google/cel-go/common/types/ref"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go

    	runtime "k8s.io/apimachinery/pkg/runtime"
    
    	math "math"
    	math_bits "math/bits"
    	reflect "reflect"
    	strings "strings"
    
    	k8s_io_apimachinery_pkg_types "k8s.io/apimachinery/pkg/types"
    )
    
    // Reference imports to suppress errors if they are not otherwise used.
    var _ = proto.Marshal
    var _ = fmt.Errorf
    var _ = math.Inf
    
    // This is a compile-time assertion to ensure that this generated file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
Back to top