Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 93 for bark (0.12 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			plugins: []framework.PreEnqueuePlugin{
    				&preEnqueuePlugin{allowlists: []string{"foo", "bar"}},
    				&preEnqueuePlugin{allowlists: []string{"bar"}},
    			},
    			pod:                   st.MakePod().Name("bar").Label("bar", "").Obj(),
    			wantUnschedulablePods: 0,
    			wantSuccess:           true,
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

    }
    
    }  // end extern "C"
    
    namespace tensorflow {
    
    void RecordMutation(TF_Graph* graph, const TF_Operation& op,
                        const char* mutation_type) {
      // If any session has already run this node_id, mark this session as
      // unrunnable.
      for (auto it : graph->sessions) {
        mutex_lock session_lock(it.first->mu);
        if (it.first->last_num_graph_nodes > op.node.id()) {
          it.second = strings::StrCat(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    		cgoHasExtraM = true
    		newextram()
    	}
    	initsig(false)
    }
    
    // mPark causes a thread to park itself, returning once woken.
    //
    //go:nosplit
    func mPark() {
    	gp := getg()
    	notesleep(&gp.m.park)
    	noteclear(&gp.m.park)
    }
    
    // mexit tears down and exits the current thread.
    //
    // Don't call this directly to exit the thread, since it must run at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                    // - `model.keras_api.layers.1.keras_api.trainable_variables.0`
                    // - ... 10 more long aliases ending in digits ...
                    return std::make_tuple(isdigit(a.back()), a.size(), a) <
                           std::make_tuple(isdigit(b.back()), b.size(), b);
                  });
        for (const std::string& name : kv.second) {
          if (IsExported(name)) {
            exported_names_[kv.first].push_back(SaveString(name));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      }
    
      ControlNodeOp::ensureTerminator(body, parser.getBuilder(), result.location);
    
      // Get the results type for the control node from the terminator operands.
      Operation& yield = body.back().back();
      result.types.reserve(yield.getNumOperands() + 1);
      result.types.append(yield.operand_type_begin(), yield.operand_type_end());
      result.types.push_back(control_type);
    
      // Parse the optional attribute list.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

    EOF
        fi
        # ETCD_VERSION (if set) allows you to use custom version of etcd.
        # The main purpose of using it may be rollback of etcd v3 API,
        # where we need 3.0.* image, but are rolling back to 2.3.7.
        if [ -n "${ETCD_VERSION:-}" ]; then
          cat >>"$file" <<EOF
    ETCD_VERSION: $(yaml-quote "${ETCD_VERSION}")
    EOF
        fi
        if [ -n "${ETCD_HOSTNAME:-}" ]; then
          cat >>"$file" <<EOF
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"baby":                                 "\U0001f476",
    	"baby_bottle":                          "\U0001f37c",
    	"baby_chick":                           "\U0001f424",
    	"baby_symbol":                          "\U0001f6bc",
    	"back":                                 "\U0001f519",
    	"bacon":                                "\U0001f953",
    	"badger":                               "\U0001f9a1",
    	"badminton":                            "\U0001f3f8",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      return true;
    }
    
    // Calculates r0 & r1 output based on inputs and calculated broadcasted shape.
    //
    // For given bcasted_shape, s0_shape and s1_shape, the broadcasted dimension is
    // calculated and push back to its corresponding result, r0 or r1. For example,
    // for s0_shape [1,4] and s1_shape [4, 4], bcasted_shape is computed to be
    // [4,4] - this leads to the result of r0 to be [0] as the first dimension of s0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. src/reflect/value.go

    	methodFrameSize = align(methodFrameSize, goarch.PtrSize)
    	methodFrameSize += methodABI.spill
    
    	// Mark pointers in registers for the return path.
    	methodRegs.ReturnIsPtr = methodABI.outRegPtrs
    
    	// Call.
    	// Call copies the arguments from scratch to the stack, calls fn,
    	// and then copies the results back into scratch.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    	}
    
    	var count int64 // rough count of number of instructions
    	for p := s.Func().Text; p != nil; p = p.Link {
    		count++
    		p.Back = branchShort // use short branches first time through
    		if q := p.To.Target(); q != nil && (q.Back&branchShort != 0) {
    			p.Back |= branchBackwards
    			q.Back |= branchLoopHead
    		}
    	}
    	s.GrowCap(count * 5) // preallocate roughly 5 bytes per instruction
    
    	var ab AsmBuf
    	var n int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top