Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 98 of 98 for continued (0.14 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    				a := c.vregoff(&p.From)
    				m = addpad(pc, a, ctxt, cursym)
    			} else {
    				if p.As != obj.ANOP && p.As != obj.AFUNCDATA && p.As != obj.APCDATA {
    					ctxt.Diag("zero-width instruction\n%v", p)
    				}
    				continue
    			}
    		}
    		pc += int64(m)
    	}
    
    	c.cursym.Size = pc
    
    	/*
    	 * if any procedure is large enough to
    	 * generate a large SBRA branch, then
    	 * generate extra passes putting branches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    				UncountedTerminatedPods: &batch.UncountedTerminatedPods{},
    				FailedIndexes:           ptr.To(""),
    			},
    		},
    		"single failed index due to exceeding the backoff limit per index, the job continues": {
    			enableJobBackoffLimitPerIndex: true,
    			job: batch.Job{
    				TypeMeta:   metav1.TypeMeta{Kind: "Job"},
    				ObjectMeta: validObjectMeta,
    				Spec: batch.JobSpec{
    					Selector:             validSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    		t.Errorf("Unexpected unschedulablePlugins: (-want, +got): %s", diagnosis.UnschedulablePlugins)
    	}
    
    	for _, node := range nodes {
    		if node.Name == pod.Name {
    			continue
    		}
    		t.Run(node.Name, func(t *testing.T) {
    			status, found := diagnosis.NodeToStatusMap[node.Name]
    			if !found {
    				t.Errorf("failed to find node %v in %v", node.Name, diagnosis.NodeToStatusMap)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		num[name] = i
    	}
    	buildReg := func(s string) regMask {
    		m := regMask(0)
    		for _, r := range strings.Split(s, " ") {
    			if n, ok := num[r]; ok {
    				m |= regMask(1) << uint(n)
    				continue
    			}
    			panic("register " + r + " not found")
    		}
    		return m
    	}
    
    	// Common individual register masks
    	var (
    		ax         = buildReg("AX")
    		cx         = buildReg("CX")
    		dx         = buildReg("DX")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  5. src/database/sql/sql.go

    }
    
    // Raw executes f exposing the underlying driver connection for the
    // duration of f. The driverConn must not be used outside of f.
    //
    // Once f returns and err is not [driver.ErrBadConn], the [Conn] will continue to be usable
    // until [Conn.Close] is called.
    func (c *Conn) Raw(f func(driverConn any) error) (err error) {
    	var dc *driverConn
    	var release releaseConn
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				"": {
    					NodeAdd: {
    						{
    							PluginName: "fooPlugin1",
    							// It returns Queue and it's interpreted as queueAfterBackoff.
    							// But, the function continues to run other hints because the Pod has PendingPlugins, which can result in queueImmediately.
    							QueueingHintFn: queueHintReturnQueue,
    						},
    						{
    							PluginName: "fooPlugin2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

        try:
          print(socket.gethostbyname(host))
          break
        except Exception as e:
          sys.stderr.write("error: resolving host %s to IP failed: %s\n" % (host, e))
          time.sleep(1)
          continue
    
    '
    
      local -r host_ip=$(python3 -c "${resolve_host_script_py}"$'\n'"resolve(\"${host_name}\")")
      local etcd_cluster=""
      local cluster_state="new"
      local etcd_protocol="http"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    ]._callUpdate(e)}function nn(t,e){var i={},n=t.args;void 0===n&&(n=[]);var r=t.props;void 0===r&&(r={});var o=t.el;if(!r)return i;for(var s in r){var a=d(s),h=ht(o,a);if(!H(h)){if(h=r[s]===Boolean&&""===h||an(r[s],h),"target"===a&&(!h||w(h,"_")))continue;i[s]=h}}var u=Ni(ht(o,e),n);for(var c in u){var l=f(c);void 0!==r[l]&&(i[l]=an(r[l],u[c]))}return i}function rn(n,r,o){Object.defineProperty(n,r,{enumerable:!0,get:function(){var t=n._computeds,e=n.$props,i=n.$el;return u(t,r)||(t[r]=(o.get||o)....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
Back to top