Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 107 for functor (0.32 sec)

  1. pkg/kubelet/kubelet.go

    	// and inform container to reopen log file after log rotation.
    	kl.containerLogManager.Start()
    	// Adding Registration Callback function for CSI Driver
    	kl.pluginManager.AddHandler(pluginwatcherapi.CSIPlugin, plugincache.PluginHandler(csi.PluginHandler))
    	// Adding Registration Callback function for DRA Plugin
    	if utilfeature.DefaultFeatureGate.Enabled(features.DynamicResourceAllocation) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        SymbolTableCollection& symbolTable) {
      StringAttr func_attr = getFAttr().getRootReference();
      func::FuncOp func =
          symbolTable.lookupNearestSymbolFrom<func::FuncOp>(*this, func_attr);
    
      if (!func) {
        return emitError("'f' attribute refers to an undefined function: ")
               << func_attr.getValue();
      }
    
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    func addpad(pc, a int64, ctxt *obj.Link, cursym *obj.LSym) int {
    	switch a {
    	case 8, 16, 32, 64:
    		// By default function alignment is 16. If an alignment > 16 is
    		// requested then the function alignment must also be promoted.
    		// The function alignment is not promoted on AIX at this time.
    		// TODO: Investigate AIX function alignment.
    		if ctxt.Headtype != objabi.Haix && cursym.Func().Align < int32(a) {
    			cursym.Func().Align = int32(a)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	SHT_DYNSYM         SectionType = 11         /* dynamic symbol table section */
    	SHT_INIT_ARRAY     SectionType = 14         /* Initialization function pointers. */
    	SHT_FINI_ARRAY     SectionType = 15         /* Termination function pointers. */
    	SHT_PREINIT_ARRAY  SectionType = 16         /* Pre-initialization function ptrs. */
    	SHT_GROUP          SectionType = 17         /* Section group. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    	defer nsLock.Unlock(lkctx)
    
    	// Freeze all incoming S3 API calls before running speedtest.
    	globalNotificationSys.ServiceFreeze(ctx, true)
    
    	// Unfreeze as soon as request context is canceled or when the function returns.
    	go func() {
    		<-ctx.Done()
    		globalNotificationSys.ServiceFreeze(ctx, false)
    	}()
    
    	durationStr := r.Form.Get(peerRESTDuration)
    	duration, err := time.ParseDuration(durationStr)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// variable name to the locally scoped expression value.
    				"self.self == 201",
    				// CEL macro and function names do not need to be escaped because the parser can disambiguate them from the function and
    				// macro identifiers.
    				"self.getDate == 202",
    				"self.all == 203",
    				"self.size == '204'",
    				// _ is not escaped
    				"self._true == 301",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one_test.go

    					Prioritizers: []tf.PriorityConfig{
    						{
    							Weight:   3,
    							Function: tf.Node1PrioritizerExtender,
    						},
    					},
    				},
    				{
    					ExtenderName: "FakeExtender2",
    					Weight:       1,
    					Prioritizers: []tf.PriorityConfig{
    						{
    							Weight:   2,
    							Function: tf.Node2PrioritizerExtender,
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    	}
    	for _, tt := range testCases {
    		checkSameType(t, FuncOf(tt.in, tt.out, tt.variadic), tt.want)
    	}
    
    	// check that variadic requires last element be a slice.
    	FuncOf([]Type{TypeOf(1), TypeOf(""), SliceOf(TypeOf(false))}, nil, true)
    	shouldPanic("must be slice", func() { FuncOf([]Type{TypeOf(0), TypeOf(""), TypeOf(false)}, nil, true) })
    	shouldPanic("must be slice", func() { FuncOf(nil, nil, true) })
    
    	//testcase for  #54669
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * Resolution Properties</a>). The servername and path components are
     * not case sensitive but the domain, username, and password components
     * are. It is also likely that properties must be specified for jcifs.smb1
     * to function (See <a href="../../overview-summary.html#scp">Setting
     * JCIFS Properties</a>). Here are some examples of SMB URLs with brief
     * descriptions of what they do:
     *
     * <p>[1] This URL scheme is based largely on the <i>SMB
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    // THE SOFTWARE.
    
    package arm64
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"fmt"
    	"log"
    	"math"
    	"sort"
    	"strings"
    )
    
    // ctxt7 holds state while assembling a single function.
    // Each function gets a fresh ctxt7.
    // This allows for multiple functions to be safely concurrently assembled.
    type ctxt7 struct {
    	ctxt       *obj.Link
    	newprog    obj.ProgAlloc
    	cursym     *obj.LSym
    	blitrl     *obj.Prog
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top