Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of about 10,000 for gather (0.18 sec)

  1. src/go/build/build.go

    		}
    		if !ctxt.isAbsPath(path) {
    			p.Dir = ctxt.joinPath(srcDir, path)
    		}
    		// p.Dir directory may or may not exist. Gather partial information first, check if it exists later.
    		// Determine canonical import path, if any.
    		// Exclude results where the import path would include /testdata/.
    		inTestdata := func(sub string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cri_stats_provider.go

    		// Legitimate failure, rather than the CRI implementation does not support ListPodSandboxStats.
    		if !ok || s.Code() != codes.Unimplemented {
    			return nil, err
    		}
    		// CRI implementation doesn't support ListPodSandboxStats, warn and fallback.
    		klog.V(5).ErrorS(err,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                !backward_pass_ops.contains(user)) {
              core_tpu_ops.insert(user);
            }
          }
        }
      }
    
      // Gather all TPU ops marked for compilation in this while loop body that also
      // are not in one of the two other sets.
      for (Operation& op : loop_body_func.getOps()) {
        // Find all TPU ops that don't belong to the forward or backward pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. src/runtime/asm_mipsx.s

    	MOVW	m_curg(R3), g
    	JAL	runtime·save_g(SB)
    	MOVW	(g_sched+gobuf_sp)(g), R2 // prepare stack as R2
    	MOVW	(g_sched+gobuf_pc)(g), R4
    	MOVW	R4, -(12+4)(R2)	// "saved LR"; must match frame size
    	// Gather our arguments into registers.
    	MOVW	fn+0(FP), R5
    	MOVW	frame+4(FP), R6
    	MOVW	ctxt+8(FP), R7
    	MOVW	$-(12+4)(R2), R29	// switch stack; must match frame size
    	MOVW	R5, 4(R29)
    	MOVW	R6, 8(R29)
    	MOVW	R7, 12(R29)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/list/list.go

    		// so that you only get descriptions of tests for the things named
    		// explicitly on the command line, not for all dependencies.
    		pkgs = loadPackageList(pkgs)
    	}
    
    	// Do we need to run a build to gather information?
    	needStale := (listJson && listJsonFields.needAny("Stale", "StaleReason")) || strings.Contains(*listFmt, ".Stale")
    	if needStale || *listExport || *listCompiled {
    		b := work.NewBuilder("")
    		if *listE {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	reflector.UseWatchList = ptr.To(false)
    
    	cacher.watchCache = watchCache
    	cacher.reflector = reflector
    
    	go cacher.dispatchEvents()
    	go progressRequester.Run(stopCh)
    
    	cacher.stopWg.Add(1)
    	go func() {
    		defer cacher.stopWg.Done()
    		defer cacher.terminateAllWatchers()
    		wait.Until(
    			func() {
    				if !cacher.isStopped() {
    					cacher.startCaching(stopCh)
    				}
    			}, time.Second, stopCh,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/runtime/asm_arm.s

    	MOVW	m_curg(R8), R0
    	BL	setg<>(SB)
    	MOVW	(g_sched+gobuf_sp)(g), R4 // prepare stack as R4
    	MOVW	(g_sched+gobuf_pc)(g), R5
    	MOVW	R5, -(12+4)(R4)	// "saved LR"; must match frame size
    	// Gather our arguments into registers.
    	MOVW	fn+0(FP), R1
    	MOVW	frame+4(FP), R2
    	MOVW	ctxt+8(FP), R3
    	MOVW	$-(12+4)(R4), R13	// switch stack; must match frame size
    	MOVW	R1, 4(R13)
    	MOVW	R2, 8(R13)
    	MOVW	R3, 12(R13)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    		AVGATHERDPS,
    		AVGATHERQPS,
    		AVPGATHERDD,
    		AVPGATHERQD,
    		AVPGATHERDQ,
    		AVPGATHERQQ:
    		if p.GetFrom3() == nil {
    			// gathers need a 3rd arg. See issue 58822.
    			ctxt.Diag("need a third arg for gather instruction: %v", p)
    			return
    		}
    		// AVX512 gather requires explicit K mask.
    		if p.GetFrom3().Reg >= REG_K0 && p.GetFrom3().Reg <= REG_K7 {
    			if !avx512gatherValid(ctxt, p) {
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace/matcher.go

    }
    
    // Matcher decides if a request is exempted by the NamespaceSelector of a
    // webhook configuration.
    type Matcher struct {
    	NamespaceLister corelisters.NamespaceLister
    	Client          clientset.Interface
    }
    
    func (m *Matcher) GetNamespace(name string) (*v1.Namespace, error) {
    	return m.NamespaceLister.Get(name)
    }
    
    // Validate checks if the Matcher has a NamespaceLister and Client.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 00:53:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/asmz.go

    	op_VGFM   uint32 = 0xE7B4 // 	VRR-c	VECTOR GALOIS FIELD MULTIPLY SUM
    	op_VGFMA  uint32 = 0xE7BC // 	VRR-d	VECTOR GALOIS FIELD MULTIPLY SUM AND ACCUMULATE
    	op_VGEF   uint32 = 0xE713 // 	VRV	VECTOR GATHER ELEMENT (32)
    	op_VGEG   uint32 = 0xE712 // 	VRV	VECTOR GATHER ELEMENT (64)
    	op_VGBM   uint32 = 0xE744 // 	VRI-a	VECTOR GENERATE BYTE MASK
    	op_VGM    uint32 = 0xE746 // 	VRI-b	VECTOR GENERATE MASK
    	op_VISTR  uint32 = 0xE75C // 	VRR-a	VECTOR ISOLATE STRING
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top