Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 470 for gStates (0.35 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/graph_def.h

    #include <type_traits>
    
    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/framework/graph.pb.h"
    #include "tensorflow/core/framework/node_def.pb.h"
    
    namespace stablehlo::quantization {
    
    // Mutates all `NodeDef`s in `graph_def` by applying `func`. It modifies the
    // top-level `NodeDef`s as well as all `NodeDef`s in the function library.
    // `func` should accept a `NodeDef` reference.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 28 18:38:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/tests/go122-annotations.test

    UserRegionBegin dt=278 task=0 name_string=29 stack=23
    EventBatch gen=1 m=18446744073709551615 time=28113086280061 size=57
    GoStatus dt=318 g=2 m=18446744073709551615 gstatus=4
    GoStatus dt=3 g=3 m=18446744073709551615 gstatus=4
    GoStatus dt=1 g=4 m=18446744073709551615 gstatus=4
    GoStatus dt=1 g=5 m=18446744073709551615 gstatus=4
    EventBatch gen=1 m=18446744073709551615 time=28113086280852 size=488
    Stacks
    Stack id=17 nframes=3
    	pc=4816080 func=30 file=31 line=45
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfo.java

            if ( info502.security_descriptor != null ) {
                SecurityDescriptor sd;
                sd = new SecurityDescriptor(info502.security_descriptor, 0, info502.sd_size);
                return sd.getAces();
            }
            return null;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/unfold.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package schema
    
    // Unfold expands vendor extensions of a structural schema.
    // It mutates the receiver.
    func (s *Structural) Unfold() *Structural {
    	if s == nil {
    		return nil
    	}
    
    	mapper := Visitor{
    		Structural: func(s *Structural) bool {
    			if !s.XIntOrString {
    				return false
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 11 16:10:43 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  5. internal/bucket/versioning/versioning.go

    package versioning
    
    import (
    	"encoding/xml"
    	"io"
    	"strings"
    
    	"github.com/minio/pkg/v3/wildcard"
    )
    
    // State - enabled/disabled/suspended states
    // for multifactor and status of versioning.
    type State string
    
    // Various supported states
    const (
    	Enabled State = "Enabled"
    	// Disabled  State = "Disabled" only used by MFA Delete not supported yet.
    	Suspended State = "Suspended"
    )
    
    var (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/componentconfigs/kubelet_unix.go

    func (kc *kubeletConfig) Mutate() error {
    	if err := mutateResolverConfig(&kc.config, isServiceActive); err != nil {
    		return err
    	}
    	return nil
    }
    
    // mutateResolverConfig mutates the ResolverConfig in the kubeletConfig dynamically.
    func mutateResolverConfig(cfg *kubeletconfig.KubeletConfiguration, isServiceActiveFunc func(string) (bool, error)) error {
    	ok, err := isServiceActiveFunc("systemd-resolved")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/flot.selection.min.js

    .trigger("plotunselected",[]);plot.getPlaceholder().trigger("plotselecting",[null])}return false}function getSelection(){if(!selectionIsSane())return null;if(!selection.show)return null;var r={},c1=selection.first,c2=selection.second;$.each(plot.getAxes(),function(name,axis){if(axis.used){var p1=axis.c2p(c1[axis.direction]),p2=axis.c2p(c2[axis.direction]);r[name]={from:Math.min(p1,p2),to:Math.max(p1,p2)}}});return r}function triggerSelectedEvent(){var r=getSelection();plot.getPlaceholder().trigg...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/runtime/mem.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import "unsafe"
    
    // OS memory management abstraction layer
    //
    // Regions of the address space managed by the runtime may be in one of four
    // states at any given time:
    // 1) None - Unreserved and unmapped, the default state of any region.
    // 2) Reserved - Owned by the runtime, but accessing it would cause a fault.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. src/syscall/netlink_linux.go

    // properly.
    func rtaAlignOf(attrlen int) int {
    	return (attrlen + RTA_ALIGNTO - 1) & ^(RTA_ALIGNTO - 1)
    }
    
    // NetlinkRouteRequest represents a request message to receive routing
    // and link states from the kernel.
    type NetlinkRouteRequest struct {
    	Header NlMsghdr
    	Data   RtGenmsg
    }
    
    func (rr *NetlinkRouteRequest) toWireFormat() []byte {
    	b := make([]byte, rr.Header.Len)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. src/cmd/trace/viewer.go

    			PC:   f.PC,
    			Fn:   f.Func,
    			File: f.File,
    			Line: int(f.Line),
    		})
    		return true
    	})
    	return frames
    }
    
    func viewerGState(state trace.GoState, inMarkAssist bool) traceviewer.GState {
    	switch state {
    	case trace.GoUndetermined:
    		return traceviewer.GDead
    	case trace.GoNotExist:
    		return traceviewer.GDead
    	case trace.GoRunnable:
    		return traceviewer.GRunnable
    	case trace.GoRunning:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top