Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for onStop (0.27 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      TF_ASSERT_OK(MarkForCompilationPassTestHelper::MarkForCompilation(&graph));
      auto clusters = GetClusters(*graph);
    
      EXPECT_TRUE(clusters.empty());
    }
    
    TEST(XlaCompilationTest, ConstOp) {
      // valid data type
      {
        std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
        Scope root = Scope::NewRootScope().ExitOnError();
        auto c = ops::Const(root.WithOpName("const"), 0.5f);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    	// starts by stopping at most 30% of those DaemonSet pods and then brings
    	// up new DaemonSet pods in their place. Once the new pods are available,
    	// it then proceeds onto other DaemonSet pods, thus ensuring that at least
    	// 70% of original number of DaemonSet pods are available at all times during
    	// the update.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// starts by stopping at most 30% of those DaemonSet pods and then brings
    	// up new DaemonSet pods in their place. Once the new pods are available,
    	// it then proceeds onto other DaemonSet pods, thus ensuring that at least
    	// 70% of original number of DaemonSet pods are available at all times during
    	// the update.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    func (q *queue[T]) pop() (T, bool) {
    	if q.end-q.start == 0 {
    		return *new(T), false
    	}
    	elem := &q.buf[q.start%len(q.buf)]
    	value := *elem
    	*elem = *new(T) // Clear the entry before returning, so we don't hold onto old tables.
    	q.start++
    	return value, true
    }
    
    // makeEvent creates an Event from the provided information.
    //
    // It's just a convenience function; it's always OK to construct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		mergeValue, ok := typedV[mergeKey]
    		if !ok {
    			return nil, mergepatch.ErrNoMergeKey(typedV, mergeKey)
    		}
    
    		// If we find a value with this merge key value in original, merge the
    		// maps. Otherwise append onto original.
    		originalMap, originalKey, found, err := findMapInSliceBasedOnKeyValue(original, mergeKey, mergeValue)
    		if err != nil {
    			return nil, err
    		}
    
    		if found {
    			var mergedMaps interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    	// While we're here, flush the page cache for idle Ps to avoid
    	// having pages get stuck on them. These pages are hidden from
    	// the scavenger, so in small idle heaps a significant amount
    	// of additional memory might be held onto.
    	//
    	// Also, flush the pinner cache, to avoid leaking that memory
    	// indefinitely.
    	forEachP(waitReasonFlushProcCaches, func(pp *p) {
    		pp.mcache.prepareForSweep()
    		if pp.status == _Pidle {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// starts by stopping at most 30% of those DaemonSet pods and then brings
    	// up new DaemonSet pods in their place. Once the new pods are available,
    	// it then proceeds onto other DaemonSet pods, thus ensuring that at least
    	// 70% of original number of DaemonSet pods are available at all times during
    	// the update.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  8. src/go/printer/nodes.go

    					lnsum = 0
    					count = 0
    				}
    			}
    			if needsBlank {
    				p.print(blank)
    			}
    		}
    
    		if len(list) > 1 && isPair && size > 0 && needsLinebreak {
    			// We have a key:value expression that fits onto one line
    			// and it's not on the same line as the prior expression:
    			// Use a column for the key such that consecutive entries
    			// can align if possible.
    			// (needsLinebreak is set if we started a new line before)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    		}
    	}
    	return nil
    }
    
    func splitOutput(out string, wantAuto bool) []string {
    	// gc error messages continue onto additional lines with leading tabs.
    	// Split the output at the beginning of each line that doesn't begin with a tab.
    	// <autogenerated> lines are impossible to match so those are filtered out.
    	var res []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/runtime/map.go

    // it will return a reference to the zero object for the elem type if
    // the key is not in the map.
    // NOTE: The returned pointer may keep the whole map live, so don't
    // hold onto it for very long.
    func mapaccess1(t *maptype, h *hmap, key unsafe.Pointer) unsafe.Pointer {
    	if raceenabled && h != nil {
    		callerpc := getcallerpc()
    		pc := abi.FuncPCABIInternal(mapaccess1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top