Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 8,507 for reserved4 (0.14 sec)

  1. src/runtime/tracebuf.go

    		if v < 0x80 {
    			pos += i + 1
    			arr[i] = byte(v)
    			break
    		}
    		arr[i] = 0x80 | byte(v)
    		v >>= 7
    	}
    	buf.pos = pos
    }
    
    // varintReserve reserves enough space in buf to hold any varint.
    //
    // Space reserved this way can be filled in with the varintAt method.
    func (buf *traceBuf) varintReserve() int {
    	p := buf.pos
    	buf.pos += traceBytesPerNumber
    	return p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/math/jn.go

    // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
    //
    // Developed at SunPro, a Sun Microsystems, Inc. business.
    // Permission to use, copy, modify, and distribute this
    // software is freely granted, provided that this notice
    // is preserved.
    // ====================================================
    //
    // __ieee754_jn(n, x), __ieee754_yn(n, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  3. src/math/expm1.go

    //
    // Developed at SunPro, a Sun Microsystems, Inc. business.
    // Permission to use, copy, modify, and distribute this
    // software is freely granted, provided that this notice
    // is preserved.
    // ====================================================
    //
    // expm1(x)
    // Returns exp(x)-1, the exponential of x minus 1.
    //
    // Method
    //   1. Argument reduction:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. pkg/util/flag/flags_test.go

    						v1.ResourceMemory:        memory1Gi,
    						resourceNameHugepages1Gi: memory1Gi,
    					},
    				},
    			},
    		},
    		{
    			desc: "valid input with multiple reserved-memory arguments",
    			argc: "blah --reserved-memory=0:memory=1Gi,hugepages-1Gi=1Gi --reserved-memory=1:memory=1Gi",
    			expectVal: []kubeletconfig.MemoryReservation{
    				{
    					NumaNode: 0,
    					Limits: v1.ResourceList{
    						v1.ResourceMemory:        memory1Gi,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 14 10:45:23 UTC 2021
    - 8.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/cluster_scoping_pass.cc

    /* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/validation/validation_reserved_memory_test.go

    		expectedError        error
    	}{
    		{
    			description:          "The kubelet configuration does not have reserved memory parameter",
    			kubeletConfiguration: &kubeletconfig.KubeletConfiguration{},
    			expectedError:        nil,
    		},
    		{
    			description: "The kubelet configuration has valid reserved memory parameter",
    			kubeletConfiguration: &kubeletconfig.KubeletConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 18 13:38:01 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  7. src/mime/multipart/formdata.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package multipart
    
    import (
    	"bytes"
    	"errors"
    	"internal/godebug"
    	"io"
    	"math"
    	"net/textproto"
    	"os"
    	"strconv"
    )
    
    // ErrMessageTooLarge is returned by ReadForm if the message form
    // data is too large to be processed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/exported_model.proto

    // to "export" the model produced from various quantization passes in c++ to
    // Python layer.
    // Next ID: 11
    message ExportedModel {
      reserved 3, 4, 7, 9;
      reserved 'variable_shared_names';
      reserved 'restore_node_name';
      reserved 'save_node_name';
      reserved 'file_prefix_tensor_name';
    
      GraphDef graph_def = 1;
    
      // Name of the initialization node (TF Operation) used for initializing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 06:12:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/DisallowBuildSrcAsNameIntegTest.groovy

            settingsFile << """
                include 'buildSrc'
            """
    
            when:
            fails "t"
    
            then:
            failure.assertHasDescription("'buildSrc' cannot be used as a project name as it is a reserved name")
        }
    
        def "fails when trying to use buildSrc as a project name"() {
            buildFile << """
                task t
            """
            settingsFile << """
                include 'b'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 24 20:48:49 UTC 2021
    - 3K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/registry/zsyscall_windows.go

    )
    
    func regCreateKeyEx(key syscall.Handle, subkey *uint16, reserved uint32, class *uint16, options uint32, desired uint32, sa *syscall.SecurityAttributes, result *syscall.Handle, disposition *uint32) (regerrno error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4K bytes
    - Viewed (0)
Back to top