Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 94 for RECORD (0.16 sec)

  1. src/cmd/compile/internal/ssa/prove.go

    				default:
    					panic("unimplemented")
    				}
    
    				if min < max {
    					// Record that x > min and max >= x
    					ft.update(parent, x, vmin, d, r)
    					ft.update(parent, vmax, x, d, r|eq)
    				} else {
    					// We know that either x>min OR x<=max. factsTable cannot record OR conditions,
    					// so let's see if we can already prove that one of them is false, in which case
    					// the other must be true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    	recordHeaderLen            = 5            // record header length
    	maxHandshake               = 65536        // maximum handshake we support (protocol max is 16 MB)
    	maxHandshakeCertificateMsg = 262144       // maximum certificate message size (256 KiB)
    	maxUselessRecords          = 16           // maximum number of consecutive non-advancing records
    )
    
    // TLS record types.
    type recordType uint8
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	kubetypes "k8s.io/apimachinery/pkg/types"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	utilversion "k8s.io/apimachinery/pkg/util/version"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/tools/record"
    	ref "k8s.io/client-go/tools/reference"
    	"k8s.io/client-go/util/flowcontrol"
    	"k8s.io/component-base/logs/logreduction"
    	internalapi "k8s.io/cri-api/pkg/apis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    }
    
    // ExtReloc contains the payload for an external relocation.
    type ExtReloc struct {
    	Xsym Sym
    	Xadd int64
    	Type objabi.RelocType
    	Size uint8
    }
    
    // Reloc holds a "handle" to access a relocation record from an
    // object file.
    type Reloc struct {
    	*goobj.Reloc
    	r *oReader
    	l *Loader
    }
    
    func (rel Reloc) Type() objabi.RelocType     { return objabi.RelocType(rel.Reloc.Type()) &^ objabi.R_WEAK }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. pkg/kubelet/server/server_test.go

    	"k8s.io/apimachinery/pkg/util/httpstream/spdy"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authentication/user"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/client-go/tools/record"
    	"k8s.io/client-go/tools/remotecommand"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	statsapi "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/utils/pointer"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. tests/test_generate_unique_id_function.py

            return item1  # pragma: nocover
    
        @app.post("/third")
        def post_third(item1: Item):
            return item1  # pragma: nocover
    
        client = TestClient(app)
        with warnings.catch_warnings(record=True) as w:
            warnings.simplefilter("always")
            client.get("/openapi.json")
            assert len(w) >= 2
            duplicate_warnings = [
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 15:10:26 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

                              /* allow_duplicates= */ true);
          } else {
            g->AddEdge(src_image, edge->src_output(), dst_image, edge->dst_input());
          }
          continue;
        }
    
        // Record 'src' as an output of its subgraph, if applicable.
        if (IsInSubgraph(src_func_id)) {
          if (!edge->IsControlEdge()) {
            DataType dtype = edge->src()->output_type(edge->src_output());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    			addresses, _ := inter.Addrs()
    			for _, addr := range addresses {
    				addrIP, _, _ := netutils.ParseCIDRSloppy(addr.String())
    				if addrIP.String() == nodeIP.String() {
    					klog.V(2).InfoS("Record Host MAC address", "addr", inter.HardwareAddr)
    					hostMac = inter.HardwareAddr.String()
    				}
    			}
    		}
    		if len(hostMac) == 0 {
    			return nil, fmt.Errorf("could not find host mac address for %s", nodeIP)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			GroupResource: schema.GroupResource{
    				Group:    a.group.GroupVersion.Group,
    				Resource: apiResource.Name,
    			},
    			EncodingVersion: encodingGVK.GroupVersion().String(),
    			// We record EquivalentResourceMapper first instead of calculate
    			// DecodableVersions immediately because API installation must
    			// be completed first for us to know equivalent APIs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/init.go

    		return false
    	}
    
    	wf.AddGoStmt(goVers)
    
    	// We wrote a new go line. For reproducibility,
    	// if the toolchain running right now is newer than the new toolchain line,
    	// update the toolchain line to record the newer toolchain.
    	// The user never sets the toolchain explicitly in a 'go work' command,
    	// so this is only happening as a result of a go or toolchain line found
    	// in a module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top